diff --git a/corpus/statements.txt b/corpus/statements.txt index 69eb484..37cca48 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -42,6 +42,11 @@ for a in 1 2 $(seq 5 10); do echo $a done +for ARG; do + echo $ARG + ARG='' +done + --- (program @@ -51,7 +56,12 @@ done (word) (command_substitution (command (command_name (word)) (word) (word))) (do_group - (command (command_name (word)) (simple_expansion (variable_name)))))) + (command (command_name (word)) (simple_expansion (variable_name))))) + (for_statement + (variable_name) + (do_group + (command (command_name (word)) (simple_expansion (variable_name))) + (variable_assignment (variable_name) (raw_string))))) ==================================== If statements diff --git a/grammar.js b/grammar.js index 066f562..38f55a8 100644 --- a/grammar.js +++ b/grammar.js @@ -71,8 +71,10 @@ module.exports = grammar({ for_statement: $ => seq( 'for', $._simple_variable_name, - 'in', - repeat1($._expression), + optional(seq( + 'in', + repeat1($._expression) + )), $._terminator, $.do_group ), diff --git a/script/known-failures.txt b/script/known-failures.txt index 8d244a2..37a7908 100644 --- a/script/known-failures.txt +++ b/script/known-failures.txt @@ -1,9 +1,7 @@ examples/bash-it/plugins/available/git.plugin.bash examples/bash-it/plugins/available/extract.plugin.bash -examples/bash-it/plugins/available/less-pretty-cat.plugin.bash examples/bash-it/plugins/available/z_autoenv.plugin.bash examples/bash-it/plugins/available/sshagent.plugin.bash -examples/bash-it/plugins/available/gif.plugin.bash examples/bash-it/plugins/available/go.plugin.bash examples/bash-it/plugins/available/proxy.plugin.bash examples/bash-it/plugins/available/browser.plugin.bash diff --git a/src/grammar.json b/src/grammar.json index a5d05ac..a34f0fe 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -90,15 +90,28 @@ "name": "_simple_variable_name" }, { - "type": "STRING", - "value": "in" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_expression" - } + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "in" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] }, { "type": "SYMBOL", diff --git a/src/parser.c b/src/parser.c index 0d752d1..9849e4a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 5 -#define STATE_COUNT 4635 +#define STATE_COUNT 4639 #define SYMBOL_COUNT 136 #define ALIAS_COUNT 5 #define TOKEN_COUNT 86 @@ -7027,7 +7027,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [35] = {.lex_state = 141}, [36] = {.lex_state = 186, .external_lex_state = 9}, [37] = {.lex_state = 188, .external_lex_state = 8}, - [38] = {.lex_state = 103}, + [38] = {.lex_state = 190, .external_lex_state = 4}, [39] = {.lex_state = 103}, [40] = {.lex_state = 153, .external_lex_state = 4}, [41] = {.lex_state = 182, .external_lex_state = 8}, @@ -7228,4402 +7228,4406 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [236] = {.lex_state = 20, .external_lex_state = 2}, [237] = {.lex_state = 20, .external_lex_state = 2}, [238] = {.lex_state = 141}, - [239] = {.lex_state = 262, .external_lex_state = 2}, - [240] = {.lex_state = 258, .external_lex_state = 7}, - [241] = {.lex_state = 103}, - [242] = {.lex_state = 268, .external_lex_state = 2}, - [243] = {.lex_state = 141}, - [244] = {.lex_state = 190, .external_lex_state = 4}, - [245] = {.lex_state = 103}, - [246] = {.lex_state = 190, .external_lex_state = 10}, + [239] = {.lex_state = 103}, + [240] = {.lex_state = 262, .external_lex_state = 2}, + [241] = {.lex_state = 258, .external_lex_state = 7}, + [242] = {.lex_state = 103}, + [243] = {.lex_state = 268, .external_lex_state = 2}, + [244] = {.lex_state = 141}, + [245] = {.lex_state = 190, .external_lex_state = 4}, + [246] = {.lex_state = 103}, [247] = {.lex_state = 190, .external_lex_state = 10}, - [248] = {.lex_state = 165}, - [249] = {.lex_state = 190, .external_lex_state = 10}, + [248] = {.lex_state = 190, .external_lex_state = 10}, + [249] = {.lex_state = 165}, [250] = {.lex_state = 190, .external_lex_state = 10}, [251] = {.lex_state = 190, .external_lex_state = 10}, - [252] = {.lex_state = 190, .external_lex_state = 4}, - [253] = {.lex_state = 103}, + [252] = {.lex_state = 190, .external_lex_state = 10}, + [253] = {.lex_state = 190, .external_lex_state = 4}, [254] = {.lex_state = 103}, - [255] = {.lex_state = 226, .external_lex_state = 16}, - [256] = {.lex_state = 235, .external_lex_state = 6}, - [257] = {.lex_state = 226, .external_lex_state = 16}, + [255] = {.lex_state = 103}, + [256] = {.lex_state = 226, .external_lex_state = 16}, + [257] = {.lex_state = 235, .external_lex_state = 6}, [258] = {.lex_state = 226, .external_lex_state = 16}, - [259] = {.lex_state = 103}, - [260] = {.lex_state = 241, .external_lex_state = 2}, - [261] = {.lex_state = 103}, - [262] = {.lex_state = 249, .external_lex_state = 2}, - [263] = {.lex_state = 103}, - [264] = {.lex_state = 241, .external_lex_state = 2}, - [265] = {.lex_state = 103}, - [266] = {.lex_state = 278, .external_lex_state = 21}, - [267] = {.lex_state = 280, .external_lex_state = 7}, - [268] = {.lex_state = 186, .external_lex_state = 9}, - [269] = {.lex_state = 103}, + [259] = {.lex_state = 226, .external_lex_state = 16}, + [260] = {.lex_state = 103}, + [261] = {.lex_state = 241, .external_lex_state = 2}, + [262] = {.lex_state = 103}, + [263] = {.lex_state = 249, .external_lex_state = 2}, + [264] = {.lex_state = 103}, + [265] = {.lex_state = 241, .external_lex_state = 2}, + [266] = {.lex_state = 103}, + [267] = {.lex_state = 278, .external_lex_state = 21}, + [268] = {.lex_state = 280, .external_lex_state = 7}, + [269] = {.lex_state = 186, .external_lex_state = 9}, [270] = {.lex_state = 103}, - [271] = {.lex_state = 217, .external_lex_state = 12}, - [272] = {.lex_state = 219}, - [273] = {.lex_state = 103}, - [274] = {.lex_state = 193, .external_lex_state = 14}, - [275] = {.lex_state = 165}, - [276] = {.lex_state = 170}, - [277] = {.lex_state = 193, .external_lex_state = 14}, - [278] = {.lex_state = 175, .external_lex_state = 6}, - [279] = {.lex_state = 20, .external_lex_state = 2}, + [271] = {.lex_state = 103}, + [272] = {.lex_state = 217, .external_lex_state = 12}, + [273] = {.lex_state = 219}, + [274] = {.lex_state = 103}, + [275] = {.lex_state = 193, .external_lex_state = 14}, + [276] = {.lex_state = 165}, + [277] = {.lex_state = 170}, + [278] = {.lex_state = 193, .external_lex_state = 14}, + [279] = {.lex_state = 175, .external_lex_state = 6}, [280] = {.lex_state = 20, .external_lex_state = 2}, [281] = {.lex_state = 20, .external_lex_state = 2}, - [282] = {.lex_state = 103}, - [283] = {.lex_state = 193, .external_lex_state = 3}, - [284] = {.lex_state = 193, .external_lex_state = 10}, - [285] = {.lex_state = 165}, - [286] = {.lex_state = 170}, - [287] = {.lex_state = 193, .external_lex_state = 10}, - [288] = {.lex_state = 175, .external_lex_state = 6}, - [289] = {.lex_state = 20, .external_lex_state = 2}, + [282] = {.lex_state = 20, .external_lex_state = 2}, + [283] = {.lex_state = 103}, + [284] = {.lex_state = 193, .external_lex_state = 3}, + [285] = {.lex_state = 193, .external_lex_state = 10}, + [286] = {.lex_state = 165}, + [287] = {.lex_state = 170}, + [288] = {.lex_state = 193, .external_lex_state = 10}, + [289] = {.lex_state = 175, .external_lex_state = 6}, [290] = {.lex_state = 20, .external_lex_state = 2}, [291] = {.lex_state = 20, .external_lex_state = 2}, - [292] = {.lex_state = 193, .external_lex_state = 4}, - [293] = {.lex_state = 141}, - [294] = {.lex_state = 184, .external_lex_state = 5}, + [292] = {.lex_state = 20, .external_lex_state = 2}, + [293] = {.lex_state = 193, .external_lex_state = 4}, + [294] = {.lex_state = 141}, [295] = {.lex_state = 184, .external_lex_state = 5}, - [296] = {.lex_state = 165}, - [297] = {.lex_state = 184, .external_lex_state = 5}, + [296] = {.lex_state = 184, .external_lex_state = 5}, + [297] = {.lex_state = 165}, [298] = {.lex_state = 184, .external_lex_state = 5}, [299] = {.lex_state = 184, .external_lex_state = 5}, - [300] = {.lex_state = 103}, - [301] = {.lex_state = 226, .external_lex_state = 16}, - [302] = {.lex_state = 235, .external_lex_state = 6}, - [303] = {.lex_state = 226, .external_lex_state = 16}, + [300] = {.lex_state = 184, .external_lex_state = 5}, + [301] = {.lex_state = 103}, + [302] = {.lex_state = 226, .external_lex_state = 16}, + [303] = {.lex_state = 235, .external_lex_state = 6}, [304] = {.lex_state = 226, .external_lex_state = 16}, - [305] = {.lex_state = 103}, - [306] = {.lex_state = 241, .external_lex_state = 2}, - [307] = {.lex_state = 103}, - [308] = {.lex_state = 249, .external_lex_state = 2}, - [309] = {.lex_state = 103}, - [310] = {.lex_state = 241, .external_lex_state = 2}, - [311] = {.lex_state = 103}, - [312] = {.lex_state = 20, .external_lex_state = 2}, - [313] = {.lex_state = 283, .external_lex_state = 4}, - [314] = {.lex_state = 285, .external_lex_state = 2}, - [315] = {.lex_state = 20, .external_lex_state = 2}, - [316] = {.lex_state = 20}, - [317] = {.lex_state = 197}, - [318] = {.lex_state = 141}, + [305] = {.lex_state = 226, .external_lex_state = 16}, + [306] = {.lex_state = 103}, + [307] = {.lex_state = 241, .external_lex_state = 2}, + [308] = {.lex_state = 103}, + [309] = {.lex_state = 249, .external_lex_state = 2}, + [310] = {.lex_state = 103}, + [311] = {.lex_state = 241, .external_lex_state = 2}, + [312] = {.lex_state = 103}, + [313] = {.lex_state = 20, .external_lex_state = 2}, + [314] = {.lex_state = 283, .external_lex_state = 4}, + [315] = {.lex_state = 285, .external_lex_state = 2}, + [316] = {.lex_state = 20, .external_lex_state = 2}, + [317] = {.lex_state = 20}, + [318] = {.lex_state = 197}, [319] = {.lex_state = 141}, - [320] = {.lex_state = 184, .external_lex_state = 5}, + [320] = {.lex_state = 141}, [321] = {.lex_state = 184, .external_lex_state = 5}, - [322] = {.lex_state = 287, .external_lex_state = 7}, - [323] = {.lex_state = 184, .external_lex_state = 7}, - [324] = {.lex_state = 193, .external_lex_state = 4}, - [325] = {.lex_state = 188, .external_lex_state = 8}, - [326] = {.lex_state = 20, .external_lex_state = 2}, - [327] = {.lex_state = 184, .external_lex_state = 7}, - [328] = {.lex_state = 217, .external_lex_state = 11}, + [322] = {.lex_state = 184, .external_lex_state = 5}, + [323] = {.lex_state = 287, .external_lex_state = 7}, + [324] = {.lex_state = 184, .external_lex_state = 7}, + [325] = {.lex_state = 193, .external_lex_state = 4}, + [326] = {.lex_state = 188, .external_lex_state = 8}, + [327] = {.lex_state = 20, .external_lex_state = 2}, + [328] = {.lex_state = 184, .external_lex_state = 7}, [329] = {.lex_state = 217, .external_lex_state = 11}, - [330] = {.lex_state = 217, .external_lex_state = 12}, - [331] = {.lex_state = 141}, - [332] = {.lex_state = 217, .external_lex_state = 11}, + [330] = {.lex_state = 217, .external_lex_state = 11}, + [331] = {.lex_state = 217, .external_lex_state = 12}, + [332] = {.lex_state = 141}, [333] = {.lex_state = 217, .external_lex_state = 11}, - [334] = {.lex_state = 165}, - [335] = {.lex_state = 217, .external_lex_state = 11}, + [334] = {.lex_state = 217, .external_lex_state = 11}, + [335] = {.lex_state = 165}, [336] = {.lex_state = 217, .external_lex_state = 11}, [337] = {.lex_state = 217, .external_lex_state = 11}, - [338] = {.lex_state = 103}, - [339] = {.lex_state = 226, .external_lex_state = 16}, - [340] = {.lex_state = 235, .external_lex_state = 6}, - [341] = {.lex_state = 226, .external_lex_state = 16}, + [338] = {.lex_state = 217, .external_lex_state = 11}, + [339] = {.lex_state = 103}, + [340] = {.lex_state = 226, .external_lex_state = 16}, + [341] = {.lex_state = 235, .external_lex_state = 6}, [342] = {.lex_state = 226, .external_lex_state = 16}, - [343] = {.lex_state = 103}, - [344] = {.lex_state = 241, .external_lex_state = 2}, - [345] = {.lex_state = 103}, - [346] = {.lex_state = 249, .external_lex_state = 2}, - [347] = {.lex_state = 103}, - [348] = {.lex_state = 241, .external_lex_state = 2}, - [349] = {.lex_state = 258, .external_lex_state = 7}, - [350] = {.lex_state = 217, .external_lex_state = 12}, - [351] = {.lex_state = 219, .external_lex_state = 13}, + [343] = {.lex_state = 226, .external_lex_state = 16}, + [344] = {.lex_state = 103}, + [345] = {.lex_state = 241, .external_lex_state = 2}, + [346] = {.lex_state = 103}, + [347] = {.lex_state = 249, .external_lex_state = 2}, + [348] = {.lex_state = 103}, + [349] = {.lex_state = 241, .external_lex_state = 2}, + [350] = {.lex_state = 258, .external_lex_state = 7}, + [351] = {.lex_state = 217, .external_lex_state = 12}, [352] = {.lex_state = 219, .external_lex_state = 13}, - [353] = {.lex_state = 219}, - [354] = {.lex_state = 141}, - [355] = {.lex_state = 219, .external_lex_state = 13}, + [353] = {.lex_state = 219, .external_lex_state = 13}, + [354] = {.lex_state = 219}, + [355] = {.lex_state = 141}, [356] = {.lex_state = 219, .external_lex_state = 13}, - [357] = {.lex_state = 165}, - [358] = {.lex_state = 219, .external_lex_state = 13}, + [357] = {.lex_state = 219, .external_lex_state = 13}, + [358] = {.lex_state = 165}, [359] = {.lex_state = 219, .external_lex_state = 13}, [360] = {.lex_state = 219, .external_lex_state = 13}, - [361] = {.lex_state = 103}, - [362] = {.lex_state = 226, .external_lex_state = 16}, - [363] = {.lex_state = 235, .external_lex_state = 6}, - [364] = {.lex_state = 226, .external_lex_state = 16}, + [361] = {.lex_state = 219, .external_lex_state = 13}, + [362] = {.lex_state = 103}, + [363] = {.lex_state = 226, .external_lex_state = 16}, + [364] = {.lex_state = 235, .external_lex_state = 6}, [365] = {.lex_state = 226, .external_lex_state = 16}, - [366] = {.lex_state = 103}, - [367] = {.lex_state = 241, .external_lex_state = 2}, - [368] = {.lex_state = 103}, - [369] = {.lex_state = 249, .external_lex_state = 2}, - [370] = {.lex_state = 103}, - [371] = {.lex_state = 241, .external_lex_state = 2}, - [372] = {.lex_state = 219}, - [373] = {.lex_state = 186, .external_lex_state = 9}, - [374] = {.lex_state = 193, .external_lex_state = 3}, - [375] = {.lex_state = 141}, - [376] = {.lex_state = 153, .external_lex_state = 14}, + [366] = {.lex_state = 226, .external_lex_state = 16}, + [367] = {.lex_state = 103}, + [368] = {.lex_state = 241, .external_lex_state = 2}, + [369] = {.lex_state = 103}, + [370] = {.lex_state = 249, .external_lex_state = 2}, + [371] = {.lex_state = 103}, + [372] = {.lex_state = 241, .external_lex_state = 2}, + [373] = {.lex_state = 219}, + [374] = {.lex_state = 186, .external_lex_state = 9}, + [375] = {.lex_state = 193, .external_lex_state = 3}, + [376] = {.lex_state = 141}, [377] = {.lex_state = 153, .external_lex_state = 14}, - [378] = {.lex_state = 165}, - [379] = {.lex_state = 153, .external_lex_state = 14}, + [378] = {.lex_state = 153, .external_lex_state = 14}, + [379] = {.lex_state = 165}, [380] = {.lex_state = 153, .external_lex_state = 14}, [381] = {.lex_state = 153, .external_lex_state = 14}, - [382] = {.lex_state = 103}, - [383] = {.lex_state = 226, .external_lex_state = 16}, - [384] = {.lex_state = 235, .external_lex_state = 6}, - [385] = {.lex_state = 226, .external_lex_state = 16}, + [382] = {.lex_state = 153, .external_lex_state = 14}, + [383] = {.lex_state = 103}, + [384] = {.lex_state = 226, .external_lex_state = 16}, + [385] = {.lex_state = 235, .external_lex_state = 6}, [386] = {.lex_state = 226, .external_lex_state = 16}, - [387] = {.lex_state = 103}, - [388] = {.lex_state = 241, .external_lex_state = 2}, - [389] = {.lex_state = 103}, - [390] = {.lex_state = 249, .external_lex_state = 2}, - [391] = {.lex_state = 103}, - [392] = {.lex_state = 241, .external_lex_state = 2}, - [393] = {.lex_state = 153, .external_lex_state = 3}, - [394] = {.lex_state = 141}, - [395] = {.lex_state = 153, .external_lex_state = 10}, + [387] = {.lex_state = 226, .external_lex_state = 16}, + [388] = {.lex_state = 103}, + [389] = {.lex_state = 241, .external_lex_state = 2}, + [390] = {.lex_state = 103}, + [391] = {.lex_state = 249, .external_lex_state = 2}, + [392] = {.lex_state = 103}, + [393] = {.lex_state = 241, .external_lex_state = 2}, + [394] = {.lex_state = 153, .external_lex_state = 3}, + [395] = {.lex_state = 141}, [396] = {.lex_state = 153, .external_lex_state = 10}, - [397] = {.lex_state = 165}, - [398] = {.lex_state = 153, .external_lex_state = 10}, + [397] = {.lex_state = 153, .external_lex_state = 10}, + [398] = {.lex_state = 165}, [399] = {.lex_state = 153, .external_lex_state = 10}, [400] = {.lex_state = 153, .external_lex_state = 10}, - [401] = {.lex_state = 103}, - [402] = {.lex_state = 226, .external_lex_state = 16}, - [403] = {.lex_state = 235, .external_lex_state = 6}, - [404] = {.lex_state = 226, .external_lex_state = 16}, + [401] = {.lex_state = 153, .external_lex_state = 10}, + [402] = {.lex_state = 103}, + [403] = {.lex_state = 226, .external_lex_state = 16}, + [404] = {.lex_state = 235, .external_lex_state = 6}, [405] = {.lex_state = 226, .external_lex_state = 16}, - [406] = {.lex_state = 103}, - [407] = {.lex_state = 241, .external_lex_state = 2}, - [408] = {.lex_state = 103}, - [409] = {.lex_state = 249, .external_lex_state = 2}, - [410] = {.lex_state = 103}, - [411] = {.lex_state = 241, .external_lex_state = 2}, - [412] = {.lex_state = 153, .external_lex_state = 4}, - [413] = {.lex_state = 141}, - [414] = {.lex_state = 141, .external_lex_state = 15}, + [406] = {.lex_state = 226, .external_lex_state = 16}, + [407] = {.lex_state = 103}, + [408] = {.lex_state = 241, .external_lex_state = 2}, + [409] = {.lex_state = 103}, + [410] = {.lex_state = 249, .external_lex_state = 2}, + [411] = {.lex_state = 103}, + [412] = {.lex_state = 241, .external_lex_state = 2}, + [413] = {.lex_state = 153, .external_lex_state = 4}, + [414] = {.lex_state = 141}, [415] = {.lex_state = 141, .external_lex_state = 15}, - [416] = {.lex_state = 165}, - [417] = {.lex_state = 141, .external_lex_state = 15}, + [416] = {.lex_state = 141, .external_lex_state = 15}, + [417] = {.lex_state = 165}, [418] = {.lex_state = 141, .external_lex_state = 15}, [419] = {.lex_state = 141, .external_lex_state = 15}, - [420] = {.lex_state = 103}, - [421] = {.lex_state = 226, .external_lex_state = 16}, - [422] = {.lex_state = 235, .external_lex_state = 6}, - [423] = {.lex_state = 226, .external_lex_state = 16}, + [420] = {.lex_state = 141, .external_lex_state = 15}, + [421] = {.lex_state = 103}, + [422] = {.lex_state = 226, .external_lex_state = 16}, + [423] = {.lex_state = 235, .external_lex_state = 6}, [424] = {.lex_state = 226, .external_lex_state = 16}, - [425] = {.lex_state = 103}, - [426] = {.lex_state = 241, .external_lex_state = 2}, - [427] = {.lex_state = 103}, - [428] = {.lex_state = 249, .external_lex_state = 2}, - [429] = {.lex_state = 103}, - [430] = {.lex_state = 241, .external_lex_state = 2}, - [431] = {.lex_state = 162, .external_lex_state = 5}, + [425] = {.lex_state = 226, .external_lex_state = 16}, + [426] = {.lex_state = 103}, + [427] = {.lex_state = 241, .external_lex_state = 2}, + [428] = {.lex_state = 103}, + [429] = {.lex_state = 249, .external_lex_state = 2}, + [430] = {.lex_state = 103}, + [431] = {.lex_state = 241, .external_lex_state = 2}, [432] = {.lex_state = 162, .external_lex_state = 5}, - [433] = {.lex_state = 165, .external_lex_state = 13}, + [433] = {.lex_state = 162, .external_lex_state = 5}, [434] = {.lex_state = 165, .external_lex_state = 13}, [435] = {.lex_state = 165, .external_lex_state = 13}, - [436] = {.lex_state = 165}, - [437] = {.lex_state = 103}, - [438] = {.lex_state = 226, .external_lex_state = 16}, - [439] = {.lex_state = 235, .external_lex_state = 6}, - [440] = {.lex_state = 226, .external_lex_state = 16}, + [436] = {.lex_state = 165, .external_lex_state = 13}, + [437] = {.lex_state = 165}, + [438] = {.lex_state = 103}, + [439] = {.lex_state = 226, .external_lex_state = 16}, + [440] = {.lex_state = 235, .external_lex_state = 6}, [441] = {.lex_state = 226, .external_lex_state = 16}, - [442] = {.lex_state = 103}, - [443] = {.lex_state = 241, .external_lex_state = 2}, - [444] = {.lex_state = 103}, - [445] = {.lex_state = 249, .external_lex_state = 2}, - [446] = {.lex_state = 162, .external_lex_state = 5}, - [447] = {.lex_state = 165}, - [448] = {.lex_state = 141}, - [449] = {.lex_state = 289, .external_lex_state = 16}, - [450] = {.lex_state = 162, .external_lex_state = 5}, - [451] = {.lex_state = 291, .external_lex_state = 16}, - [452] = {.lex_state = 291, .external_lex_state = 22}, - [453] = {.lex_state = 165}, - [454] = {.lex_state = 170}, - [455] = {.lex_state = 291, .external_lex_state = 22}, - [456] = {.lex_state = 175, .external_lex_state = 6}, - [457] = {.lex_state = 293}, - [458] = {.lex_state = 20, .external_lex_state = 2}, + [442] = {.lex_state = 226, .external_lex_state = 16}, + [443] = {.lex_state = 103}, + [444] = {.lex_state = 241, .external_lex_state = 2}, + [445] = {.lex_state = 103}, + [446] = {.lex_state = 249, .external_lex_state = 2}, + [447] = {.lex_state = 162, .external_lex_state = 5}, + [448] = {.lex_state = 165}, + [449] = {.lex_state = 141}, + [450] = {.lex_state = 289, .external_lex_state = 16}, + [451] = {.lex_state = 162, .external_lex_state = 5}, + [452] = {.lex_state = 291, .external_lex_state = 16}, + [453] = {.lex_state = 291, .external_lex_state = 22}, + [454] = {.lex_state = 165}, + [455] = {.lex_state = 170}, + [456] = {.lex_state = 291, .external_lex_state = 22}, + [457] = {.lex_state = 175, .external_lex_state = 6}, + [458] = {.lex_state = 293}, [459] = {.lex_state = 20, .external_lex_state = 2}, [460] = {.lex_state = 20, .external_lex_state = 2}, - [461] = {.lex_state = 291, .external_lex_state = 16}, - [462] = {.lex_state = 103}, - [463] = {.lex_state = 226, .external_lex_state = 16}, + [461] = {.lex_state = 20, .external_lex_state = 2}, + [462] = {.lex_state = 291, .external_lex_state = 16}, + [463] = {.lex_state = 103}, [464] = {.lex_state = 226, .external_lex_state = 16}, [465] = {.lex_state = 226, .external_lex_state = 16}, - [466] = {.lex_state = 162, .external_lex_state = 5}, - [467] = {.lex_state = 293}, - [468] = {.lex_state = 291, .external_lex_state = 16}, - [469] = {.lex_state = 162, .external_lex_state = 5}, - [470] = {.lex_state = 293}, - [471] = {.lex_state = 291, .external_lex_state = 16}, - [472] = {.lex_state = 186, .external_lex_state = 9}, - [473] = {.lex_state = 241, .external_lex_state = 2}, - [474] = {.lex_state = 103}, - [475] = {.lex_state = 103}, + [466] = {.lex_state = 226, .external_lex_state = 16}, + [467] = {.lex_state = 162, .external_lex_state = 5}, + [468] = {.lex_state = 293}, + [469] = {.lex_state = 291, .external_lex_state = 16}, + [470] = {.lex_state = 162, .external_lex_state = 5}, + [471] = {.lex_state = 293}, + [472] = {.lex_state = 291, .external_lex_state = 16}, + [473] = {.lex_state = 186, .external_lex_state = 9}, + [474] = {.lex_state = 241, .external_lex_state = 2}, + [475] = {.lex_state = 190, .external_lex_state = 4}, [476] = {.lex_state = 103}, - [477] = {.lex_state = 190, .external_lex_state = 10}, + [477] = {.lex_state = 103}, [478] = {.lex_state = 190, .external_lex_state = 10}, - [479] = {.lex_state = 190, .external_lex_state = 4}, - [480] = {.lex_state = 103}, - [481] = {.lex_state = 193, .external_lex_state = 4}, - [482] = {.lex_state = 188, .external_lex_state = 8}, - [483] = {.lex_state = 20, .external_lex_state = 2}, - [484] = {.lex_state = 217, .external_lex_state = 12}, - [485] = {.lex_state = 219}, - [486] = {.lex_state = 103}, - [487] = {.lex_state = 237, .external_lex_state = 23}, - [488] = {.lex_state = 165}, - [489] = {.lex_state = 170}, - [490] = {.lex_state = 237, .external_lex_state = 23}, - [491] = {.lex_state = 175, .external_lex_state = 6}, - [492] = {.lex_state = 20, .external_lex_state = 2}, + [479] = {.lex_state = 190, .external_lex_state = 10}, + [480] = {.lex_state = 190, .external_lex_state = 4}, + [481] = {.lex_state = 103}, + [482] = {.lex_state = 193, .external_lex_state = 4}, + [483] = {.lex_state = 188, .external_lex_state = 8}, + [484] = {.lex_state = 20, .external_lex_state = 2}, + [485] = {.lex_state = 217, .external_lex_state = 12}, + [486] = {.lex_state = 219}, + [487] = {.lex_state = 103}, + [488] = {.lex_state = 237, .external_lex_state = 23}, + [489] = {.lex_state = 165}, + [490] = {.lex_state = 170}, + [491] = {.lex_state = 237, .external_lex_state = 23}, + [492] = {.lex_state = 175, .external_lex_state = 6}, [493] = {.lex_state = 20, .external_lex_state = 2}, [494] = {.lex_state = 20, .external_lex_state = 2}, - [495] = {.lex_state = 237, .external_lex_state = 6}, + [495] = {.lex_state = 20, .external_lex_state = 2}, [496] = {.lex_state = 237, .external_lex_state = 6}, - [497] = {.lex_state = 103}, - [498] = {.lex_state = 237, .external_lex_state = 6}, - [499] = {.lex_state = 237, .external_lex_state = 13}, - [500] = {.lex_state = 165}, - [501] = {.lex_state = 170}, - [502] = {.lex_state = 237, .external_lex_state = 13}, - [503] = {.lex_state = 175, .external_lex_state = 6}, - [504] = {.lex_state = 20, .external_lex_state = 2}, + [497] = {.lex_state = 237, .external_lex_state = 6}, + [498] = {.lex_state = 103}, + [499] = {.lex_state = 237, .external_lex_state = 6}, + [500] = {.lex_state = 237, .external_lex_state = 13}, + [501] = {.lex_state = 165}, + [502] = {.lex_state = 170}, + [503] = {.lex_state = 237, .external_lex_state = 13}, + [504] = {.lex_state = 175, .external_lex_state = 6}, [505] = {.lex_state = 20, .external_lex_state = 2}, [506] = {.lex_state = 20, .external_lex_state = 2}, - [507] = {.lex_state = 237}, + [507] = {.lex_state = 20, .external_lex_state = 2}, [508] = {.lex_state = 237}, [509] = {.lex_state = 237}, - [510] = {.lex_state = 141}, - [511] = {.lex_state = 143, .external_lex_state = 17}, + [510] = {.lex_state = 237}, + [511] = {.lex_state = 141}, [512] = {.lex_state = 143, .external_lex_state = 17}, - [513] = {.lex_state = 165}, - [514] = {.lex_state = 143, .external_lex_state = 17}, + [513] = {.lex_state = 143, .external_lex_state = 17}, + [514] = {.lex_state = 165}, [515] = {.lex_state = 143, .external_lex_state = 17}, [516] = {.lex_state = 143, .external_lex_state = 17}, - [517] = {.lex_state = 103}, - [518] = {.lex_state = 226, .external_lex_state = 16}, - [519] = {.lex_state = 235, .external_lex_state = 6}, - [520] = {.lex_state = 226, .external_lex_state = 16}, + [517] = {.lex_state = 143, .external_lex_state = 17}, + [518] = {.lex_state = 103}, + [519] = {.lex_state = 226, .external_lex_state = 16}, + [520] = {.lex_state = 235, .external_lex_state = 6}, [521] = {.lex_state = 226, .external_lex_state = 16}, - [522] = {.lex_state = 103}, - [523] = {.lex_state = 241, .external_lex_state = 2}, - [524] = {.lex_state = 103}, - [525] = {.lex_state = 249, .external_lex_state = 2}, - [526] = {.lex_state = 103}, - [527] = {.lex_state = 241, .external_lex_state = 2}, - [528] = {.lex_state = 103}, - [529] = {.lex_state = 20, .external_lex_state = 2}, - [530] = {.lex_state = 162, .external_lex_state = 5}, - [531] = {.lex_state = 20, .external_lex_state = 2}, - [532] = {.lex_state = 20}, - [533] = {.lex_state = 197}, - [534] = {.lex_state = 141}, - [535] = {.lex_state = 251, .external_lex_state = 19}, - [536] = {.lex_state = 141}, - [537] = {.lex_state = 143, .external_lex_state = 17}, + [522] = {.lex_state = 226, .external_lex_state = 16}, + [523] = {.lex_state = 103}, + [524] = {.lex_state = 241, .external_lex_state = 2}, + [525] = {.lex_state = 103}, + [526] = {.lex_state = 249, .external_lex_state = 2}, + [527] = {.lex_state = 103}, + [528] = {.lex_state = 241, .external_lex_state = 2}, + [529] = {.lex_state = 103}, + [530] = {.lex_state = 20, .external_lex_state = 2}, + [531] = {.lex_state = 162, .external_lex_state = 5}, + [532] = {.lex_state = 20, .external_lex_state = 2}, + [533] = {.lex_state = 20}, + [534] = {.lex_state = 197}, + [535] = {.lex_state = 141}, + [536] = {.lex_state = 251, .external_lex_state = 19}, + [537] = {.lex_state = 141}, [538] = {.lex_state = 143, .external_lex_state = 17}, - [539] = {.lex_state = 298, .external_lex_state = 18}, - [540] = {.lex_state = 143, .external_lex_state = 18}, - [541] = {.lex_state = 300, .external_lex_state = 18}, - [542] = {.lex_state = 143, .external_lex_state = 18}, + [539] = {.lex_state = 143, .external_lex_state = 17}, + [540] = {.lex_state = 298, .external_lex_state = 18}, + [541] = {.lex_state = 143, .external_lex_state = 18}, + [542] = {.lex_state = 300, .external_lex_state = 18}, [543] = {.lex_state = 143, .external_lex_state = 18}, - [544] = {.lex_state = 186, .external_lex_state = 9}, - [545] = {.lex_state = 103}, + [544] = {.lex_state = 143, .external_lex_state = 18}, + [545] = {.lex_state = 186, .external_lex_state = 9}, [546] = {.lex_state = 103}, - [547] = {.lex_state = 217, .external_lex_state = 12}, - [548] = {.lex_state = 219}, - [549] = {.lex_state = 103}, - [550] = {.lex_state = 243, .external_lex_state = 23}, - [551] = {.lex_state = 165}, - [552] = {.lex_state = 170}, - [553] = {.lex_state = 243, .external_lex_state = 23}, - [554] = {.lex_state = 175, .external_lex_state = 6}, - [555] = {.lex_state = 20, .external_lex_state = 2}, + [547] = {.lex_state = 103}, + [548] = {.lex_state = 217, .external_lex_state = 12}, + [549] = {.lex_state = 219}, + [550] = {.lex_state = 103}, + [551] = {.lex_state = 243, .external_lex_state = 23}, + [552] = {.lex_state = 165}, + [553] = {.lex_state = 170}, + [554] = {.lex_state = 243, .external_lex_state = 23}, + [555] = {.lex_state = 175, .external_lex_state = 6}, [556] = {.lex_state = 20, .external_lex_state = 2}, [557] = {.lex_state = 20, .external_lex_state = 2}, - [558] = {.lex_state = 103}, - [559] = {.lex_state = 243, .external_lex_state = 6}, - [560] = {.lex_state = 243, .external_lex_state = 13}, - [561] = {.lex_state = 165}, - [562] = {.lex_state = 170}, - [563] = {.lex_state = 243, .external_lex_state = 13}, - [564] = {.lex_state = 175, .external_lex_state = 6}, - [565] = {.lex_state = 20, .external_lex_state = 2}, + [558] = {.lex_state = 20, .external_lex_state = 2}, + [559] = {.lex_state = 103}, + [560] = {.lex_state = 243, .external_lex_state = 6}, + [561] = {.lex_state = 243, .external_lex_state = 13}, + [562] = {.lex_state = 165}, + [563] = {.lex_state = 170}, + [564] = {.lex_state = 243, .external_lex_state = 13}, + [565] = {.lex_state = 175, .external_lex_state = 6}, [566] = {.lex_state = 20, .external_lex_state = 2}, [567] = {.lex_state = 20, .external_lex_state = 2}, - [568] = {.lex_state = 237}, - [569] = {.lex_state = 141}, - [570] = {.lex_state = 245, .external_lex_state = 17}, + [568] = {.lex_state = 20, .external_lex_state = 2}, + [569] = {.lex_state = 237}, + [570] = {.lex_state = 141}, [571] = {.lex_state = 245, .external_lex_state = 17}, - [572] = {.lex_state = 165}, - [573] = {.lex_state = 245, .external_lex_state = 17}, + [572] = {.lex_state = 245, .external_lex_state = 17}, + [573] = {.lex_state = 165}, [574] = {.lex_state = 245, .external_lex_state = 17}, [575] = {.lex_state = 245, .external_lex_state = 17}, - [576] = {.lex_state = 103}, - [577] = {.lex_state = 226, .external_lex_state = 16}, - [578] = {.lex_state = 235, .external_lex_state = 6}, - [579] = {.lex_state = 226, .external_lex_state = 16}, + [576] = {.lex_state = 245, .external_lex_state = 17}, + [577] = {.lex_state = 103}, + [578] = {.lex_state = 226, .external_lex_state = 16}, + [579] = {.lex_state = 235, .external_lex_state = 6}, [580] = {.lex_state = 226, .external_lex_state = 16}, - [581] = {.lex_state = 103}, - [582] = {.lex_state = 241, .external_lex_state = 2}, - [583] = {.lex_state = 103}, - [584] = {.lex_state = 249, .external_lex_state = 2}, - [585] = {.lex_state = 103}, - [586] = {.lex_state = 241, .external_lex_state = 2}, - [587] = {.lex_state = 103}, - [588] = {.lex_state = 20, .external_lex_state = 2}, + [581] = {.lex_state = 226, .external_lex_state = 16}, + [582] = {.lex_state = 103}, + [583] = {.lex_state = 241, .external_lex_state = 2}, + [584] = {.lex_state = 103}, + [585] = {.lex_state = 249, .external_lex_state = 2}, + [586] = {.lex_state = 103}, + [587] = {.lex_state = 241, .external_lex_state = 2}, + [588] = {.lex_state = 103}, [589] = {.lex_state = 20, .external_lex_state = 2}, - [590] = {.lex_state = 20}, - [591] = {.lex_state = 197}, - [592] = {.lex_state = 141}, + [590] = {.lex_state = 20, .external_lex_state = 2}, + [591] = {.lex_state = 20}, + [592] = {.lex_state = 197}, [593] = {.lex_state = 141}, - [594] = {.lex_state = 245, .external_lex_state = 17}, + [594] = {.lex_state = 141}, [595] = {.lex_state = 245, .external_lex_state = 17}, - [596] = {.lex_state = 302, .external_lex_state = 18}, - [597] = {.lex_state = 245, .external_lex_state = 18}, + [596] = {.lex_state = 245, .external_lex_state = 17}, + [597] = {.lex_state = 302, .external_lex_state = 18}, [598] = {.lex_state = 245, .external_lex_state = 18}, - [599] = {.lex_state = 162, .external_lex_state = 5}, - [600] = {.lex_state = 103}, - [601] = {.lex_state = 283, .external_lex_state = 4}, - [602] = {.lex_state = 188, .external_lex_state = 8}, - [603] = {.lex_state = 153, .external_lex_state = 4}, - [604] = {.lex_state = 182, .external_lex_state = 8}, - [605] = {.lex_state = 141}, - [606] = {.lex_state = 162, .external_lex_state = 5}, + [599] = {.lex_state = 245, .external_lex_state = 18}, + [600] = {.lex_state = 162, .external_lex_state = 5}, + [601] = {.lex_state = 103}, + [602] = {.lex_state = 283, .external_lex_state = 4}, + [603] = {.lex_state = 188, .external_lex_state = 8}, + [604] = {.lex_state = 153, .external_lex_state = 4}, + [605] = {.lex_state = 182, .external_lex_state = 8}, + [606] = {.lex_state = 141}, [607] = {.lex_state = 162, .external_lex_state = 5}, - [608] = {.lex_state = 184, .external_lex_state = 7}, - [609] = {.lex_state = 258, .external_lex_state = 5}, - [610] = {.lex_state = 165}, - [611] = {.lex_state = 170}, - [612] = {.lex_state = 258, .external_lex_state = 5}, - [613] = {.lex_state = 175, .external_lex_state = 6}, - [614] = {.lex_state = 20, .external_lex_state = 2}, + [608] = {.lex_state = 162, .external_lex_state = 5}, + [609] = {.lex_state = 184, .external_lex_state = 7}, + [610] = {.lex_state = 258, .external_lex_state = 5}, + [611] = {.lex_state = 165}, + [612] = {.lex_state = 170}, + [613] = {.lex_state = 258, .external_lex_state = 5}, + [614] = {.lex_state = 175, .external_lex_state = 6}, [615] = {.lex_state = 20, .external_lex_state = 2}, [616] = {.lex_state = 20, .external_lex_state = 2}, - [617] = {.lex_state = 253, .external_lex_state = 7}, + [617] = {.lex_state = 20, .external_lex_state = 2}, [618] = {.lex_state = 253, .external_lex_state = 7}, - [619] = {.lex_state = 304, .external_lex_state = 24}, - [620] = {.lex_state = 253, .external_lex_state = 7}, - [621] = {.lex_state = 258, .external_lex_state = 5}, + [619] = {.lex_state = 253, .external_lex_state = 7}, + [620] = {.lex_state = 304, .external_lex_state = 24}, + [621] = {.lex_state = 253, .external_lex_state = 7}, [622] = {.lex_state = 258, .external_lex_state = 5}, - [623] = {.lex_state = 253, .external_lex_state = 7}, - [624] = {.lex_state = 258, .external_lex_state = 7}, + [623] = {.lex_state = 258, .external_lex_state = 5}, + [624] = {.lex_state = 253, .external_lex_state = 7}, [625] = {.lex_state = 258, .external_lex_state = 7}, - [626] = {.lex_state = 162, .external_lex_state = 7}, - [627] = {.lex_state = 186, .external_lex_state = 9}, - [628] = {.lex_state = 162, .external_lex_state = 7}, - [629] = {.lex_state = 307, .external_lex_state = 12}, - [630] = {.lex_state = 309, .external_lex_state = 13}, - [631] = {.lex_state = 260, .external_lex_state = 11}, + [626] = {.lex_state = 258, .external_lex_state = 7}, + [627] = {.lex_state = 162, .external_lex_state = 7}, + [628] = {.lex_state = 186, .external_lex_state = 9}, + [629] = {.lex_state = 162, .external_lex_state = 7}, + [630] = {.lex_state = 307, .external_lex_state = 12}, + [631] = {.lex_state = 309, .external_lex_state = 13}, [632] = {.lex_state = 260, .external_lex_state = 11}, - [633] = {.lex_state = 165}, - [634] = {.lex_state = 260, .external_lex_state = 11}, + [633] = {.lex_state = 260, .external_lex_state = 11}, + [634] = {.lex_state = 165}, [635] = {.lex_state = 260, .external_lex_state = 11}, [636] = {.lex_state = 260, .external_lex_state = 11}, - [637] = {.lex_state = 307, .external_lex_state = 12}, - [638] = {.lex_state = 309, .external_lex_state = 13}, - [639] = {.lex_state = 103}, - [640] = {.lex_state = 226, .external_lex_state = 16}, - [641] = {.lex_state = 235, .external_lex_state = 6}, - [642] = {.lex_state = 226, .external_lex_state = 16}, + [637] = {.lex_state = 260, .external_lex_state = 11}, + [638] = {.lex_state = 307, .external_lex_state = 12}, + [639] = {.lex_state = 309, .external_lex_state = 13}, + [640] = {.lex_state = 103}, + [641] = {.lex_state = 226, .external_lex_state = 16}, + [642] = {.lex_state = 235, .external_lex_state = 6}, [643] = {.lex_state = 226, .external_lex_state = 16}, - [644] = {.lex_state = 103}, - [645] = {.lex_state = 241, .external_lex_state = 2}, - [646] = {.lex_state = 103}, - [647] = {.lex_state = 249, .external_lex_state = 2}, - [648] = {.lex_state = 103}, - [649] = {.lex_state = 241, .external_lex_state = 2}, - [650] = {.lex_state = 103, .external_lex_state = 12}, - [651] = {.lex_state = 188, .external_lex_state = 8}, - [652] = {.lex_state = 311, .external_lex_state = 13}, - [653] = {.lex_state = 165}, - [654] = {.lex_state = 170}, - [655] = {.lex_state = 311, .external_lex_state = 13}, - [656] = {.lex_state = 175, .external_lex_state = 6}, - [657] = {.lex_state = 20, .external_lex_state = 2}, + [644] = {.lex_state = 226, .external_lex_state = 16}, + [645] = {.lex_state = 103}, + [646] = {.lex_state = 241, .external_lex_state = 2}, + [647] = {.lex_state = 103}, + [648] = {.lex_state = 249, .external_lex_state = 2}, + [649] = {.lex_state = 103}, + [650] = {.lex_state = 241, .external_lex_state = 2}, + [651] = {.lex_state = 103, .external_lex_state = 12}, + [652] = {.lex_state = 188, .external_lex_state = 8}, + [653] = {.lex_state = 311, .external_lex_state = 13}, + [654] = {.lex_state = 165}, + [655] = {.lex_state = 170}, + [656] = {.lex_state = 311, .external_lex_state = 13}, + [657] = {.lex_state = 175, .external_lex_state = 6}, [658] = {.lex_state = 20, .external_lex_state = 2}, [659] = {.lex_state = 20, .external_lex_state = 2}, - [660] = {.lex_state = 241}, + [660] = {.lex_state = 20, .external_lex_state = 2}, [661] = {.lex_state = 241}, - [662] = {.lex_state = 141}, - [663] = {.lex_state = 182, .external_lex_state = 20}, + [662] = {.lex_state = 241}, + [663] = {.lex_state = 141}, [664] = {.lex_state = 182, .external_lex_state = 20}, - [665] = {.lex_state = 165}, - [666] = {.lex_state = 182, .external_lex_state = 20}, + [665] = {.lex_state = 182, .external_lex_state = 20}, + [666] = {.lex_state = 165}, [667] = {.lex_state = 182, .external_lex_state = 20}, [668] = {.lex_state = 182, .external_lex_state = 20}, - [669] = {.lex_state = 103}, - [670] = {.lex_state = 226, .external_lex_state = 16}, - [671] = {.lex_state = 235, .external_lex_state = 6}, - [672] = {.lex_state = 226, .external_lex_state = 16}, + [669] = {.lex_state = 182, .external_lex_state = 20}, + [670] = {.lex_state = 103}, + [671] = {.lex_state = 226, .external_lex_state = 16}, + [672] = {.lex_state = 235, .external_lex_state = 6}, [673] = {.lex_state = 226, .external_lex_state = 16}, - [674] = {.lex_state = 103}, - [675] = {.lex_state = 241, .external_lex_state = 2}, - [676] = {.lex_state = 103}, - [677] = {.lex_state = 249, .external_lex_state = 2}, - [678] = {.lex_state = 103}, - [679] = {.lex_state = 241, .external_lex_state = 2}, - [680] = {.lex_state = 313, .external_lex_state = 10}, - [681] = {.lex_state = 165}, - [682] = {.lex_state = 170}, - [683] = {.lex_state = 313, .external_lex_state = 10}, - [684] = {.lex_state = 175, .external_lex_state = 6}, - [685] = {.lex_state = 20, .external_lex_state = 2}, + [674] = {.lex_state = 226, .external_lex_state = 16}, + [675] = {.lex_state = 103}, + [676] = {.lex_state = 241, .external_lex_state = 2}, + [677] = {.lex_state = 103}, + [678] = {.lex_state = 249, .external_lex_state = 2}, + [679] = {.lex_state = 103}, + [680] = {.lex_state = 241, .external_lex_state = 2}, + [681] = {.lex_state = 313, .external_lex_state = 10}, + [682] = {.lex_state = 165}, + [683] = {.lex_state = 170}, + [684] = {.lex_state = 313, .external_lex_state = 10}, + [685] = {.lex_state = 175, .external_lex_state = 6}, [686] = {.lex_state = 20, .external_lex_state = 2}, [687] = {.lex_state = 20, .external_lex_state = 2}, - [688] = {.lex_state = 313, .external_lex_state = 4}, + [688] = {.lex_state = 20, .external_lex_state = 2}, [689] = {.lex_state = 313, .external_lex_state = 4}, - [690] = {.lex_state = 253, .external_lex_state = 7}, + [690] = {.lex_state = 313, .external_lex_state = 4}, [691] = {.lex_state = 262, .external_lex_state = 2}, - [692] = {.lex_state = 153, .external_lex_state = 4}, - [693] = {.lex_state = 182, .external_lex_state = 8}, + [692] = {.lex_state = 283, .external_lex_state = 4}, + [693] = {.lex_state = 253, .external_lex_state = 7}, [694] = {.lex_state = 262, .external_lex_state = 2}, - [695] = {.lex_state = 258, .external_lex_state = 7}, - [696] = {.lex_state = 283, .external_lex_state = 4}, - [697] = {.lex_state = 20, .external_lex_state = 2}, - [698] = {.lex_state = 315, .external_lex_state = 2}, - [699] = {.lex_state = 268, .external_lex_state = 2}, - [700] = {.lex_state = 153, .external_lex_state = 4}, - [701] = {.lex_state = 103}, - [702] = {.lex_state = 103}, - [703] = {.lex_state = 182, .external_lex_state = 8}, - [704] = {.lex_state = 268, .external_lex_state = 2}, + [695] = {.lex_state = 153, .external_lex_state = 4}, + [696] = {.lex_state = 182, .external_lex_state = 8}, + [697] = {.lex_state = 262, .external_lex_state = 2}, + [698] = {.lex_state = 258, .external_lex_state = 7}, + [699] = {.lex_state = 283, .external_lex_state = 4}, + [700] = {.lex_state = 20, .external_lex_state = 2}, + [701] = {.lex_state = 315, .external_lex_state = 2}, + [702] = {.lex_state = 268, .external_lex_state = 2}, + [703] = {.lex_state = 153, .external_lex_state = 4}, + [704] = {.lex_state = 103}, [705] = {.lex_state = 103}, - [706] = {.lex_state = 190, .external_lex_state = 10}, - [707] = {.lex_state = 317}, - [708] = {.lex_state = 190, .external_lex_state = 4}, + [706] = {.lex_state = 182, .external_lex_state = 8}, + [707] = {.lex_state = 268, .external_lex_state = 2}, + [708] = {.lex_state = 103}, [709] = {.lex_state = 190, .external_lex_state = 10}, - [710] = {.lex_state = 190, .external_lex_state = 10}, - [711] = {.lex_state = 317}, - [712] = {.lex_state = 190, .external_lex_state = 4}, - [713] = {.lex_state = 289, .external_lex_state = 16}, - [714] = {.lex_state = 190, .external_lex_state = 10}, - [715] = {.lex_state = 293}, - [716] = {.lex_state = 291, .external_lex_state = 16}, - [717] = {.lex_state = 103}, - [718] = {.lex_state = 226, .external_lex_state = 16}, - [719] = {.lex_state = 226, .external_lex_state = 16}, - [720] = {.lex_state = 226, .external_lex_state = 16}, - [721] = {.lex_state = 190, .external_lex_state = 10}, - [722] = {.lex_state = 293}, - [723] = {.lex_state = 291, .external_lex_state = 16}, + [710] = {.lex_state = 317}, + [711] = {.lex_state = 190, .external_lex_state = 4}, + [712] = {.lex_state = 190, .external_lex_state = 10}, + [713] = {.lex_state = 190, .external_lex_state = 10}, + [714] = {.lex_state = 317}, + [715] = {.lex_state = 190, .external_lex_state = 4}, + [716] = {.lex_state = 289, .external_lex_state = 16}, + [717] = {.lex_state = 190, .external_lex_state = 10}, + [718] = {.lex_state = 293}, + [719] = {.lex_state = 291, .external_lex_state = 16}, + [720] = {.lex_state = 103}, + [721] = {.lex_state = 226, .external_lex_state = 16}, + [722] = {.lex_state = 226, .external_lex_state = 16}, + [723] = {.lex_state = 226, .external_lex_state = 16}, [724] = {.lex_state = 190, .external_lex_state = 10}, [725] = {.lex_state = 293}, [726] = {.lex_state = 291, .external_lex_state = 16}, [727] = {.lex_state = 190, .external_lex_state = 10}, - [728] = {.lex_state = 190, .external_lex_state = 10}, - [729] = {.lex_state = 103}, - [730] = {.lex_state = 323, .external_lex_state = 7}, - [731] = {.lex_state = 278, .external_lex_state = 21}, - [732] = {.lex_state = 153, .external_lex_state = 4}, - [733] = {.lex_state = 182, .external_lex_state = 8}, + [728] = {.lex_state = 293}, + [729] = {.lex_state = 291, .external_lex_state = 16}, + [730] = {.lex_state = 190, .external_lex_state = 10}, + [731] = {.lex_state = 190, .external_lex_state = 10}, + [732] = {.lex_state = 103}, + [733] = {.lex_state = 323, .external_lex_state = 7}, [734] = {.lex_state = 278, .external_lex_state = 21}, - [735] = {.lex_state = 20}, - [736] = {.lex_state = 141}, - [737] = {.lex_state = 283, .external_lex_state = 4}, - [738] = {.lex_state = 188, .external_lex_state = 20}, - [739] = {.lex_state = 165}, - [740] = {.lex_state = 170}, + [735] = {.lex_state = 153, .external_lex_state = 4}, + [736] = {.lex_state = 182, .external_lex_state = 8}, + [737] = {.lex_state = 278, .external_lex_state = 21}, + [738] = {.lex_state = 20}, + [739] = {.lex_state = 141}, + [740] = {.lex_state = 283, .external_lex_state = 4}, [741] = {.lex_state = 188, .external_lex_state = 20}, - [742] = {.lex_state = 175, .external_lex_state = 6}, - [743] = {.lex_state = 20, .external_lex_state = 2}, - [744] = {.lex_state = 20, .external_lex_state = 2}, - [745] = {.lex_state = 20, .external_lex_state = 2}, - [746] = {.lex_state = 287, .external_lex_state = 7}, - [747] = {.lex_state = 103}, - [748] = {.lex_state = 325, .external_lex_state = 7}, + [742] = {.lex_state = 165}, + [743] = {.lex_state = 170}, + [744] = {.lex_state = 188, .external_lex_state = 20}, + [745] = {.lex_state = 175, .external_lex_state = 6}, + [746] = {.lex_state = 20, .external_lex_state = 2}, + [747] = {.lex_state = 20, .external_lex_state = 2}, + [748] = {.lex_state = 20, .external_lex_state = 2}, [749] = {.lex_state = 287, .external_lex_state = 7}, - [750] = {.lex_state = 186, .external_lex_state = 9}, - [751] = {.lex_state = 141}, - [752] = {.lex_state = 193, .external_lex_state = 14}, - [753] = {.lex_state = 193, .external_lex_state = 14}, - [754] = {.lex_state = 165}, + [750] = {.lex_state = 103}, + [751] = {.lex_state = 325, .external_lex_state = 7}, + [752] = {.lex_state = 287, .external_lex_state = 7}, + [753] = {.lex_state = 186, .external_lex_state = 9}, + [754] = {.lex_state = 141}, [755] = {.lex_state = 193, .external_lex_state = 14}, [756] = {.lex_state = 193, .external_lex_state = 14}, - [757] = {.lex_state = 193, .external_lex_state = 14}, - [758] = {.lex_state = 103}, - [759] = {.lex_state = 226, .external_lex_state = 16}, - [760] = {.lex_state = 235, .external_lex_state = 6}, - [761] = {.lex_state = 226, .external_lex_state = 16}, + [757] = {.lex_state = 165}, + [758] = {.lex_state = 193, .external_lex_state = 14}, + [759] = {.lex_state = 193, .external_lex_state = 14}, + [760] = {.lex_state = 193, .external_lex_state = 14}, + [761] = {.lex_state = 103}, [762] = {.lex_state = 226, .external_lex_state = 16}, - [763] = {.lex_state = 103}, - [764] = {.lex_state = 241, .external_lex_state = 2}, - [765] = {.lex_state = 103}, - [766] = {.lex_state = 249, .external_lex_state = 2}, - [767] = {.lex_state = 103}, - [768] = {.lex_state = 241, .external_lex_state = 2}, - [769] = {.lex_state = 193, .external_lex_state = 3}, - [770] = {.lex_state = 141}, - [771] = {.lex_state = 193, .external_lex_state = 10}, - [772] = {.lex_state = 193, .external_lex_state = 10}, - [773] = {.lex_state = 165}, + [763] = {.lex_state = 235, .external_lex_state = 6}, + [764] = {.lex_state = 226, .external_lex_state = 16}, + [765] = {.lex_state = 226, .external_lex_state = 16}, + [766] = {.lex_state = 103}, + [767] = {.lex_state = 241, .external_lex_state = 2}, + [768] = {.lex_state = 103}, + [769] = {.lex_state = 249, .external_lex_state = 2}, + [770] = {.lex_state = 103}, + [771] = {.lex_state = 241, .external_lex_state = 2}, + [772] = {.lex_state = 193, .external_lex_state = 3}, + [773] = {.lex_state = 141}, [774] = {.lex_state = 193, .external_lex_state = 10}, [775] = {.lex_state = 193, .external_lex_state = 10}, - [776] = {.lex_state = 193, .external_lex_state = 10}, - [777] = {.lex_state = 103}, - [778] = {.lex_state = 226, .external_lex_state = 16}, - [779] = {.lex_state = 235, .external_lex_state = 6}, - [780] = {.lex_state = 226, .external_lex_state = 16}, + [776] = {.lex_state = 165}, + [777] = {.lex_state = 193, .external_lex_state = 10}, + [778] = {.lex_state = 193, .external_lex_state = 10}, + [779] = {.lex_state = 193, .external_lex_state = 10}, + [780] = {.lex_state = 103}, [781] = {.lex_state = 226, .external_lex_state = 16}, - [782] = {.lex_state = 103}, - [783] = {.lex_state = 241, .external_lex_state = 2}, - [784] = {.lex_state = 103}, - [785] = {.lex_state = 249, .external_lex_state = 2}, - [786] = {.lex_state = 103}, - [787] = {.lex_state = 241, .external_lex_state = 2}, - [788] = {.lex_state = 193, .external_lex_state = 4}, - [789] = {.lex_state = 184, .external_lex_state = 5}, - [790] = {.lex_state = 184, .external_lex_state = 5}, - [791] = {.lex_state = 184, .external_lex_state = 5}, - [792] = {.lex_state = 289, .external_lex_state = 16}, + [782] = {.lex_state = 235, .external_lex_state = 6}, + [783] = {.lex_state = 226, .external_lex_state = 16}, + [784] = {.lex_state = 226, .external_lex_state = 16}, + [785] = {.lex_state = 103}, + [786] = {.lex_state = 241, .external_lex_state = 2}, + [787] = {.lex_state = 103}, + [788] = {.lex_state = 249, .external_lex_state = 2}, + [789] = {.lex_state = 103}, + [790] = {.lex_state = 241, .external_lex_state = 2}, + [791] = {.lex_state = 193, .external_lex_state = 4}, + [792] = {.lex_state = 184, .external_lex_state = 5}, [793] = {.lex_state = 184, .external_lex_state = 5}, - [794] = {.lex_state = 293}, - [795] = {.lex_state = 291, .external_lex_state = 16}, - [796] = {.lex_state = 103}, - [797] = {.lex_state = 226, .external_lex_state = 16}, - [798] = {.lex_state = 226, .external_lex_state = 16}, - [799] = {.lex_state = 226, .external_lex_state = 16}, - [800] = {.lex_state = 184, .external_lex_state = 5}, - [801] = {.lex_state = 293}, - [802] = {.lex_state = 291, .external_lex_state = 16}, + [794] = {.lex_state = 184, .external_lex_state = 5}, + [795] = {.lex_state = 289, .external_lex_state = 16}, + [796] = {.lex_state = 184, .external_lex_state = 5}, + [797] = {.lex_state = 293}, + [798] = {.lex_state = 291, .external_lex_state = 16}, + [799] = {.lex_state = 103}, + [800] = {.lex_state = 226, .external_lex_state = 16}, + [801] = {.lex_state = 226, .external_lex_state = 16}, + [802] = {.lex_state = 226, .external_lex_state = 16}, [803] = {.lex_state = 184, .external_lex_state = 5}, [804] = {.lex_state = 293}, [805] = {.lex_state = 291, .external_lex_state = 16}, [806] = {.lex_state = 184, .external_lex_state = 5}, - [807] = {.lex_state = 184, .external_lex_state = 5}, - [808] = {.lex_state = 103}, - [809] = {.lex_state = 283, .external_lex_state = 4}, - [810] = {.lex_state = 193, .external_lex_state = 4}, - [811] = {.lex_state = 188, .external_lex_state = 8}, - [812] = {.lex_state = 141}, - [813] = {.lex_state = 184, .external_lex_state = 5}, - [814] = {.lex_state = 184, .external_lex_state = 5}, - [815] = {.lex_state = 287, .external_lex_state = 5}, - [816] = {.lex_state = 165}, - [817] = {.lex_state = 170}, + [807] = {.lex_state = 293}, + [808] = {.lex_state = 291, .external_lex_state = 16}, + [809] = {.lex_state = 184, .external_lex_state = 5}, + [810] = {.lex_state = 184, .external_lex_state = 5}, + [811] = {.lex_state = 103}, + [812] = {.lex_state = 283, .external_lex_state = 4}, + [813] = {.lex_state = 193, .external_lex_state = 4}, + [814] = {.lex_state = 188, .external_lex_state = 8}, + [815] = {.lex_state = 141}, + [816] = {.lex_state = 184, .external_lex_state = 5}, + [817] = {.lex_state = 184, .external_lex_state = 5}, [818] = {.lex_state = 287, .external_lex_state = 5}, - [819] = {.lex_state = 175, .external_lex_state = 6}, - [820] = {.lex_state = 20, .external_lex_state = 2}, - [821] = {.lex_state = 20, .external_lex_state = 2}, - [822] = {.lex_state = 20, .external_lex_state = 2}, - [823] = {.lex_state = 287, .external_lex_state = 5}, - [824] = {.lex_state = 287, .external_lex_state = 5}, - [825] = {.lex_state = 287, .external_lex_state = 7}, - [826] = {.lex_state = 287, .external_lex_state = 7}, - [827] = {.lex_state = 184, .external_lex_state = 7}, - [828] = {.lex_state = 285, .external_lex_state = 2}, - [829] = {.lex_state = 184, .external_lex_state = 7}, - [830] = {.lex_state = 217, .external_lex_state = 11}, - [831] = {.lex_state = 217, .external_lex_state = 11}, - [832] = {.lex_state = 217, .external_lex_state = 11}, - [833] = {.lex_state = 289, .external_lex_state = 16}, + [819] = {.lex_state = 165}, + [820] = {.lex_state = 170}, + [821] = {.lex_state = 287, .external_lex_state = 5}, + [822] = {.lex_state = 175, .external_lex_state = 6}, + [823] = {.lex_state = 20, .external_lex_state = 2}, + [824] = {.lex_state = 20, .external_lex_state = 2}, + [825] = {.lex_state = 20, .external_lex_state = 2}, + [826] = {.lex_state = 287, .external_lex_state = 5}, + [827] = {.lex_state = 287, .external_lex_state = 5}, + [828] = {.lex_state = 287, .external_lex_state = 7}, + [829] = {.lex_state = 287, .external_lex_state = 7}, + [830] = {.lex_state = 184, .external_lex_state = 7}, + [831] = {.lex_state = 285, .external_lex_state = 2}, + [832] = {.lex_state = 184, .external_lex_state = 7}, + [833] = {.lex_state = 217, .external_lex_state = 11}, [834] = {.lex_state = 217, .external_lex_state = 11}, - [835] = {.lex_state = 293}, - [836] = {.lex_state = 291, .external_lex_state = 16}, - [837] = {.lex_state = 103}, - [838] = {.lex_state = 226, .external_lex_state = 16}, - [839] = {.lex_state = 226, .external_lex_state = 16}, - [840] = {.lex_state = 226, .external_lex_state = 16}, - [841] = {.lex_state = 217, .external_lex_state = 11}, - [842] = {.lex_state = 293}, - [843] = {.lex_state = 291, .external_lex_state = 16}, + [835] = {.lex_state = 217, .external_lex_state = 11}, + [836] = {.lex_state = 289, .external_lex_state = 16}, + [837] = {.lex_state = 217, .external_lex_state = 11}, + [838] = {.lex_state = 293}, + [839] = {.lex_state = 291, .external_lex_state = 16}, + [840] = {.lex_state = 103}, + [841] = {.lex_state = 226, .external_lex_state = 16}, + [842] = {.lex_state = 226, .external_lex_state = 16}, + [843] = {.lex_state = 226, .external_lex_state = 16}, [844] = {.lex_state = 217, .external_lex_state = 11}, [845] = {.lex_state = 293}, [846] = {.lex_state = 291, .external_lex_state = 16}, [847] = {.lex_state = 217, .external_lex_state = 11}, - [848] = {.lex_state = 217, .external_lex_state = 11}, - [849] = {.lex_state = 258, .external_lex_state = 7}, - [850] = {.lex_state = 219, .external_lex_state = 13}, - [851] = {.lex_state = 219, .external_lex_state = 13}, - [852] = {.lex_state = 219, .external_lex_state = 13}, - [853] = {.lex_state = 289, .external_lex_state = 16}, + [848] = {.lex_state = 293}, + [849] = {.lex_state = 291, .external_lex_state = 16}, + [850] = {.lex_state = 217, .external_lex_state = 11}, + [851] = {.lex_state = 217, .external_lex_state = 11}, + [852] = {.lex_state = 258, .external_lex_state = 7}, + [853] = {.lex_state = 219, .external_lex_state = 13}, [854] = {.lex_state = 219, .external_lex_state = 13}, - [855] = {.lex_state = 293}, - [856] = {.lex_state = 291, .external_lex_state = 16}, - [857] = {.lex_state = 103}, - [858] = {.lex_state = 226, .external_lex_state = 16}, - [859] = {.lex_state = 226, .external_lex_state = 16}, - [860] = {.lex_state = 226, .external_lex_state = 16}, - [861] = {.lex_state = 219, .external_lex_state = 13}, - [862] = {.lex_state = 293}, - [863] = {.lex_state = 291, .external_lex_state = 16}, + [855] = {.lex_state = 219, .external_lex_state = 13}, + [856] = {.lex_state = 289, .external_lex_state = 16}, + [857] = {.lex_state = 219, .external_lex_state = 13}, + [858] = {.lex_state = 293}, + [859] = {.lex_state = 291, .external_lex_state = 16}, + [860] = {.lex_state = 103}, + [861] = {.lex_state = 226, .external_lex_state = 16}, + [862] = {.lex_state = 226, .external_lex_state = 16}, + [863] = {.lex_state = 226, .external_lex_state = 16}, [864] = {.lex_state = 219, .external_lex_state = 13}, [865] = {.lex_state = 293}, [866] = {.lex_state = 291, .external_lex_state = 16}, [867] = {.lex_state = 219, .external_lex_state = 13}, - [868] = {.lex_state = 219, .external_lex_state = 13}, - [869] = {.lex_state = 193, .external_lex_state = 3}, - [870] = {.lex_state = 241}, - [871] = {.lex_state = 153, .external_lex_state = 14}, - [872] = {.lex_state = 153, .external_lex_state = 14}, - [873] = {.lex_state = 153, .external_lex_state = 14}, + [868] = {.lex_state = 293}, + [869] = {.lex_state = 291, .external_lex_state = 16}, + [870] = {.lex_state = 219, .external_lex_state = 13}, + [871] = {.lex_state = 219, .external_lex_state = 13}, + [872] = {.lex_state = 193, .external_lex_state = 3}, + [873] = {.lex_state = 241}, [874] = {.lex_state = 153, .external_lex_state = 14}, [875] = {.lex_state = 153, .external_lex_state = 14}, - [876] = {.lex_state = 289, .external_lex_state = 16}, + [876] = {.lex_state = 153, .external_lex_state = 14}, [877] = {.lex_state = 153, .external_lex_state = 14}, - [878] = {.lex_state = 293}, - [879] = {.lex_state = 291, .external_lex_state = 16}, - [880] = {.lex_state = 103}, - [881] = {.lex_state = 226, .external_lex_state = 16}, - [882] = {.lex_state = 226, .external_lex_state = 16}, - [883] = {.lex_state = 226, .external_lex_state = 16}, - [884] = {.lex_state = 153, .external_lex_state = 14}, - [885] = {.lex_state = 293}, - [886] = {.lex_state = 291, .external_lex_state = 16}, + [878] = {.lex_state = 153, .external_lex_state = 14}, + [879] = {.lex_state = 289, .external_lex_state = 16}, + [880] = {.lex_state = 153, .external_lex_state = 14}, + [881] = {.lex_state = 293}, + [882] = {.lex_state = 291, .external_lex_state = 16}, + [883] = {.lex_state = 103}, + [884] = {.lex_state = 226, .external_lex_state = 16}, + [885] = {.lex_state = 226, .external_lex_state = 16}, + [886] = {.lex_state = 226, .external_lex_state = 16}, [887] = {.lex_state = 153, .external_lex_state = 14}, [888] = {.lex_state = 293}, [889] = {.lex_state = 291, .external_lex_state = 16}, [890] = {.lex_state = 153, .external_lex_state = 14}, - [891] = {.lex_state = 153, .external_lex_state = 14}, - [892] = {.lex_state = 153, .external_lex_state = 10}, - [893] = {.lex_state = 153, .external_lex_state = 10}, - [894] = {.lex_state = 153, .external_lex_state = 10}, - [895] = {.lex_state = 289, .external_lex_state = 16}, + [891] = {.lex_state = 293}, + [892] = {.lex_state = 291, .external_lex_state = 16}, + [893] = {.lex_state = 153, .external_lex_state = 14}, + [894] = {.lex_state = 153, .external_lex_state = 14}, + [895] = {.lex_state = 153, .external_lex_state = 10}, [896] = {.lex_state = 153, .external_lex_state = 10}, - [897] = {.lex_state = 293}, - [898] = {.lex_state = 291, .external_lex_state = 16}, - [899] = {.lex_state = 103}, - [900] = {.lex_state = 226, .external_lex_state = 16}, - [901] = {.lex_state = 226, .external_lex_state = 16}, - [902] = {.lex_state = 226, .external_lex_state = 16}, - [903] = {.lex_state = 153, .external_lex_state = 10}, - [904] = {.lex_state = 293}, - [905] = {.lex_state = 291, .external_lex_state = 16}, + [897] = {.lex_state = 153, .external_lex_state = 10}, + [898] = {.lex_state = 289, .external_lex_state = 16}, + [899] = {.lex_state = 153, .external_lex_state = 10}, + [900] = {.lex_state = 293}, + [901] = {.lex_state = 291, .external_lex_state = 16}, + [902] = {.lex_state = 103}, + [903] = {.lex_state = 226, .external_lex_state = 16}, + [904] = {.lex_state = 226, .external_lex_state = 16}, + [905] = {.lex_state = 226, .external_lex_state = 16}, [906] = {.lex_state = 153, .external_lex_state = 10}, [907] = {.lex_state = 293}, [908] = {.lex_state = 291, .external_lex_state = 16}, [909] = {.lex_state = 153, .external_lex_state = 10}, - [910] = {.lex_state = 153, .external_lex_state = 10}, - [911] = {.lex_state = 141, .external_lex_state = 15}, - [912] = {.lex_state = 141, .external_lex_state = 15}, - [913] = {.lex_state = 141, .external_lex_state = 15}, - [914] = {.lex_state = 289, .external_lex_state = 16}, + [910] = {.lex_state = 293}, + [911] = {.lex_state = 291, .external_lex_state = 16}, + [912] = {.lex_state = 153, .external_lex_state = 10}, + [913] = {.lex_state = 153, .external_lex_state = 10}, + [914] = {.lex_state = 141, .external_lex_state = 15}, [915] = {.lex_state = 141, .external_lex_state = 15}, - [916] = {.lex_state = 293}, - [917] = {.lex_state = 291, .external_lex_state = 16}, - [918] = {.lex_state = 103}, - [919] = {.lex_state = 226, .external_lex_state = 16}, - [920] = {.lex_state = 226, .external_lex_state = 16}, - [921] = {.lex_state = 226, .external_lex_state = 16}, - [922] = {.lex_state = 141, .external_lex_state = 15}, - [923] = {.lex_state = 293}, - [924] = {.lex_state = 291, .external_lex_state = 16}, + [916] = {.lex_state = 141, .external_lex_state = 15}, + [917] = {.lex_state = 289, .external_lex_state = 16}, + [918] = {.lex_state = 141, .external_lex_state = 15}, + [919] = {.lex_state = 293}, + [920] = {.lex_state = 291, .external_lex_state = 16}, + [921] = {.lex_state = 103}, + [922] = {.lex_state = 226, .external_lex_state = 16}, + [923] = {.lex_state = 226, .external_lex_state = 16}, + [924] = {.lex_state = 226, .external_lex_state = 16}, [925] = {.lex_state = 141, .external_lex_state = 15}, [926] = {.lex_state = 293}, [927] = {.lex_state = 291, .external_lex_state = 16}, [928] = {.lex_state = 141, .external_lex_state = 15}, - [929] = {.lex_state = 141, .external_lex_state = 15}, - [930] = {.lex_state = 165}, - [931] = {.lex_state = 289, .external_lex_state = 16}, - [932] = {.lex_state = 165, .external_lex_state = 13}, - [933] = {.lex_state = 293}, - [934] = {.lex_state = 291, .external_lex_state = 16}, - [935] = {.lex_state = 103}, - [936] = {.lex_state = 226, .external_lex_state = 16}, - [937] = {.lex_state = 226, .external_lex_state = 16}, - [938] = {.lex_state = 226, .external_lex_state = 16}, - [939] = {.lex_state = 165, .external_lex_state = 13}, - [940] = {.lex_state = 293}, - [941] = {.lex_state = 291, .external_lex_state = 16}, + [929] = {.lex_state = 293}, + [930] = {.lex_state = 291, .external_lex_state = 16}, + [931] = {.lex_state = 141, .external_lex_state = 15}, + [932] = {.lex_state = 141, .external_lex_state = 15}, + [933] = {.lex_state = 165}, + [934] = {.lex_state = 289, .external_lex_state = 16}, + [935] = {.lex_state = 165, .external_lex_state = 13}, + [936] = {.lex_state = 293}, + [937] = {.lex_state = 291, .external_lex_state = 16}, + [938] = {.lex_state = 103}, + [939] = {.lex_state = 226, .external_lex_state = 16}, + [940] = {.lex_state = 226, .external_lex_state = 16}, + [941] = {.lex_state = 226, .external_lex_state = 16}, [942] = {.lex_state = 165, .external_lex_state = 13}, [943] = {.lex_state = 293}, [944] = {.lex_state = 291, .external_lex_state = 16}, [945] = {.lex_state = 165, .external_lex_state = 13}, - [946] = {.lex_state = 260, .external_lex_state = 11}, - [947] = {.lex_state = 260, .external_lex_state = 11}, - [948] = {.lex_state = 260, .external_lex_state = 11}, - [949] = {.lex_state = 162, .external_lex_state = 5}, - [950] = {.lex_state = 327, .external_lex_state = 22}, - [951] = {.lex_state = 165}, - [952] = {.lex_state = 170}, + [946] = {.lex_state = 293}, + [947] = {.lex_state = 291, .external_lex_state = 16}, + [948] = {.lex_state = 165, .external_lex_state = 13}, + [949] = {.lex_state = 260, .external_lex_state = 11}, + [950] = {.lex_state = 260, .external_lex_state = 11}, + [951] = {.lex_state = 260, .external_lex_state = 11}, + [952] = {.lex_state = 162, .external_lex_state = 5}, [953] = {.lex_state = 327, .external_lex_state = 22}, - [954] = {.lex_state = 175, .external_lex_state = 6}, - [955] = {.lex_state = 20, .external_lex_state = 2}, - [956] = {.lex_state = 20, .external_lex_state = 2}, - [957] = {.lex_state = 20, .external_lex_state = 2}, - [958] = {.lex_state = 103, .external_lex_state = 16}, - [959] = {.lex_state = 141}, - [960] = {.lex_state = 291, .external_lex_state = 22}, - [961] = {.lex_state = 291, .external_lex_state = 22}, - [962] = {.lex_state = 165}, + [954] = {.lex_state = 165}, + [955] = {.lex_state = 170}, + [956] = {.lex_state = 327, .external_lex_state = 22}, + [957] = {.lex_state = 175, .external_lex_state = 6}, + [958] = {.lex_state = 20, .external_lex_state = 2}, + [959] = {.lex_state = 20, .external_lex_state = 2}, + [960] = {.lex_state = 20, .external_lex_state = 2}, + [961] = {.lex_state = 103, .external_lex_state = 16}, + [962] = {.lex_state = 141}, [963] = {.lex_state = 291, .external_lex_state = 22}, [964] = {.lex_state = 291, .external_lex_state = 22}, - [965] = {.lex_state = 291, .external_lex_state = 22}, - [966] = {.lex_state = 103}, - [967] = {.lex_state = 226, .external_lex_state = 16}, - [968] = {.lex_state = 235, .external_lex_state = 6}, - [969] = {.lex_state = 226, .external_lex_state = 16}, + [965] = {.lex_state = 165}, + [966] = {.lex_state = 291, .external_lex_state = 22}, + [967] = {.lex_state = 291, .external_lex_state = 22}, + [968] = {.lex_state = 291, .external_lex_state = 22}, + [969] = {.lex_state = 103}, [970] = {.lex_state = 226, .external_lex_state = 16}, - [971] = {.lex_state = 291, .external_lex_state = 16}, - [972] = {.lex_state = 103}, - [973] = {.lex_state = 241, .external_lex_state = 2}, - [974] = {.lex_state = 103}, - [975] = {.lex_state = 249, .external_lex_state = 2}, - [976] = {.lex_state = 103}, - [977] = {.lex_state = 241, .external_lex_state = 2}, - [978] = {.lex_state = 162, .external_lex_state = 5}, - [979] = {.lex_state = 291, .external_lex_state = 16}, - [980] = {.lex_state = 289, .external_lex_state = 16}, + [971] = {.lex_state = 235, .external_lex_state = 6}, + [972] = {.lex_state = 226, .external_lex_state = 16}, + [973] = {.lex_state = 226, .external_lex_state = 16}, + [974] = {.lex_state = 291, .external_lex_state = 16}, + [975] = {.lex_state = 103}, + [976] = {.lex_state = 241, .external_lex_state = 2}, + [977] = {.lex_state = 103}, + [978] = {.lex_state = 249, .external_lex_state = 2}, + [979] = {.lex_state = 103}, + [980] = {.lex_state = 241, .external_lex_state = 2}, [981] = {.lex_state = 162, .external_lex_state = 5}, - [982] = {.lex_state = 293}, - [983] = {.lex_state = 291, .external_lex_state = 16}, + [982] = {.lex_state = 291, .external_lex_state = 16}, + [983] = {.lex_state = 289, .external_lex_state = 16}, [984] = {.lex_state = 162, .external_lex_state = 5}, [985] = {.lex_state = 293}, [986] = {.lex_state = 291, .external_lex_state = 16}, - [987] = {.lex_state = 293}, - [988] = {.lex_state = 291, .external_lex_state = 16}, + [987] = {.lex_state = 162, .external_lex_state = 5}, + [988] = {.lex_state = 293}, [989] = {.lex_state = 291, .external_lex_state = 16}, - [990] = {.lex_state = 162, .external_lex_state = 5}, + [990] = {.lex_state = 293}, [991] = {.lex_state = 291, .external_lex_state = 16}, - [992] = {.lex_state = 241, .external_lex_state = 2}, - [993] = {.lex_state = 241}, - [994] = {.lex_state = 241, .external_lex_state = 15}, - [995] = {.lex_state = 165}, - [996] = {.lex_state = 170}, + [992] = {.lex_state = 291, .external_lex_state = 16}, + [993] = {.lex_state = 162, .external_lex_state = 5}, + [994] = {.lex_state = 291, .external_lex_state = 16}, + [995] = {.lex_state = 241, .external_lex_state = 2}, + [996] = {.lex_state = 241}, [997] = {.lex_state = 241, .external_lex_state = 15}, - [998] = {.lex_state = 175, .external_lex_state = 6}, - [999] = {.lex_state = 20, .external_lex_state = 2}, - [1000] = {.lex_state = 20, .external_lex_state = 2}, - [1001] = {.lex_state = 20, .external_lex_state = 2}, - [1002] = {.lex_state = 141}, - [1003] = {.lex_state = 262, .external_lex_state = 2}, - [1004] = {.lex_state = 300, .external_lex_state = 18}, - [1005] = {.lex_state = 268, .external_lex_state = 2}, - [1006] = {.lex_state = 190, .external_lex_state = 4}, - [1007] = {.lex_state = 103}, - [1008] = {.lex_state = 190, .external_lex_state = 4}, - [1009] = {.lex_state = 103}, - [1010] = {.lex_state = 103}, - [1011] = {.lex_state = 278, .external_lex_state = 21}, - [1012] = {.lex_state = 329, .external_lex_state = 18}, + [998] = {.lex_state = 165}, + [999] = {.lex_state = 170}, + [1000] = {.lex_state = 241, .external_lex_state = 15}, + [1001] = {.lex_state = 175, .external_lex_state = 6}, + [1002] = {.lex_state = 20, .external_lex_state = 2}, + [1003] = {.lex_state = 20, .external_lex_state = 2}, + [1004] = {.lex_state = 20, .external_lex_state = 2}, + [1005] = {.lex_state = 141}, + [1006] = {.lex_state = 103}, + [1007] = {.lex_state = 262, .external_lex_state = 2}, + [1008] = {.lex_state = 300, .external_lex_state = 18}, + [1009] = {.lex_state = 268, .external_lex_state = 2}, + [1010] = {.lex_state = 190, .external_lex_state = 4}, + [1011] = {.lex_state = 103}, + [1012] = {.lex_state = 190, .external_lex_state = 4}, [1013] = {.lex_state = 103}, - [1014] = {.lex_state = 285, .external_lex_state = 2}, - [1015] = {.lex_state = 193, .external_lex_state = 4}, - [1016] = {.lex_state = 188, .external_lex_state = 8}, - [1017] = {.lex_state = 300, .external_lex_state = 18}, - [1018] = {.lex_state = 186, .external_lex_state = 9}, - [1019] = {.lex_state = 237, .external_lex_state = 6}, - [1020] = {.lex_state = 141}, - [1021] = {.lex_state = 237, .external_lex_state = 23}, - [1022] = {.lex_state = 237, .external_lex_state = 23}, - [1023] = {.lex_state = 165}, - [1024] = {.lex_state = 237, .external_lex_state = 23}, + [1014] = {.lex_state = 103}, + [1015] = {.lex_state = 278, .external_lex_state = 21}, + [1016] = {.lex_state = 329, .external_lex_state = 18}, + [1017] = {.lex_state = 103}, + [1018] = {.lex_state = 285, .external_lex_state = 2}, + [1019] = {.lex_state = 193, .external_lex_state = 4}, + [1020] = {.lex_state = 188, .external_lex_state = 8}, + [1021] = {.lex_state = 300, .external_lex_state = 18}, + [1022] = {.lex_state = 186, .external_lex_state = 9}, + [1023] = {.lex_state = 237, .external_lex_state = 6}, + [1024] = {.lex_state = 141}, [1025] = {.lex_state = 237, .external_lex_state = 23}, [1026] = {.lex_state = 237, .external_lex_state = 23}, - [1027] = {.lex_state = 103}, - [1028] = {.lex_state = 226, .external_lex_state = 16}, - [1029] = {.lex_state = 235, .external_lex_state = 6}, - [1030] = {.lex_state = 226, .external_lex_state = 16}, - [1031] = {.lex_state = 226, .external_lex_state = 16}, - [1032] = {.lex_state = 103}, - [1033] = {.lex_state = 241, .external_lex_state = 2}, - [1034] = {.lex_state = 103}, - [1035] = {.lex_state = 249, .external_lex_state = 2}, + [1027] = {.lex_state = 165}, + [1028] = {.lex_state = 237, .external_lex_state = 23}, + [1029] = {.lex_state = 237, .external_lex_state = 23}, + [1030] = {.lex_state = 237, .external_lex_state = 23}, + [1031] = {.lex_state = 103}, + [1032] = {.lex_state = 226, .external_lex_state = 16}, + [1033] = {.lex_state = 235, .external_lex_state = 6}, + [1034] = {.lex_state = 226, .external_lex_state = 16}, + [1035] = {.lex_state = 226, .external_lex_state = 16}, [1036] = {.lex_state = 103}, [1037] = {.lex_state = 241, .external_lex_state = 2}, - [1038] = {.lex_state = 237, .external_lex_state = 6}, - [1039] = {.lex_state = 141}, - [1040] = {.lex_state = 237, .external_lex_state = 13}, - [1041] = {.lex_state = 237, .external_lex_state = 13}, - [1042] = {.lex_state = 165}, - [1043] = {.lex_state = 237, .external_lex_state = 13}, + [1038] = {.lex_state = 103}, + [1039] = {.lex_state = 249, .external_lex_state = 2}, + [1040] = {.lex_state = 103}, + [1041] = {.lex_state = 241, .external_lex_state = 2}, + [1042] = {.lex_state = 237, .external_lex_state = 6}, + [1043] = {.lex_state = 141}, [1044] = {.lex_state = 237, .external_lex_state = 13}, [1045] = {.lex_state = 237, .external_lex_state = 13}, - [1046] = {.lex_state = 103}, - [1047] = {.lex_state = 226, .external_lex_state = 16}, - [1048] = {.lex_state = 235, .external_lex_state = 6}, - [1049] = {.lex_state = 226, .external_lex_state = 16}, - [1050] = {.lex_state = 226, .external_lex_state = 16}, - [1051] = {.lex_state = 103}, - [1052] = {.lex_state = 241, .external_lex_state = 2}, - [1053] = {.lex_state = 103}, - [1054] = {.lex_state = 249, .external_lex_state = 2}, + [1046] = {.lex_state = 165}, + [1047] = {.lex_state = 237, .external_lex_state = 13}, + [1048] = {.lex_state = 237, .external_lex_state = 13}, + [1049] = {.lex_state = 237, .external_lex_state = 13}, + [1050] = {.lex_state = 103}, + [1051] = {.lex_state = 226, .external_lex_state = 16}, + [1052] = {.lex_state = 235, .external_lex_state = 6}, + [1053] = {.lex_state = 226, .external_lex_state = 16}, + [1054] = {.lex_state = 226, .external_lex_state = 16}, [1055] = {.lex_state = 103}, [1056] = {.lex_state = 241, .external_lex_state = 2}, - [1057] = {.lex_state = 237}, - [1058] = {.lex_state = 143, .external_lex_state = 17}, - [1059] = {.lex_state = 143, .external_lex_state = 17}, - [1060] = {.lex_state = 143, .external_lex_state = 17}, - [1061] = {.lex_state = 289, .external_lex_state = 16}, + [1057] = {.lex_state = 103}, + [1058] = {.lex_state = 249, .external_lex_state = 2}, + [1059] = {.lex_state = 103}, + [1060] = {.lex_state = 241, .external_lex_state = 2}, + [1061] = {.lex_state = 237}, [1062] = {.lex_state = 143, .external_lex_state = 17}, - [1063] = {.lex_state = 293}, - [1064] = {.lex_state = 291, .external_lex_state = 16}, - [1065] = {.lex_state = 103}, - [1066] = {.lex_state = 226, .external_lex_state = 16}, - [1067] = {.lex_state = 226, .external_lex_state = 16}, - [1068] = {.lex_state = 226, .external_lex_state = 16}, - [1069] = {.lex_state = 143, .external_lex_state = 17}, - [1070] = {.lex_state = 293}, - [1071] = {.lex_state = 291, .external_lex_state = 16}, - [1072] = {.lex_state = 143, .external_lex_state = 17}, - [1073] = {.lex_state = 293}, - [1074] = {.lex_state = 291, .external_lex_state = 16}, - [1075] = {.lex_state = 143, .external_lex_state = 17}, + [1063] = {.lex_state = 143, .external_lex_state = 17}, + [1064] = {.lex_state = 143, .external_lex_state = 17}, + [1065] = {.lex_state = 289, .external_lex_state = 16}, + [1066] = {.lex_state = 143, .external_lex_state = 17}, + [1067] = {.lex_state = 293}, + [1068] = {.lex_state = 291, .external_lex_state = 16}, + [1069] = {.lex_state = 103}, + [1070] = {.lex_state = 226, .external_lex_state = 16}, + [1071] = {.lex_state = 226, .external_lex_state = 16}, + [1072] = {.lex_state = 226, .external_lex_state = 16}, + [1073] = {.lex_state = 143, .external_lex_state = 17}, + [1074] = {.lex_state = 293}, + [1075] = {.lex_state = 291, .external_lex_state = 16}, [1076] = {.lex_state = 143, .external_lex_state = 17}, - [1077] = {.lex_state = 103}, - [1078] = {.lex_state = 103}, - [1079] = {.lex_state = 241, .external_lex_state = 2}, - [1080] = {.lex_state = 103}, - [1081] = {.lex_state = 241, .external_lex_state = 2}, - [1082] = {.lex_state = 141}, - [1083] = {.lex_state = 143, .external_lex_state = 17}, - [1084] = {.lex_state = 143, .external_lex_state = 17}, - [1085] = {.lex_state = 143, .external_lex_state = 18}, - [1086] = {.lex_state = 300, .external_lex_state = 17}, - [1087] = {.lex_state = 165}, - [1088] = {.lex_state = 170}, - [1089] = {.lex_state = 300, .external_lex_state = 17}, - [1090] = {.lex_state = 175, .external_lex_state = 6}, - [1091] = {.lex_state = 20, .external_lex_state = 2}, - [1092] = {.lex_state = 20, .external_lex_state = 2}, - [1093] = {.lex_state = 20, .external_lex_state = 2}, - [1094] = {.lex_state = 298, .external_lex_state = 18}, - [1095] = {.lex_state = 298, .external_lex_state = 18}, - [1096] = {.lex_state = 304, .external_lex_state = 24}, - [1097] = {.lex_state = 298, .external_lex_state = 18}, - [1098] = {.lex_state = 300, .external_lex_state = 17}, - [1099] = {.lex_state = 300, .external_lex_state = 17}, - [1100] = {.lex_state = 298, .external_lex_state = 18}, - [1101] = {.lex_state = 300, .external_lex_state = 18}, - [1102] = {.lex_state = 300, .external_lex_state = 18}, - [1103] = {.lex_state = 143, .external_lex_state = 18}, - [1104] = {.lex_state = 143, .external_lex_state = 18}, - [1105] = {.lex_state = 249, .external_lex_state = 15}, - [1106] = {.lex_state = 165}, - [1107] = {.lex_state = 170}, - [1108] = {.lex_state = 249, .external_lex_state = 15}, - [1109] = {.lex_state = 175, .external_lex_state = 6}, - [1110] = {.lex_state = 20, .external_lex_state = 2}, - [1111] = {.lex_state = 20, .external_lex_state = 2}, - [1112] = {.lex_state = 20, .external_lex_state = 2}, - [1113] = {.lex_state = 302, .external_lex_state = 18}, - [1114] = {.lex_state = 103}, - [1115] = {.lex_state = 331, .external_lex_state = 18}, - [1116] = {.lex_state = 302, .external_lex_state = 18}, - [1117] = {.lex_state = 186, .external_lex_state = 9}, - [1118] = {.lex_state = 141}, - [1119] = {.lex_state = 243, .external_lex_state = 23}, - [1120] = {.lex_state = 243, .external_lex_state = 23}, - [1121] = {.lex_state = 165}, - [1122] = {.lex_state = 243, .external_lex_state = 23}, + [1077] = {.lex_state = 293}, + [1078] = {.lex_state = 291, .external_lex_state = 16}, + [1079] = {.lex_state = 143, .external_lex_state = 17}, + [1080] = {.lex_state = 143, .external_lex_state = 17}, + [1081] = {.lex_state = 103}, + [1082] = {.lex_state = 103}, + [1083] = {.lex_state = 241, .external_lex_state = 2}, + [1084] = {.lex_state = 103}, + [1085] = {.lex_state = 241, .external_lex_state = 2}, + [1086] = {.lex_state = 141}, + [1087] = {.lex_state = 143, .external_lex_state = 17}, + [1088] = {.lex_state = 143, .external_lex_state = 17}, + [1089] = {.lex_state = 143, .external_lex_state = 18}, + [1090] = {.lex_state = 300, .external_lex_state = 17}, + [1091] = {.lex_state = 165}, + [1092] = {.lex_state = 170}, + [1093] = {.lex_state = 300, .external_lex_state = 17}, + [1094] = {.lex_state = 175, .external_lex_state = 6}, + [1095] = {.lex_state = 20, .external_lex_state = 2}, + [1096] = {.lex_state = 20, .external_lex_state = 2}, + [1097] = {.lex_state = 20, .external_lex_state = 2}, + [1098] = {.lex_state = 298, .external_lex_state = 18}, + [1099] = {.lex_state = 298, .external_lex_state = 18}, + [1100] = {.lex_state = 304, .external_lex_state = 24}, + [1101] = {.lex_state = 298, .external_lex_state = 18}, + [1102] = {.lex_state = 300, .external_lex_state = 17}, + [1103] = {.lex_state = 300, .external_lex_state = 17}, + [1104] = {.lex_state = 298, .external_lex_state = 18}, + [1105] = {.lex_state = 300, .external_lex_state = 18}, + [1106] = {.lex_state = 300, .external_lex_state = 18}, + [1107] = {.lex_state = 143, .external_lex_state = 18}, + [1108] = {.lex_state = 143, .external_lex_state = 18}, + [1109] = {.lex_state = 249, .external_lex_state = 15}, + [1110] = {.lex_state = 165}, + [1111] = {.lex_state = 170}, + [1112] = {.lex_state = 249, .external_lex_state = 15}, + [1113] = {.lex_state = 175, .external_lex_state = 6}, + [1114] = {.lex_state = 20, .external_lex_state = 2}, + [1115] = {.lex_state = 20, .external_lex_state = 2}, + [1116] = {.lex_state = 20, .external_lex_state = 2}, + [1117] = {.lex_state = 302, .external_lex_state = 18}, + [1118] = {.lex_state = 103}, + [1119] = {.lex_state = 331, .external_lex_state = 18}, + [1120] = {.lex_state = 302, .external_lex_state = 18}, + [1121] = {.lex_state = 186, .external_lex_state = 9}, + [1122] = {.lex_state = 141}, [1123] = {.lex_state = 243, .external_lex_state = 23}, [1124] = {.lex_state = 243, .external_lex_state = 23}, - [1125] = {.lex_state = 103}, - [1126] = {.lex_state = 226, .external_lex_state = 16}, - [1127] = {.lex_state = 235, .external_lex_state = 6}, - [1128] = {.lex_state = 226, .external_lex_state = 16}, - [1129] = {.lex_state = 226, .external_lex_state = 16}, - [1130] = {.lex_state = 103}, - [1131] = {.lex_state = 241, .external_lex_state = 2}, - [1132] = {.lex_state = 103}, - [1133] = {.lex_state = 249, .external_lex_state = 2}, + [1125] = {.lex_state = 165}, + [1126] = {.lex_state = 243, .external_lex_state = 23}, + [1127] = {.lex_state = 243, .external_lex_state = 23}, + [1128] = {.lex_state = 243, .external_lex_state = 23}, + [1129] = {.lex_state = 103}, + [1130] = {.lex_state = 226, .external_lex_state = 16}, + [1131] = {.lex_state = 235, .external_lex_state = 6}, + [1132] = {.lex_state = 226, .external_lex_state = 16}, + [1133] = {.lex_state = 226, .external_lex_state = 16}, [1134] = {.lex_state = 103}, [1135] = {.lex_state = 241, .external_lex_state = 2}, - [1136] = {.lex_state = 243, .external_lex_state = 6}, - [1137] = {.lex_state = 141}, - [1138] = {.lex_state = 243, .external_lex_state = 13}, - [1139] = {.lex_state = 243, .external_lex_state = 13}, - [1140] = {.lex_state = 165}, - [1141] = {.lex_state = 243, .external_lex_state = 13}, + [1136] = {.lex_state = 103}, + [1137] = {.lex_state = 249, .external_lex_state = 2}, + [1138] = {.lex_state = 103}, + [1139] = {.lex_state = 241, .external_lex_state = 2}, + [1140] = {.lex_state = 243, .external_lex_state = 6}, + [1141] = {.lex_state = 141}, [1142] = {.lex_state = 243, .external_lex_state = 13}, [1143] = {.lex_state = 243, .external_lex_state = 13}, - [1144] = {.lex_state = 103}, - [1145] = {.lex_state = 226, .external_lex_state = 16}, - [1146] = {.lex_state = 235, .external_lex_state = 6}, - [1147] = {.lex_state = 226, .external_lex_state = 16}, - [1148] = {.lex_state = 226, .external_lex_state = 16}, - [1149] = {.lex_state = 103}, - [1150] = {.lex_state = 241, .external_lex_state = 2}, - [1151] = {.lex_state = 103}, - [1152] = {.lex_state = 249, .external_lex_state = 2}, + [1144] = {.lex_state = 165}, + [1145] = {.lex_state = 243, .external_lex_state = 13}, + [1146] = {.lex_state = 243, .external_lex_state = 13}, + [1147] = {.lex_state = 243, .external_lex_state = 13}, + [1148] = {.lex_state = 103}, + [1149] = {.lex_state = 226, .external_lex_state = 16}, + [1150] = {.lex_state = 235, .external_lex_state = 6}, + [1151] = {.lex_state = 226, .external_lex_state = 16}, + [1152] = {.lex_state = 226, .external_lex_state = 16}, [1153] = {.lex_state = 103}, [1154] = {.lex_state = 241, .external_lex_state = 2}, - [1155] = {.lex_state = 237}, - [1156] = {.lex_state = 245, .external_lex_state = 17}, - [1157] = {.lex_state = 245, .external_lex_state = 17}, - [1158] = {.lex_state = 245, .external_lex_state = 17}, - [1159] = {.lex_state = 289, .external_lex_state = 16}, + [1155] = {.lex_state = 103}, + [1156] = {.lex_state = 249, .external_lex_state = 2}, + [1157] = {.lex_state = 103}, + [1158] = {.lex_state = 241, .external_lex_state = 2}, + [1159] = {.lex_state = 237}, [1160] = {.lex_state = 245, .external_lex_state = 17}, - [1161] = {.lex_state = 293}, - [1162] = {.lex_state = 291, .external_lex_state = 16}, - [1163] = {.lex_state = 103}, - [1164] = {.lex_state = 226, .external_lex_state = 16}, - [1165] = {.lex_state = 226, .external_lex_state = 16}, - [1166] = {.lex_state = 226, .external_lex_state = 16}, - [1167] = {.lex_state = 245, .external_lex_state = 17}, - [1168] = {.lex_state = 293}, - [1169] = {.lex_state = 291, .external_lex_state = 16}, - [1170] = {.lex_state = 245, .external_lex_state = 17}, - [1171] = {.lex_state = 293}, - [1172] = {.lex_state = 291, .external_lex_state = 16}, - [1173] = {.lex_state = 245, .external_lex_state = 17}, + [1161] = {.lex_state = 245, .external_lex_state = 17}, + [1162] = {.lex_state = 245, .external_lex_state = 17}, + [1163] = {.lex_state = 289, .external_lex_state = 16}, + [1164] = {.lex_state = 245, .external_lex_state = 17}, + [1165] = {.lex_state = 293}, + [1166] = {.lex_state = 291, .external_lex_state = 16}, + [1167] = {.lex_state = 103}, + [1168] = {.lex_state = 226, .external_lex_state = 16}, + [1169] = {.lex_state = 226, .external_lex_state = 16}, + [1170] = {.lex_state = 226, .external_lex_state = 16}, + [1171] = {.lex_state = 245, .external_lex_state = 17}, + [1172] = {.lex_state = 293}, + [1173] = {.lex_state = 291, .external_lex_state = 16}, [1174] = {.lex_state = 245, .external_lex_state = 17}, - [1175] = {.lex_state = 103}, - [1176] = {.lex_state = 249, .external_lex_state = 2}, - [1177] = {.lex_state = 103}, - [1178] = {.lex_state = 249, .external_lex_state = 2}, - [1179] = {.lex_state = 141}, - [1180] = {.lex_state = 245, .external_lex_state = 17}, - [1181] = {.lex_state = 245, .external_lex_state = 17}, - [1182] = {.lex_state = 302, .external_lex_state = 17}, - [1183] = {.lex_state = 165}, - [1184] = {.lex_state = 170}, - [1185] = {.lex_state = 302, .external_lex_state = 17}, - [1186] = {.lex_state = 175, .external_lex_state = 6}, - [1187] = {.lex_state = 20, .external_lex_state = 2}, - [1188] = {.lex_state = 20, .external_lex_state = 2}, - [1189] = {.lex_state = 20, .external_lex_state = 2}, - [1190] = {.lex_state = 302, .external_lex_state = 17}, - [1191] = {.lex_state = 302, .external_lex_state = 17}, - [1192] = {.lex_state = 302, .external_lex_state = 18}, - [1193] = {.lex_state = 302, .external_lex_state = 18}, - [1194] = {.lex_state = 245, .external_lex_state = 18}, - [1195] = {.lex_state = 245, .external_lex_state = 18}, - [1196] = {.lex_state = 280, .external_lex_state = 7}, - [1197] = {.lex_state = 258, .external_lex_state = 5}, - [1198] = {.lex_state = 258, .external_lex_state = 5}, - [1199] = {.lex_state = 253, .external_lex_state = 7}, - [1200] = {.lex_state = 141}, + [1175] = {.lex_state = 293}, + [1176] = {.lex_state = 291, .external_lex_state = 16}, + [1177] = {.lex_state = 245, .external_lex_state = 17}, + [1178] = {.lex_state = 245, .external_lex_state = 17}, + [1179] = {.lex_state = 103}, + [1180] = {.lex_state = 249, .external_lex_state = 2}, + [1181] = {.lex_state = 103}, + [1182] = {.lex_state = 249, .external_lex_state = 2}, + [1183] = {.lex_state = 141}, + [1184] = {.lex_state = 245, .external_lex_state = 17}, + [1185] = {.lex_state = 245, .external_lex_state = 17}, + [1186] = {.lex_state = 302, .external_lex_state = 17}, + [1187] = {.lex_state = 165}, + [1188] = {.lex_state = 170}, + [1189] = {.lex_state = 302, .external_lex_state = 17}, + [1190] = {.lex_state = 175, .external_lex_state = 6}, + [1191] = {.lex_state = 20, .external_lex_state = 2}, + [1192] = {.lex_state = 20, .external_lex_state = 2}, + [1193] = {.lex_state = 20, .external_lex_state = 2}, + [1194] = {.lex_state = 302, .external_lex_state = 17}, + [1195] = {.lex_state = 302, .external_lex_state = 17}, + [1196] = {.lex_state = 302, .external_lex_state = 18}, + [1197] = {.lex_state = 302, .external_lex_state = 18}, + [1198] = {.lex_state = 245, .external_lex_state = 18}, + [1199] = {.lex_state = 245, .external_lex_state = 18}, + [1200] = {.lex_state = 280, .external_lex_state = 7}, [1201] = {.lex_state = 258, .external_lex_state = 5}, [1202] = {.lex_state = 258, .external_lex_state = 5}, - [1203] = {.lex_state = 165}, - [1204] = {.lex_state = 258, .external_lex_state = 5}, + [1203] = {.lex_state = 253, .external_lex_state = 7}, + [1204] = {.lex_state = 141}, [1205] = {.lex_state = 258, .external_lex_state = 5}, [1206] = {.lex_state = 258, .external_lex_state = 5}, - [1207] = {.lex_state = 103}, - [1208] = {.lex_state = 226, .external_lex_state = 16}, - [1209] = {.lex_state = 235, .external_lex_state = 6}, - [1210] = {.lex_state = 226, .external_lex_state = 16}, - [1211] = {.lex_state = 226, .external_lex_state = 16}, - [1212] = {.lex_state = 103}, - [1213] = {.lex_state = 241, .external_lex_state = 2}, - [1214] = {.lex_state = 103}, - [1215] = {.lex_state = 249, .external_lex_state = 2}, + [1207] = {.lex_state = 165}, + [1208] = {.lex_state = 258, .external_lex_state = 5}, + [1209] = {.lex_state = 258, .external_lex_state = 5}, + [1210] = {.lex_state = 258, .external_lex_state = 5}, + [1211] = {.lex_state = 103}, + [1212] = {.lex_state = 226, .external_lex_state = 16}, + [1213] = {.lex_state = 235, .external_lex_state = 6}, + [1214] = {.lex_state = 226, .external_lex_state = 16}, + [1215] = {.lex_state = 226, .external_lex_state = 16}, [1216] = {.lex_state = 103}, [1217] = {.lex_state = 241, .external_lex_state = 2}, - [1218] = {.lex_state = 304, .external_lex_state = 24}, - [1219] = {.lex_state = 253, .external_lex_state = 7}, - [1220] = {.lex_state = 170}, - [1221] = {.lex_state = 175, .external_lex_state = 6}, + [1218] = {.lex_state = 103}, + [1219] = {.lex_state = 249, .external_lex_state = 2}, + [1220] = {.lex_state = 103}, + [1221] = {.lex_state = 241, .external_lex_state = 2}, [1222] = {.lex_state = 304, .external_lex_state = 24}, - [1223] = {.lex_state = 141, .external_lex_state = 15}, - [1224] = {.lex_state = 141, .external_lex_state = 15}, - [1225] = {.lex_state = 258, .external_lex_state = 7}, - [1226] = {.lex_state = 309, .external_lex_state = 13}, - [1227] = {.lex_state = 260, .external_lex_state = 11}, - [1228] = {.lex_state = 103}, - [1229] = {.lex_state = 141}, - [1230] = {.lex_state = 260, .external_lex_state = 11}, + [1223] = {.lex_state = 253, .external_lex_state = 7}, + [1224] = {.lex_state = 170}, + [1225] = {.lex_state = 175, .external_lex_state = 6}, + [1226] = {.lex_state = 304, .external_lex_state = 24}, + [1227] = {.lex_state = 141, .external_lex_state = 15}, + [1228] = {.lex_state = 141, .external_lex_state = 15}, + [1229] = {.lex_state = 258, .external_lex_state = 7}, + [1230] = {.lex_state = 309, .external_lex_state = 13}, [1231] = {.lex_state = 260, .external_lex_state = 11}, - [1232] = {.lex_state = 309, .external_lex_state = 13}, - [1233] = {.lex_state = 103}, - [1234] = {.lex_state = 289, .external_lex_state = 16}, + [1232] = {.lex_state = 103}, + [1233] = {.lex_state = 141}, + [1234] = {.lex_state = 260, .external_lex_state = 11}, [1235] = {.lex_state = 260, .external_lex_state = 11}, - [1236] = {.lex_state = 293}, - [1237] = {.lex_state = 291, .external_lex_state = 16}, - [1238] = {.lex_state = 103}, - [1239] = {.lex_state = 226, .external_lex_state = 16}, - [1240] = {.lex_state = 226, .external_lex_state = 16}, - [1241] = {.lex_state = 226, .external_lex_state = 16}, - [1242] = {.lex_state = 260, .external_lex_state = 11}, - [1243] = {.lex_state = 293}, - [1244] = {.lex_state = 291, .external_lex_state = 16}, - [1245] = {.lex_state = 260, .external_lex_state = 11}, - [1246] = {.lex_state = 293}, - [1247] = {.lex_state = 291, .external_lex_state = 16}, - [1248] = {.lex_state = 260, .external_lex_state = 11}, + [1236] = {.lex_state = 309, .external_lex_state = 13}, + [1237] = {.lex_state = 103}, + [1238] = {.lex_state = 289, .external_lex_state = 16}, + [1239] = {.lex_state = 260, .external_lex_state = 11}, + [1240] = {.lex_state = 293}, + [1241] = {.lex_state = 291, .external_lex_state = 16}, + [1242] = {.lex_state = 103}, + [1243] = {.lex_state = 226, .external_lex_state = 16}, + [1244] = {.lex_state = 226, .external_lex_state = 16}, + [1245] = {.lex_state = 226, .external_lex_state = 16}, + [1246] = {.lex_state = 260, .external_lex_state = 11}, + [1247] = {.lex_state = 293}, + [1248] = {.lex_state = 291, .external_lex_state = 16}, [1249] = {.lex_state = 260, .external_lex_state = 11}, - [1250] = {.lex_state = 141}, - [1251] = {.lex_state = 311, .external_lex_state = 13}, - [1252] = {.lex_state = 311, .external_lex_state = 13}, - [1253] = {.lex_state = 165}, - [1254] = {.lex_state = 311, .external_lex_state = 13}, + [1250] = {.lex_state = 293}, + [1251] = {.lex_state = 291, .external_lex_state = 16}, + [1252] = {.lex_state = 260, .external_lex_state = 11}, + [1253] = {.lex_state = 260, .external_lex_state = 11}, + [1254] = {.lex_state = 141}, [1255] = {.lex_state = 311, .external_lex_state = 13}, [1256] = {.lex_state = 311, .external_lex_state = 13}, - [1257] = {.lex_state = 103}, - [1258] = {.lex_state = 226, .external_lex_state = 16}, - [1259] = {.lex_state = 235, .external_lex_state = 6}, - [1260] = {.lex_state = 226, .external_lex_state = 16}, - [1261] = {.lex_state = 226, .external_lex_state = 16}, - [1262] = {.lex_state = 103}, - [1263] = {.lex_state = 241, .external_lex_state = 2}, - [1264] = {.lex_state = 103}, - [1265] = {.lex_state = 249, .external_lex_state = 2}, + [1257] = {.lex_state = 165}, + [1258] = {.lex_state = 311, .external_lex_state = 13}, + [1259] = {.lex_state = 311, .external_lex_state = 13}, + [1260] = {.lex_state = 311, .external_lex_state = 13}, + [1261] = {.lex_state = 103}, + [1262] = {.lex_state = 226, .external_lex_state = 16}, + [1263] = {.lex_state = 235, .external_lex_state = 6}, + [1264] = {.lex_state = 226, .external_lex_state = 16}, + [1265] = {.lex_state = 226, .external_lex_state = 16}, [1266] = {.lex_state = 103}, [1267] = {.lex_state = 241, .external_lex_state = 2}, - [1268] = {.lex_state = 188, .external_lex_state = 8}, - [1269] = {.lex_state = 241}, - [1270] = {.lex_state = 182, .external_lex_state = 20}, - [1271] = {.lex_state = 182, .external_lex_state = 20}, - [1272] = {.lex_state = 182, .external_lex_state = 20}, - [1273] = {.lex_state = 289, .external_lex_state = 16}, + [1268] = {.lex_state = 103}, + [1269] = {.lex_state = 249, .external_lex_state = 2}, + [1270] = {.lex_state = 103}, + [1271] = {.lex_state = 241, .external_lex_state = 2}, + [1272] = {.lex_state = 188, .external_lex_state = 8}, + [1273] = {.lex_state = 241}, [1274] = {.lex_state = 182, .external_lex_state = 20}, - [1275] = {.lex_state = 293}, - [1276] = {.lex_state = 291, .external_lex_state = 16}, - [1277] = {.lex_state = 103}, - [1278] = {.lex_state = 226, .external_lex_state = 16}, - [1279] = {.lex_state = 226, .external_lex_state = 16}, - [1280] = {.lex_state = 226, .external_lex_state = 16}, - [1281] = {.lex_state = 182, .external_lex_state = 20}, - [1282] = {.lex_state = 293}, - [1283] = {.lex_state = 291, .external_lex_state = 16}, - [1284] = {.lex_state = 182, .external_lex_state = 20}, - [1285] = {.lex_state = 293}, - [1286] = {.lex_state = 291, .external_lex_state = 16}, - [1287] = {.lex_state = 182, .external_lex_state = 20}, + [1275] = {.lex_state = 182, .external_lex_state = 20}, + [1276] = {.lex_state = 182, .external_lex_state = 20}, + [1277] = {.lex_state = 289, .external_lex_state = 16}, + [1278] = {.lex_state = 182, .external_lex_state = 20}, + [1279] = {.lex_state = 293}, + [1280] = {.lex_state = 291, .external_lex_state = 16}, + [1281] = {.lex_state = 103}, + [1282] = {.lex_state = 226, .external_lex_state = 16}, + [1283] = {.lex_state = 226, .external_lex_state = 16}, + [1284] = {.lex_state = 226, .external_lex_state = 16}, + [1285] = {.lex_state = 182, .external_lex_state = 20}, + [1286] = {.lex_state = 293}, + [1287] = {.lex_state = 291, .external_lex_state = 16}, [1288] = {.lex_state = 182, .external_lex_state = 20}, - [1289] = {.lex_state = 141}, - [1290] = {.lex_state = 313, .external_lex_state = 10}, - [1291] = {.lex_state = 313, .external_lex_state = 10}, - [1292] = {.lex_state = 165}, - [1293] = {.lex_state = 313, .external_lex_state = 10}, + [1289] = {.lex_state = 293}, + [1290] = {.lex_state = 291, .external_lex_state = 16}, + [1291] = {.lex_state = 182, .external_lex_state = 20}, + [1292] = {.lex_state = 182, .external_lex_state = 20}, + [1293] = {.lex_state = 141}, [1294] = {.lex_state = 313, .external_lex_state = 10}, [1295] = {.lex_state = 313, .external_lex_state = 10}, - [1296] = {.lex_state = 103}, - [1297] = {.lex_state = 226, .external_lex_state = 16}, - [1298] = {.lex_state = 235, .external_lex_state = 6}, - [1299] = {.lex_state = 226, .external_lex_state = 16}, - [1300] = {.lex_state = 226, .external_lex_state = 16}, - [1301] = {.lex_state = 103}, - [1302] = {.lex_state = 241, .external_lex_state = 2}, - [1303] = {.lex_state = 103}, - [1304] = {.lex_state = 249, .external_lex_state = 2}, + [1296] = {.lex_state = 165}, + [1297] = {.lex_state = 313, .external_lex_state = 10}, + [1298] = {.lex_state = 313, .external_lex_state = 10}, + [1299] = {.lex_state = 313, .external_lex_state = 10}, + [1300] = {.lex_state = 103}, + [1301] = {.lex_state = 226, .external_lex_state = 16}, + [1302] = {.lex_state = 235, .external_lex_state = 6}, + [1303] = {.lex_state = 226, .external_lex_state = 16}, + [1304] = {.lex_state = 226, .external_lex_state = 16}, [1305] = {.lex_state = 103}, [1306] = {.lex_state = 241, .external_lex_state = 2}, [1307] = {.lex_state = 103}, - [1308] = {.lex_state = 313, .external_lex_state = 4}, - [1309] = {.lex_state = 262, .external_lex_state = 2}, - [1310] = {.lex_state = 253, .external_lex_state = 7}, - [1311] = {.lex_state = 262, .external_lex_state = 2}, - [1312] = {.lex_state = 103}, - [1313] = {.lex_state = 315, .external_lex_state = 2}, - [1314] = {.lex_state = 153, .external_lex_state = 4}, - [1315] = {.lex_state = 182, .external_lex_state = 8}, - [1316] = {.lex_state = 315, .external_lex_state = 2}, - [1317] = {.lex_state = 268, .external_lex_state = 2}, - [1318] = {.lex_state = 283, .external_lex_state = 4}, - [1319] = {.lex_state = 103}, - [1320] = {.lex_state = 268, .external_lex_state = 2}, - [1321] = {.lex_state = 103}, - [1322] = {.lex_state = 103}, - [1323] = {.lex_state = 283, .external_lex_state = 4}, - [1324] = {.lex_state = 333, .external_lex_state = 13}, - [1325] = {.lex_state = 165}, - [1326] = {.lex_state = 170}, - [1327] = {.lex_state = 333, .external_lex_state = 13}, - [1328] = {.lex_state = 175, .external_lex_state = 6}, - [1329] = {.lex_state = 20, .external_lex_state = 2}, - [1330] = {.lex_state = 20, .external_lex_state = 2}, - [1331] = {.lex_state = 20, .external_lex_state = 2}, - [1332] = {.lex_state = 141}, - [1333] = {.lex_state = 103}, - [1334] = {.lex_state = 137}, - [1335] = {.lex_state = 141}, - [1336] = {.lex_state = 317}, - [1337] = {.lex_state = 283, .external_lex_state = 4}, - [1338] = {.lex_state = 103}, - [1339] = {.lex_state = 141}, - [1340] = {.lex_state = 317}, - [1341] = {.lex_state = 190, .external_lex_state = 10}, - [1342] = {.lex_state = 327, .external_lex_state = 22}, - [1343] = {.lex_state = 327, .external_lex_state = 22}, - [1344] = {.lex_state = 103, .external_lex_state = 16}, - [1345] = {.lex_state = 291, .external_lex_state = 16}, - [1346] = {.lex_state = 190, .external_lex_state = 10}, - [1347] = {.lex_state = 289, .external_lex_state = 16}, - [1348] = {.lex_state = 190, .external_lex_state = 10}, - [1349] = {.lex_state = 293}, - [1350] = {.lex_state = 291, .external_lex_state = 16}, - [1351] = {.lex_state = 190, .external_lex_state = 10}, - [1352] = {.lex_state = 293}, - [1353] = {.lex_state = 291, .external_lex_state = 16}, - [1354] = {.lex_state = 293}, - [1355] = {.lex_state = 291, .external_lex_state = 16}, + [1308] = {.lex_state = 249, .external_lex_state = 2}, + [1309] = {.lex_state = 103}, + [1310] = {.lex_state = 241, .external_lex_state = 2}, + [1311] = {.lex_state = 103}, + [1312] = {.lex_state = 313, .external_lex_state = 4}, + [1313] = {.lex_state = 283, .external_lex_state = 4}, + [1314] = {.lex_state = 262, .external_lex_state = 2}, + [1315] = {.lex_state = 262, .external_lex_state = 2}, + [1316] = {.lex_state = 253, .external_lex_state = 7}, + [1317] = {.lex_state = 262, .external_lex_state = 2}, + [1318] = {.lex_state = 103}, + [1319] = {.lex_state = 315, .external_lex_state = 2}, + [1320] = {.lex_state = 153, .external_lex_state = 4}, + [1321] = {.lex_state = 182, .external_lex_state = 8}, + [1322] = {.lex_state = 315, .external_lex_state = 2}, + [1323] = {.lex_state = 268, .external_lex_state = 2}, + [1324] = {.lex_state = 283, .external_lex_state = 4}, + [1325] = {.lex_state = 103}, + [1326] = {.lex_state = 268, .external_lex_state = 2}, + [1327] = {.lex_state = 103}, + [1328] = {.lex_state = 103}, + [1329] = {.lex_state = 283, .external_lex_state = 4}, + [1330] = {.lex_state = 333, .external_lex_state = 13}, + [1331] = {.lex_state = 165}, + [1332] = {.lex_state = 170}, + [1333] = {.lex_state = 333, .external_lex_state = 13}, + [1334] = {.lex_state = 175, .external_lex_state = 6}, + [1335] = {.lex_state = 20, .external_lex_state = 2}, + [1336] = {.lex_state = 20, .external_lex_state = 2}, + [1337] = {.lex_state = 20, .external_lex_state = 2}, + [1338] = {.lex_state = 141}, + [1339] = {.lex_state = 103}, + [1340] = {.lex_state = 137}, + [1341] = {.lex_state = 141}, + [1342] = {.lex_state = 317}, + [1343] = {.lex_state = 283, .external_lex_state = 4}, + [1344] = {.lex_state = 103}, + [1345] = {.lex_state = 141}, + [1346] = {.lex_state = 317}, + [1347] = {.lex_state = 190, .external_lex_state = 10}, + [1348] = {.lex_state = 327, .external_lex_state = 22}, + [1349] = {.lex_state = 327, .external_lex_state = 22}, + [1350] = {.lex_state = 103, .external_lex_state = 16}, + [1351] = {.lex_state = 291, .external_lex_state = 16}, + [1352] = {.lex_state = 190, .external_lex_state = 10}, + [1353] = {.lex_state = 289, .external_lex_state = 16}, + [1354] = {.lex_state = 190, .external_lex_state = 10}, + [1355] = {.lex_state = 293}, [1356] = {.lex_state = 291, .external_lex_state = 16}, [1357] = {.lex_state = 190, .external_lex_state = 10}, - [1358] = {.lex_state = 291, .external_lex_state = 16}, - [1359] = {.lex_state = 280, .external_lex_state = 7}, - [1360] = {.lex_state = 278, .external_lex_state = 21}, - [1361] = {.lex_state = 323, .external_lex_state = 7}, - [1362] = {.lex_state = 278, .external_lex_state = 21}, - [1363] = {.lex_state = 141}, - [1364] = {.lex_state = 335, .external_lex_state = 10}, - [1365] = {.lex_state = 165}, - [1366] = {.lex_state = 170}, - [1367] = {.lex_state = 335, .external_lex_state = 10}, - [1368] = {.lex_state = 175, .external_lex_state = 6}, - [1369] = {.lex_state = 20, .external_lex_state = 2}, - [1370] = {.lex_state = 20, .external_lex_state = 2}, - [1371] = {.lex_state = 20, .external_lex_state = 2}, - [1372] = {.lex_state = 283, .external_lex_state = 4}, - [1373] = {.lex_state = 141}, - [1374] = {.lex_state = 188, .external_lex_state = 20}, - [1375] = {.lex_state = 188, .external_lex_state = 20}, - [1376] = {.lex_state = 165}, - [1377] = {.lex_state = 188, .external_lex_state = 20}, - [1378] = {.lex_state = 188, .external_lex_state = 20}, - [1379] = {.lex_state = 188, .external_lex_state = 20}, - [1380] = {.lex_state = 103}, - [1381] = {.lex_state = 226, .external_lex_state = 16}, - [1382] = {.lex_state = 235, .external_lex_state = 6}, - [1383] = {.lex_state = 226, .external_lex_state = 16}, - [1384] = {.lex_state = 226, .external_lex_state = 16}, - [1385] = {.lex_state = 103}, - [1386] = {.lex_state = 241, .external_lex_state = 2}, - [1387] = {.lex_state = 103}, - [1388] = {.lex_state = 249, .external_lex_state = 2}, - [1389] = {.lex_state = 103}, - [1390] = {.lex_state = 241, .external_lex_state = 2}, - [1391] = {.lex_state = 287, .external_lex_state = 7}, - [1392] = {.lex_state = 103}, - [1393] = {.lex_state = 20}, - [1394] = {.lex_state = 141}, - [1395] = {.lex_state = 287, .external_lex_state = 7}, - [1396] = {.lex_state = 193, .external_lex_state = 14}, - [1397] = {.lex_state = 193, .external_lex_state = 14}, - [1398] = {.lex_state = 193, .external_lex_state = 14}, - [1399] = {.lex_state = 193, .external_lex_state = 14}, - [1400] = {.lex_state = 193, .external_lex_state = 14}, - [1401] = {.lex_state = 289, .external_lex_state = 16}, + [1358] = {.lex_state = 293}, + [1359] = {.lex_state = 291, .external_lex_state = 16}, + [1360] = {.lex_state = 293}, + [1361] = {.lex_state = 291, .external_lex_state = 16}, + [1362] = {.lex_state = 291, .external_lex_state = 16}, + [1363] = {.lex_state = 190, .external_lex_state = 10}, + [1364] = {.lex_state = 291, .external_lex_state = 16}, + [1365] = {.lex_state = 280, .external_lex_state = 7}, + [1366] = {.lex_state = 278, .external_lex_state = 21}, + [1367] = {.lex_state = 323, .external_lex_state = 7}, + [1368] = {.lex_state = 278, .external_lex_state = 21}, + [1369] = {.lex_state = 141}, + [1370] = {.lex_state = 335, .external_lex_state = 10}, + [1371] = {.lex_state = 165}, + [1372] = {.lex_state = 170}, + [1373] = {.lex_state = 335, .external_lex_state = 10}, + [1374] = {.lex_state = 175, .external_lex_state = 6}, + [1375] = {.lex_state = 20, .external_lex_state = 2}, + [1376] = {.lex_state = 20, .external_lex_state = 2}, + [1377] = {.lex_state = 20, .external_lex_state = 2}, + [1378] = {.lex_state = 283, .external_lex_state = 4}, + [1379] = {.lex_state = 141}, + [1380] = {.lex_state = 188, .external_lex_state = 20}, + [1381] = {.lex_state = 188, .external_lex_state = 20}, + [1382] = {.lex_state = 165}, + [1383] = {.lex_state = 188, .external_lex_state = 20}, + [1384] = {.lex_state = 188, .external_lex_state = 20}, + [1385] = {.lex_state = 188, .external_lex_state = 20}, + [1386] = {.lex_state = 103}, + [1387] = {.lex_state = 226, .external_lex_state = 16}, + [1388] = {.lex_state = 235, .external_lex_state = 6}, + [1389] = {.lex_state = 226, .external_lex_state = 16}, + [1390] = {.lex_state = 226, .external_lex_state = 16}, + [1391] = {.lex_state = 103}, + [1392] = {.lex_state = 241, .external_lex_state = 2}, + [1393] = {.lex_state = 103}, + [1394] = {.lex_state = 249, .external_lex_state = 2}, + [1395] = {.lex_state = 103}, + [1396] = {.lex_state = 241, .external_lex_state = 2}, + [1397] = {.lex_state = 287, .external_lex_state = 7}, + [1398] = {.lex_state = 103}, + [1399] = {.lex_state = 20}, + [1400] = {.lex_state = 141}, + [1401] = {.lex_state = 287, .external_lex_state = 7}, [1402] = {.lex_state = 193, .external_lex_state = 14}, - [1403] = {.lex_state = 293}, - [1404] = {.lex_state = 291, .external_lex_state = 16}, - [1405] = {.lex_state = 103}, - [1406] = {.lex_state = 226, .external_lex_state = 16}, - [1407] = {.lex_state = 226, .external_lex_state = 16}, - [1408] = {.lex_state = 226, .external_lex_state = 16}, - [1409] = {.lex_state = 193, .external_lex_state = 14}, - [1410] = {.lex_state = 293}, - [1411] = {.lex_state = 291, .external_lex_state = 16}, - [1412] = {.lex_state = 193, .external_lex_state = 14}, - [1413] = {.lex_state = 293}, - [1414] = {.lex_state = 291, .external_lex_state = 16}, + [1403] = {.lex_state = 193, .external_lex_state = 14}, + [1404] = {.lex_state = 193, .external_lex_state = 14}, + [1405] = {.lex_state = 193, .external_lex_state = 14}, + [1406] = {.lex_state = 193, .external_lex_state = 14}, + [1407] = {.lex_state = 289, .external_lex_state = 16}, + [1408] = {.lex_state = 193, .external_lex_state = 14}, + [1409] = {.lex_state = 293}, + [1410] = {.lex_state = 291, .external_lex_state = 16}, + [1411] = {.lex_state = 103}, + [1412] = {.lex_state = 226, .external_lex_state = 16}, + [1413] = {.lex_state = 226, .external_lex_state = 16}, + [1414] = {.lex_state = 226, .external_lex_state = 16}, [1415] = {.lex_state = 193, .external_lex_state = 14}, - [1416] = {.lex_state = 193, .external_lex_state = 14}, - [1417] = {.lex_state = 193, .external_lex_state = 10}, - [1418] = {.lex_state = 193, .external_lex_state = 10}, - [1419] = {.lex_state = 193, .external_lex_state = 10}, - [1420] = {.lex_state = 289, .external_lex_state = 16}, - [1421] = {.lex_state = 193, .external_lex_state = 10}, - [1422] = {.lex_state = 293}, - [1423] = {.lex_state = 291, .external_lex_state = 16}, - [1424] = {.lex_state = 103}, - [1425] = {.lex_state = 226, .external_lex_state = 16}, - [1426] = {.lex_state = 226, .external_lex_state = 16}, - [1427] = {.lex_state = 226, .external_lex_state = 16}, - [1428] = {.lex_state = 193, .external_lex_state = 10}, - [1429] = {.lex_state = 293}, - [1430] = {.lex_state = 291, .external_lex_state = 16}, - [1431] = {.lex_state = 193, .external_lex_state = 10}, - [1432] = {.lex_state = 293}, - [1433] = {.lex_state = 291, .external_lex_state = 16}, + [1416] = {.lex_state = 293}, + [1417] = {.lex_state = 291, .external_lex_state = 16}, + [1418] = {.lex_state = 193, .external_lex_state = 14}, + [1419] = {.lex_state = 293}, + [1420] = {.lex_state = 291, .external_lex_state = 16}, + [1421] = {.lex_state = 193, .external_lex_state = 14}, + [1422] = {.lex_state = 193, .external_lex_state = 14}, + [1423] = {.lex_state = 193, .external_lex_state = 10}, + [1424] = {.lex_state = 193, .external_lex_state = 10}, + [1425] = {.lex_state = 193, .external_lex_state = 10}, + [1426] = {.lex_state = 289, .external_lex_state = 16}, + [1427] = {.lex_state = 193, .external_lex_state = 10}, + [1428] = {.lex_state = 293}, + [1429] = {.lex_state = 291, .external_lex_state = 16}, + [1430] = {.lex_state = 103}, + [1431] = {.lex_state = 226, .external_lex_state = 16}, + [1432] = {.lex_state = 226, .external_lex_state = 16}, + [1433] = {.lex_state = 226, .external_lex_state = 16}, [1434] = {.lex_state = 193, .external_lex_state = 10}, - [1435] = {.lex_state = 193, .external_lex_state = 10}, - [1436] = {.lex_state = 184, .external_lex_state = 5}, - [1437] = {.lex_state = 327, .external_lex_state = 22}, - [1438] = {.lex_state = 327, .external_lex_state = 22}, - [1439] = {.lex_state = 103, .external_lex_state = 16}, - [1440] = {.lex_state = 291, .external_lex_state = 16}, - [1441] = {.lex_state = 184, .external_lex_state = 5}, - [1442] = {.lex_state = 289, .external_lex_state = 16}, - [1443] = {.lex_state = 184, .external_lex_state = 5}, - [1444] = {.lex_state = 293}, - [1445] = {.lex_state = 291, .external_lex_state = 16}, - [1446] = {.lex_state = 184, .external_lex_state = 5}, - [1447] = {.lex_state = 293}, - [1448] = {.lex_state = 291, .external_lex_state = 16}, - [1449] = {.lex_state = 293}, - [1450] = {.lex_state = 291, .external_lex_state = 16}, + [1435] = {.lex_state = 293}, + [1436] = {.lex_state = 291, .external_lex_state = 16}, + [1437] = {.lex_state = 193, .external_lex_state = 10}, + [1438] = {.lex_state = 293}, + [1439] = {.lex_state = 291, .external_lex_state = 16}, + [1440] = {.lex_state = 193, .external_lex_state = 10}, + [1441] = {.lex_state = 193, .external_lex_state = 10}, + [1442] = {.lex_state = 184, .external_lex_state = 5}, + [1443] = {.lex_state = 327, .external_lex_state = 22}, + [1444] = {.lex_state = 327, .external_lex_state = 22}, + [1445] = {.lex_state = 103, .external_lex_state = 16}, + [1446] = {.lex_state = 291, .external_lex_state = 16}, + [1447] = {.lex_state = 184, .external_lex_state = 5}, + [1448] = {.lex_state = 289, .external_lex_state = 16}, + [1449] = {.lex_state = 184, .external_lex_state = 5}, + [1450] = {.lex_state = 293}, [1451] = {.lex_state = 291, .external_lex_state = 16}, [1452] = {.lex_state = 184, .external_lex_state = 5}, - [1453] = {.lex_state = 291, .external_lex_state = 16}, - [1454] = {.lex_state = 325, .external_lex_state = 7}, - [1455] = {.lex_state = 287, .external_lex_state = 5}, - [1456] = {.lex_state = 287, .external_lex_state = 5}, - [1457] = {.lex_state = 141}, - [1458] = {.lex_state = 287, .external_lex_state = 5}, - [1459] = {.lex_state = 287, .external_lex_state = 5}, - [1460] = {.lex_state = 165}, + [1453] = {.lex_state = 293}, + [1454] = {.lex_state = 291, .external_lex_state = 16}, + [1455] = {.lex_state = 293}, + [1456] = {.lex_state = 291, .external_lex_state = 16}, + [1457] = {.lex_state = 291, .external_lex_state = 16}, + [1458] = {.lex_state = 184, .external_lex_state = 5}, + [1459] = {.lex_state = 291, .external_lex_state = 16}, + [1460] = {.lex_state = 325, .external_lex_state = 7}, [1461] = {.lex_state = 287, .external_lex_state = 5}, [1462] = {.lex_state = 287, .external_lex_state = 5}, - [1463] = {.lex_state = 287, .external_lex_state = 5}, - [1464] = {.lex_state = 103}, - [1465] = {.lex_state = 226, .external_lex_state = 16}, - [1466] = {.lex_state = 235, .external_lex_state = 6}, - [1467] = {.lex_state = 226, .external_lex_state = 16}, - [1468] = {.lex_state = 226, .external_lex_state = 16}, - [1469] = {.lex_state = 103}, - [1470] = {.lex_state = 241, .external_lex_state = 2}, - [1471] = {.lex_state = 103}, - [1472] = {.lex_state = 249, .external_lex_state = 2}, - [1473] = {.lex_state = 103}, - [1474] = {.lex_state = 241, .external_lex_state = 2}, - [1475] = {.lex_state = 283, .external_lex_state = 4}, - [1476] = {.lex_state = 287, .external_lex_state = 7}, - [1477] = {.lex_state = 217, .external_lex_state = 11}, - [1478] = {.lex_state = 327, .external_lex_state = 22}, - [1479] = {.lex_state = 327, .external_lex_state = 22}, - [1480] = {.lex_state = 103, .external_lex_state = 16}, - [1481] = {.lex_state = 291, .external_lex_state = 16}, - [1482] = {.lex_state = 217, .external_lex_state = 11}, - [1483] = {.lex_state = 289, .external_lex_state = 16}, - [1484] = {.lex_state = 217, .external_lex_state = 11}, - [1485] = {.lex_state = 293}, - [1486] = {.lex_state = 291, .external_lex_state = 16}, - [1487] = {.lex_state = 217, .external_lex_state = 11}, - [1488] = {.lex_state = 293}, - [1489] = {.lex_state = 291, .external_lex_state = 16}, - [1490] = {.lex_state = 293}, - [1491] = {.lex_state = 291, .external_lex_state = 16}, + [1463] = {.lex_state = 141}, + [1464] = {.lex_state = 287, .external_lex_state = 5}, + [1465] = {.lex_state = 287, .external_lex_state = 5}, + [1466] = {.lex_state = 165}, + [1467] = {.lex_state = 287, .external_lex_state = 5}, + [1468] = {.lex_state = 287, .external_lex_state = 5}, + [1469] = {.lex_state = 287, .external_lex_state = 5}, + [1470] = {.lex_state = 103}, + [1471] = {.lex_state = 226, .external_lex_state = 16}, + [1472] = {.lex_state = 235, .external_lex_state = 6}, + [1473] = {.lex_state = 226, .external_lex_state = 16}, + [1474] = {.lex_state = 226, .external_lex_state = 16}, + [1475] = {.lex_state = 103}, + [1476] = {.lex_state = 241, .external_lex_state = 2}, + [1477] = {.lex_state = 103}, + [1478] = {.lex_state = 249, .external_lex_state = 2}, + [1479] = {.lex_state = 103}, + [1480] = {.lex_state = 241, .external_lex_state = 2}, + [1481] = {.lex_state = 283, .external_lex_state = 4}, + [1482] = {.lex_state = 287, .external_lex_state = 7}, + [1483] = {.lex_state = 217, .external_lex_state = 11}, + [1484] = {.lex_state = 327, .external_lex_state = 22}, + [1485] = {.lex_state = 327, .external_lex_state = 22}, + [1486] = {.lex_state = 103, .external_lex_state = 16}, + [1487] = {.lex_state = 291, .external_lex_state = 16}, + [1488] = {.lex_state = 217, .external_lex_state = 11}, + [1489] = {.lex_state = 289, .external_lex_state = 16}, + [1490] = {.lex_state = 217, .external_lex_state = 11}, + [1491] = {.lex_state = 293}, [1492] = {.lex_state = 291, .external_lex_state = 16}, [1493] = {.lex_state = 217, .external_lex_state = 11}, - [1494] = {.lex_state = 291, .external_lex_state = 16}, - [1495] = {.lex_state = 219, .external_lex_state = 13}, - [1496] = {.lex_state = 327, .external_lex_state = 22}, - [1497] = {.lex_state = 327, .external_lex_state = 22}, - [1498] = {.lex_state = 103, .external_lex_state = 16}, - [1499] = {.lex_state = 291, .external_lex_state = 16}, - [1500] = {.lex_state = 219, .external_lex_state = 13}, - [1501] = {.lex_state = 289, .external_lex_state = 16}, - [1502] = {.lex_state = 219, .external_lex_state = 13}, - [1503] = {.lex_state = 293}, - [1504] = {.lex_state = 291, .external_lex_state = 16}, - [1505] = {.lex_state = 219, .external_lex_state = 13}, - [1506] = {.lex_state = 293}, - [1507] = {.lex_state = 291, .external_lex_state = 16}, - [1508] = {.lex_state = 293}, - [1509] = {.lex_state = 291, .external_lex_state = 16}, + [1494] = {.lex_state = 293}, + [1495] = {.lex_state = 291, .external_lex_state = 16}, + [1496] = {.lex_state = 293}, + [1497] = {.lex_state = 291, .external_lex_state = 16}, + [1498] = {.lex_state = 291, .external_lex_state = 16}, + [1499] = {.lex_state = 217, .external_lex_state = 11}, + [1500] = {.lex_state = 291, .external_lex_state = 16}, + [1501] = {.lex_state = 219, .external_lex_state = 13}, + [1502] = {.lex_state = 327, .external_lex_state = 22}, + [1503] = {.lex_state = 327, .external_lex_state = 22}, + [1504] = {.lex_state = 103, .external_lex_state = 16}, + [1505] = {.lex_state = 291, .external_lex_state = 16}, + [1506] = {.lex_state = 219, .external_lex_state = 13}, + [1507] = {.lex_state = 289, .external_lex_state = 16}, + [1508] = {.lex_state = 219, .external_lex_state = 13}, + [1509] = {.lex_state = 293}, [1510] = {.lex_state = 291, .external_lex_state = 16}, [1511] = {.lex_state = 219, .external_lex_state = 13}, - [1512] = {.lex_state = 291, .external_lex_state = 16}, - [1513] = {.lex_state = 193, .external_lex_state = 3}, - [1514] = {.lex_state = 241}, - [1515] = {.lex_state = 153, .external_lex_state = 14}, - [1516] = {.lex_state = 327, .external_lex_state = 22}, - [1517] = {.lex_state = 327, .external_lex_state = 22}, - [1518] = {.lex_state = 103, .external_lex_state = 16}, - [1519] = {.lex_state = 291, .external_lex_state = 16}, - [1520] = {.lex_state = 153, .external_lex_state = 14}, - [1521] = {.lex_state = 289, .external_lex_state = 16}, - [1522] = {.lex_state = 153, .external_lex_state = 14}, - [1523] = {.lex_state = 293}, - [1524] = {.lex_state = 291, .external_lex_state = 16}, - [1525] = {.lex_state = 153, .external_lex_state = 14}, - [1526] = {.lex_state = 293}, - [1527] = {.lex_state = 291, .external_lex_state = 16}, - [1528] = {.lex_state = 293}, - [1529] = {.lex_state = 291, .external_lex_state = 16}, + [1512] = {.lex_state = 293}, + [1513] = {.lex_state = 291, .external_lex_state = 16}, + [1514] = {.lex_state = 293}, + [1515] = {.lex_state = 291, .external_lex_state = 16}, + [1516] = {.lex_state = 291, .external_lex_state = 16}, + [1517] = {.lex_state = 219, .external_lex_state = 13}, + [1518] = {.lex_state = 291, .external_lex_state = 16}, + [1519] = {.lex_state = 193, .external_lex_state = 3}, + [1520] = {.lex_state = 241}, + [1521] = {.lex_state = 153, .external_lex_state = 14}, + [1522] = {.lex_state = 327, .external_lex_state = 22}, + [1523] = {.lex_state = 327, .external_lex_state = 22}, + [1524] = {.lex_state = 103, .external_lex_state = 16}, + [1525] = {.lex_state = 291, .external_lex_state = 16}, + [1526] = {.lex_state = 153, .external_lex_state = 14}, + [1527] = {.lex_state = 289, .external_lex_state = 16}, + [1528] = {.lex_state = 153, .external_lex_state = 14}, + [1529] = {.lex_state = 293}, [1530] = {.lex_state = 291, .external_lex_state = 16}, [1531] = {.lex_state = 153, .external_lex_state = 14}, - [1532] = {.lex_state = 291, .external_lex_state = 16}, - [1533] = {.lex_state = 153, .external_lex_state = 10}, - [1534] = {.lex_state = 327, .external_lex_state = 22}, - [1535] = {.lex_state = 327, .external_lex_state = 22}, - [1536] = {.lex_state = 103, .external_lex_state = 16}, - [1537] = {.lex_state = 291, .external_lex_state = 16}, - [1538] = {.lex_state = 153, .external_lex_state = 10}, - [1539] = {.lex_state = 289, .external_lex_state = 16}, - [1540] = {.lex_state = 153, .external_lex_state = 10}, - [1541] = {.lex_state = 293}, - [1542] = {.lex_state = 291, .external_lex_state = 16}, - [1543] = {.lex_state = 153, .external_lex_state = 10}, - [1544] = {.lex_state = 293}, - [1545] = {.lex_state = 291, .external_lex_state = 16}, - [1546] = {.lex_state = 293}, - [1547] = {.lex_state = 291, .external_lex_state = 16}, + [1532] = {.lex_state = 293}, + [1533] = {.lex_state = 291, .external_lex_state = 16}, + [1534] = {.lex_state = 293}, + [1535] = {.lex_state = 291, .external_lex_state = 16}, + [1536] = {.lex_state = 291, .external_lex_state = 16}, + [1537] = {.lex_state = 153, .external_lex_state = 14}, + [1538] = {.lex_state = 291, .external_lex_state = 16}, + [1539] = {.lex_state = 153, .external_lex_state = 10}, + [1540] = {.lex_state = 327, .external_lex_state = 22}, + [1541] = {.lex_state = 327, .external_lex_state = 22}, + [1542] = {.lex_state = 103, .external_lex_state = 16}, + [1543] = {.lex_state = 291, .external_lex_state = 16}, + [1544] = {.lex_state = 153, .external_lex_state = 10}, + [1545] = {.lex_state = 289, .external_lex_state = 16}, + [1546] = {.lex_state = 153, .external_lex_state = 10}, + [1547] = {.lex_state = 293}, [1548] = {.lex_state = 291, .external_lex_state = 16}, [1549] = {.lex_state = 153, .external_lex_state = 10}, - [1550] = {.lex_state = 291, .external_lex_state = 16}, - [1551] = {.lex_state = 141, .external_lex_state = 15}, - [1552] = {.lex_state = 327, .external_lex_state = 22}, - [1553] = {.lex_state = 327, .external_lex_state = 22}, - [1554] = {.lex_state = 103, .external_lex_state = 16}, - [1555] = {.lex_state = 291, .external_lex_state = 16}, - [1556] = {.lex_state = 141, .external_lex_state = 15}, - [1557] = {.lex_state = 289, .external_lex_state = 16}, - [1558] = {.lex_state = 141, .external_lex_state = 15}, - [1559] = {.lex_state = 293}, - [1560] = {.lex_state = 291, .external_lex_state = 16}, - [1561] = {.lex_state = 141, .external_lex_state = 15}, - [1562] = {.lex_state = 293}, - [1563] = {.lex_state = 291, .external_lex_state = 16}, - [1564] = {.lex_state = 293}, - [1565] = {.lex_state = 291, .external_lex_state = 16}, + [1550] = {.lex_state = 293}, + [1551] = {.lex_state = 291, .external_lex_state = 16}, + [1552] = {.lex_state = 293}, + [1553] = {.lex_state = 291, .external_lex_state = 16}, + [1554] = {.lex_state = 291, .external_lex_state = 16}, + [1555] = {.lex_state = 153, .external_lex_state = 10}, + [1556] = {.lex_state = 291, .external_lex_state = 16}, + [1557] = {.lex_state = 141, .external_lex_state = 15}, + [1558] = {.lex_state = 327, .external_lex_state = 22}, + [1559] = {.lex_state = 327, .external_lex_state = 22}, + [1560] = {.lex_state = 103, .external_lex_state = 16}, + [1561] = {.lex_state = 291, .external_lex_state = 16}, + [1562] = {.lex_state = 141, .external_lex_state = 15}, + [1563] = {.lex_state = 289, .external_lex_state = 16}, + [1564] = {.lex_state = 141, .external_lex_state = 15}, + [1565] = {.lex_state = 293}, [1566] = {.lex_state = 291, .external_lex_state = 16}, [1567] = {.lex_state = 141, .external_lex_state = 15}, - [1568] = {.lex_state = 291, .external_lex_state = 16}, - [1569] = {.lex_state = 165, .external_lex_state = 13}, - [1570] = {.lex_state = 327, .external_lex_state = 22}, - [1571] = {.lex_state = 327, .external_lex_state = 22}, - [1572] = {.lex_state = 103, .external_lex_state = 16}, - [1573] = {.lex_state = 291, .external_lex_state = 16}, - [1574] = {.lex_state = 165, .external_lex_state = 13}, - [1575] = {.lex_state = 289, .external_lex_state = 16}, - [1576] = {.lex_state = 165, .external_lex_state = 13}, - [1577] = {.lex_state = 293}, - [1578] = {.lex_state = 291, .external_lex_state = 16}, - [1579] = {.lex_state = 165, .external_lex_state = 13}, - [1580] = {.lex_state = 293}, - [1581] = {.lex_state = 291, .external_lex_state = 16}, - [1582] = {.lex_state = 293}, - [1583] = {.lex_state = 291, .external_lex_state = 16}, + [1568] = {.lex_state = 293}, + [1569] = {.lex_state = 291, .external_lex_state = 16}, + [1570] = {.lex_state = 293}, + [1571] = {.lex_state = 291, .external_lex_state = 16}, + [1572] = {.lex_state = 291, .external_lex_state = 16}, + [1573] = {.lex_state = 141, .external_lex_state = 15}, + [1574] = {.lex_state = 291, .external_lex_state = 16}, + [1575] = {.lex_state = 165, .external_lex_state = 13}, + [1576] = {.lex_state = 327, .external_lex_state = 22}, + [1577] = {.lex_state = 327, .external_lex_state = 22}, + [1578] = {.lex_state = 103, .external_lex_state = 16}, + [1579] = {.lex_state = 291, .external_lex_state = 16}, + [1580] = {.lex_state = 165, .external_lex_state = 13}, + [1581] = {.lex_state = 289, .external_lex_state = 16}, + [1582] = {.lex_state = 165, .external_lex_state = 13}, + [1583] = {.lex_state = 293}, [1584] = {.lex_state = 291, .external_lex_state = 16}, [1585] = {.lex_state = 165, .external_lex_state = 13}, - [1586] = {.lex_state = 291, .external_lex_state = 16}, - [1587] = {.lex_state = 307, .external_lex_state = 12}, - [1588] = {.lex_state = 226, .external_lex_state = 22}, - [1589] = {.lex_state = 307, .external_lex_state = 12}, - [1590] = {.lex_state = 226, .external_lex_state = 22}, - [1591] = {.lex_state = 103, .external_lex_state = 12}, - [1592] = {.lex_state = 141}, - [1593] = {.lex_state = 162, .external_lex_state = 5}, - [1594] = {.lex_state = 327, .external_lex_state = 22}, - [1595] = {.lex_state = 327, .external_lex_state = 22}, - [1596] = {.lex_state = 165}, - [1597] = {.lex_state = 327, .external_lex_state = 22}, - [1598] = {.lex_state = 327, .external_lex_state = 22}, - [1599] = {.lex_state = 327, .external_lex_state = 22}, - [1600] = {.lex_state = 162, .external_lex_state = 5}, - [1601] = {.lex_state = 103}, - [1602] = {.lex_state = 226, .external_lex_state = 16}, - [1603] = {.lex_state = 235, .external_lex_state = 6}, - [1604] = {.lex_state = 226, .external_lex_state = 16}, - [1605] = {.lex_state = 226, .external_lex_state = 16}, - [1606] = {.lex_state = 103}, - [1607] = {.lex_state = 241, .external_lex_state = 2}, - [1608] = {.lex_state = 103}, - [1609] = {.lex_state = 249, .external_lex_state = 2}, - [1610] = {.lex_state = 103}, - [1611] = {.lex_state = 241, .external_lex_state = 2}, - [1612] = {.lex_state = 291, .external_lex_state = 22}, - [1613] = {.lex_state = 291, .external_lex_state = 22}, - [1614] = {.lex_state = 291, .external_lex_state = 22}, - [1615] = {.lex_state = 289, .external_lex_state = 16}, - [1616] = {.lex_state = 291, .external_lex_state = 22}, - [1617] = {.lex_state = 293}, - [1618] = {.lex_state = 291, .external_lex_state = 16}, - [1619] = {.lex_state = 103}, - [1620] = {.lex_state = 226, .external_lex_state = 16}, - [1621] = {.lex_state = 226, .external_lex_state = 16}, - [1622] = {.lex_state = 226, .external_lex_state = 16}, - [1623] = {.lex_state = 291, .external_lex_state = 22}, - [1624] = {.lex_state = 293}, - [1625] = {.lex_state = 291, .external_lex_state = 16}, - [1626] = {.lex_state = 291, .external_lex_state = 22}, - [1627] = {.lex_state = 293}, - [1628] = {.lex_state = 291, .external_lex_state = 16}, - [1629] = {.lex_state = 162, .external_lex_state = 5}, - [1630] = {.lex_state = 291, .external_lex_state = 16}, - [1631] = {.lex_state = 291, .external_lex_state = 22}, + [1586] = {.lex_state = 293}, + [1587] = {.lex_state = 291, .external_lex_state = 16}, + [1588] = {.lex_state = 293}, + [1589] = {.lex_state = 291, .external_lex_state = 16}, + [1590] = {.lex_state = 291, .external_lex_state = 16}, + [1591] = {.lex_state = 165, .external_lex_state = 13}, + [1592] = {.lex_state = 291, .external_lex_state = 16}, + [1593] = {.lex_state = 307, .external_lex_state = 12}, + [1594] = {.lex_state = 226, .external_lex_state = 22}, + [1595] = {.lex_state = 307, .external_lex_state = 12}, + [1596] = {.lex_state = 226, .external_lex_state = 22}, + [1597] = {.lex_state = 103, .external_lex_state = 12}, + [1598] = {.lex_state = 141}, + [1599] = {.lex_state = 162, .external_lex_state = 5}, + [1600] = {.lex_state = 327, .external_lex_state = 22}, + [1601] = {.lex_state = 327, .external_lex_state = 22}, + [1602] = {.lex_state = 165}, + [1603] = {.lex_state = 327, .external_lex_state = 22}, + [1604] = {.lex_state = 327, .external_lex_state = 22}, + [1605] = {.lex_state = 327, .external_lex_state = 22}, + [1606] = {.lex_state = 162, .external_lex_state = 5}, + [1607] = {.lex_state = 103}, + [1608] = {.lex_state = 226, .external_lex_state = 16}, + [1609] = {.lex_state = 235, .external_lex_state = 6}, + [1610] = {.lex_state = 226, .external_lex_state = 16}, + [1611] = {.lex_state = 226, .external_lex_state = 16}, + [1612] = {.lex_state = 103}, + [1613] = {.lex_state = 241, .external_lex_state = 2}, + [1614] = {.lex_state = 103}, + [1615] = {.lex_state = 249, .external_lex_state = 2}, + [1616] = {.lex_state = 103}, + [1617] = {.lex_state = 241, .external_lex_state = 2}, + [1618] = {.lex_state = 291, .external_lex_state = 22}, + [1619] = {.lex_state = 291, .external_lex_state = 22}, + [1620] = {.lex_state = 291, .external_lex_state = 22}, + [1621] = {.lex_state = 289, .external_lex_state = 16}, + [1622] = {.lex_state = 291, .external_lex_state = 22}, + [1623] = {.lex_state = 293}, + [1624] = {.lex_state = 291, .external_lex_state = 16}, + [1625] = {.lex_state = 103}, + [1626] = {.lex_state = 226, .external_lex_state = 16}, + [1627] = {.lex_state = 226, .external_lex_state = 16}, + [1628] = {.lex_state = 226, .external_lex_state = 16}, + [1629] = {.lex_state = 291, .external_lex_state = 22}, + [1630] = {.lex_state = 293}, + [1631] = {.lex_state = 291, .external_lex_state = 16}, [1632] = {.lex_state = 291, .external_lex_state = 22}, - [1633] = {.lex_state = 327, .external_lex_state = 22}, - [1634] = {.lex_state = 327, .external_lex_state = 22}, - [1635] = {.lex_state = 103, .external_lex_state = 16}, + [1633] = {.lex_state = 293}, + [1634] = {.lex_state = 291, .external_lex_state = 16}, + [1635] = {.lex_state = 162, .external_lex_state = 5}, [1636] = {.lex_state = 291, .external_lex_state = 16}, - [1637] = {.lex_state = 162, .external_lex_state = 5}, - [1638] = {.lex_state = 291, .external_lex_state = 16}, - [1639] = {.lex_state = 162, .external_lex_state = 5}, - [1640] = {.lex_state = 291, .external_lex_state = 16}, - [1641] = {.lex_state = 162, .external_lex_state = 5}, + [1637] = {.lex_state = 291, .external_lex_state = 22}, + [1638] = {.lex_state = 291, .external_lex_state = 22}, + [1639] = {.lex_state = 327, .external_lex_state = 22}, + [1640] = {.lex_state = 327, .external_lex_state = 22}, + [1641] = {.lex_state = 103, .external_lex_state = 16}, [1642] = {.lex_state = 291, .external_lex_state = 16}, [1643] = {.lex_state = 162, .external_lex_state = 5}, [1644] = {.lex_state = 291, .external_lex_state = 16}, - [1645] = {.lex_state = 241, .external_lex_state = 2}, - [1646] = {.lex_state = 241}, - [1647] = {.lex_state = 141}, - [1648] = {.lex_state = 241, .external_lex_state = 15}, - [1649] = {.lex_state = 241, .external_lex_state = 15}, - [1650] = {.lex_state = 165}, - [1651] = {.lex_state = 241, .external_lex_state = 15}, - [1652] = {.lex_state = 241, .external_lex_state = 15}, - [1653] = {.lex_state = 241, .external_lex_state = 15}, - [1654] = {.lex_state = 103}, - [1655] = {.lex_state = 226, .external_lex_state = 16}, - [1656] = {.lex_state = 235, .external_lex_state = 6}, - [1657] = {.lex_state = 226, .external_lex_state = 16}, - [1658] = {.lex_state = 226, .external_lex_state = 16}, - [1659] = {.lex_state = 103}, - [1660] = {.lex_state = 241, .external_lex_state = 2}, - [1661] = {.lex_state = 103}, - [1662] = {.lex_state = 249, .external_lex_state = 2}, - [1663] = {.lex_state = 103}, - [1664] = {.lex_state = 241, .external_lex_state = 2}, - [1665] = {.lex_state = 313, .external_lex_state = 4}, - [1666] = {.lex_state = 298, .external_lex_state = 18}, - [1667] = {.lex_state = 262, .external_lex_state = 2}, - [1668] = {.lex_state = 300, .external_lex_state = 18}, + [1645] = {.lex_state = 162, .external_lex_state = 5}, + [1646] = {.lex_state = 291, .external_lex_state = 16}, + [1647] = {.lex_state = 162, .external_lex_state = 5}, + [1648] = {.lex_state = 291, .external_lex_state = 16}, + [1649] = {.lex_state = 162, .external_lex_state = 5}, + [1650] = {.lex_state = 291, .external_lex_state = 16}, + [1651] = {.lex_state = 241, .external_lex_state = 2}, + [1652] = {.lex_state = 241}, + [1653] = {.lex_state = 141}, + [1654] = {.lex_state = 241, .external_lex_state = 15}, + [1655] = {.lex_state = 241, .external_lex_state = 15}, + [1656] = {.lex_state = 165}, + [1657] = {.lex_state = 241, .external_lex_state = 15}, + [1658] = {.lex_state = 241, .external_lex_state = 15}, + [1659] = {.lex_state = 241, .external_lex_state = 15}, + [1660] = {.lex_state = 103}, + [1661] = {.lex_state = 226, .external_lex_state = 16}, + [1662] = {.lex_state = 235, .external_lex_state = 6}, + [1663] = {.lex_state = 226, .external_lex_state = 16}, + [1664] = {.lex_state = 226, .external_lex_state = 16}, + [1665] = {.lex_state = 103}, + [1666] = {.lex_state = 241, .external_lex_state = 2}, + [1667] = {.lex_state = 103}, + [1668] = {.lex_state = 249, .external_lex_state = 2}, [1669] = {.lex_state = 103}, - [1670] = {.lex_state = 103}, - [1671] = {.lex_state = 268, .external_lex_state = 2}, - [1672] = {.lex_state = 103}, - [1673] = {.lex_state = 317}, - [1674] = {.lex_state = 190, .external_lex_state = 4}, - [1675] = {.lex_state = 317}, - [1676] = {.lex_state = 190, .external_lex_state = 4}, + [1670] = {.lex_state = 241, .external_lex_state = 2}, + [1671] = {.lex_state = 313, .external_lex_state = 4}, + [1672] = {.lex_state = 262, .external_lex_state = 2}, + [1673] = {.lex_state = 103}, + [1674] = {.lex_state = 298, .external_lex_state = 18}, + [1675] = {.lex_state = 262, .external_lex_state = 2}, + [1676] = {.lex_state = 300, .external_lex_state = 18}, [1677] = {.lex_state = 103}, - [1678] = {.lex_state = 337, .external_lex_state = 18}, - [1679] = {.lex_state = 278, .external_lex_state = 21}, - [1680] = {.lex_state = 20}, - [1681] = {.lex_state = 141}, - [1682] = {.lex_state = 103}, - [1683] = {.lex_state = 103}, - [1684] = {.lex_state = 285, .external_lex_state = 2}, - [1685] = {.lex_state = 300, .external_lex_state = 18}, - [1686] = {.lex_state = 237, .external_lex_state = 6}, - [1687] = {.lex_state = 241}, - [1688] = {.lex_state = 237, .external_lex_state = 23}, - [1689] = {.lex_state = 237, .external_lex_state = 23}, - [1690] = {.lex_state = 237, .external_lex_state = 23}, - [1691] = {.lex_state = 237, .external_lex_state = 23}, - [1692] = {.lex_state = 237, .external_lex_state = 23}, - [1693] = {.lex_state = 289, .external_lex_state = 16}, - [1694] = {.lex_state = 237, .external_lex_state = 23}, - [1695] = {.lex_state = 293}, - [1696] = {.lex_state = 291, .external_lex_state = 16}, - [1697] = {.lex_state = 103}, - [1698] = {.lex_state = 226, .external_lex_state = 16}, - [1699] = {.lex_state = 226, .external_lex_state = 16}, - [1700] = {.lex_state = 226, .external_lex_state = 16}, - [1701] = {.lex_state = 237, .external_lex_state = 23}, - [1702] = {.lex_state = 293}, - [1703] = {.lex_state = 291, .external_lex_state = 16}, - [1704] = {.lex_state = 237, .external_lex_state = 23}, - [1705] = {.lex_state = 293}, - [1706] = {.lex_state = 291, .external_lex_state = 16}, - [1707] = {.lex_state = 237, .external_lex_state = 23}, - [1708] = {.lex_state = 237, .external_lex_state = 23}, - [1709] = {.lex_state = 237, .external_lex_state = 13}, - [1710] = {.lex_state = 237, .external_lex_state = 13}, - [1711] = {.lex_state = 237, .external_lex_state = 13}, - [1712] = {.lex_state = 289, .external_lex_state = 16}, - [1713] = {.lex_state = 237, .external_lex_state = 13}, - [1714] = {.lex_state = 293}, - [1715] = {.lex_state = 291, .external_lex_state = 16}, - [1716] = {.lex_state = 103}, - [1717] = {.lex_state = 226, .external_lex_state = 16}, - [1718] = {.lex_state = 226, .external_lex_state = 16}, - [1719] = {.lex_state = 226, .external_lex_state = 16}, - [1720] = {.lex_state = 237, .external_lex_state = 13}, - [1721] = {.lex_state = 293}, - [1722] = {.lex_state = 291, .external_lex_state = 16}, - [1723] = {.lex_state = 237, .external_lex_state = 13}, - [1724] = {.lex_state = 293}, - [1725] = {.lex_state = 291, .external_lex_state = 16}, - [1726] = {.lex_state = 237, .external_lex_state = 13}, - [1727] = {.lex_state = 237, .external_lex_state = 13}, - [1728] = {.lex_state = 143, .external_lex_state = 17}, - [1729] = {.lex_state = 327, .external_lex_state = 22}, - [1730] = {.lex_state = 327, .external_lex_state = 22}, - [1731] = {.lex_state = 103, .external_lex_state = 16}, - [1732] = {.lex_state = 291, .external_lex_state = 16}, - [1733] = {.lex_state = 143, .external_lex_state = 17}, - [1734] = {.lex_state = 289, .external_lex_state = 16}, - [1735] = {.lex_state = 143, .external_lex_state = 17}, - [1736] = {.lex_state = 293}, - [1737] = {.lex_state = 291, .external_lex_state = 16}, - [1738] = {.lex_state = 143, .external_lex_state = 17}, - [1739] = {.lex_state = 293}, + [1678] = {.lex_state = 103}, + [1679] = {.lex_state = 268, .external_lex_state = 2}, + [1680] = {.lex_state = 103}, + [1681] = {.lex_state = 317}, + [1682] = {.lex_state = 190, .external_lex_state = 4}, + [1683] = {.lex_state = 317}, + [1684] = {.lex_state = 190, .external_lex_state = 4}, + [1685] = {.lex_state = 103}, + [1686] = {.lex_state = 337, .external_lex_state = 18}, + [1687] = {.lex_state = 278, .external_lex_state = 21}, + [1688] = {.lex_state = 20}, + [1689] = {.lex_state = 141}, + [1690] = {.lex_state = 103}, + [1691] = {.lex_state = 103}, + [1692] = {.lex_state = 285, .external_lex_state = 2}, + [1693] = {.lex_state = 300, .external_lex_state = 18}, + [1694] = {.lex_state = 237, .external_lex_state = 6}, + [1695] = {.lex_state = 241}, + [1696] = {.lex_state = 237, .external_lex_state = 23}, + [1697] = {.lex_state = 237, .external_lex_state = 23}, + [1698] = {.lex_state = 237, .external_lex_state = 23}, + [1699] = {.lex_state = 237, .external_lex_state = 23}, + [1700] = {.lex_state = 237, .external_lex_state = 23}, + [1701] = {.lex_state = 289, .external_lex_state = 16}, + [1702] = {.lex_state = 237, .external_lex_state = 23}, + [1703] = {.lex_state = 293}, + [1704] = {.lex_state = 291, .external_lex_state = 16}, + [1705] = {.lex_state = 103}, + [1706] = {.lex_state = 226, .external_lex_state = 16}, + [1707] = {.lex_state = 226, .external_lex_state = 16}, + [1708] = {.lex_state = 226, .external_lex_state = 16}, + [1709] = {.lex_state = 237, .external_lex_state = 23}, + [1710] = {.lex_state = 293}, + [1711] = {.lex_state = 291, .external_lex_state = 16}, + [1712] = {.lex_state = 237, .external_lex_state = 23}, + [1713] = {.lex_state = 293}, + [1714] = {.lex_state = 291, .external_lex_state = 16}, + [1715] = {.lex_state = 237, .external_lex_state = 23}, + [1716] = {.lex_state = 237, .external_lex_state = 23}, + [1717] = {.lex_state = 237, .external_lex_state = 13}, + [1718] = {.lex_state = 237, .external_lex_state = 13}, + [1719] = {.lex_state = 237, .external_lex_state = 13}, + [1720] = {.lex_state = 289, .external_lex_state = 16}, + [1721] = {.lex_state = 237, .external_lex_state = 13}, + [1722] = {.lex_state = 293}, + [1723] = {.lex_state = 291, .external_lex_state = 16}, + [1724] = {.lex_state = 103}, + [1725] = {.lex_state = 226, .external_lex_state = 16}, + [1726] = {.lex_state = 226, .external_lex_state = 16}, + [1727] = {.lex_state = 226, .external_lex_state = 16}, + [1728] = {.lex_state = 237, .external_lex_state = 13}, + [1729] = {.lex_state = 293}, + [1730] = {.lex_state = 291, .external_lex_state = 16}, + [1731] = {.lex_state = 237, .external_lex_state = 13}, + [1732] = {.lex_state = 293}, + [1733] = {.lex_state = 291, .external_lex_state = 16}, + [1734] = {.lex_state = 237, .external_lex_state = 13}, + [1735] = {.lex_state = 237, .external_lex_state = 13}, + [1736] = {.lex_state = 143, .external_lex_state = 17}, + [1737] = {.lex_state = 327, .external_lex_state = 22}, + [1738] = {.lex_state = 327, .external_lex_state = 22}, + [1739] = {.lex_state = 103, .external_lex_state = 16}, [1740] = {.lex_state = 291, .external_lex_state = 16}, - [1741] = {.lex_state = 293}, - [1742] = {.lex_state = 291, .external_lex_state = 16}, - [1743] = {.lex_state = 291, .external_lex_state = 16}, - [1744] = {.lex_state = 143, .external_lex_state = 17}, + [1741] = {.lex_state = 143, .external_lex_state = 17}, + [1742] = {.lex_state = 289, .external_lex_state = 16}, + [1743] = {.lex_state = 143, .external_lex_state = 17}, + [1744] = {.lex_state = 293}, [1745] = {.lex_state = 291, .external_lex_state = 16}, - [1746] = {.lex_state = 329, .external_lex_state = 18}, - [1747] = {.lex_state = 300, .external_lex_state = 17}, - [1748] = {.lex_state = 300, .external_lex_state = 17}, - [1749] = {.lex_state = 298, .external_lex_state = 18}, - [1750] = {.lex_state = 141}, - [1751] = {.lex_state = 300, .external_lex_state = 17}, - [1752] = {.lex_state = 300, .external_lex_state = 17}, - [1753] = {.lex_state = 165}, - [1754] = {.lex_state = 300, .external_lex_state = 17}, + [1746] = {.lex_state = 143, .external_lex_state = 17}, + [1747] = {.lex_state = 293}, + [1748] = {.lex_state = 291, .external_lex_state = 16}, + [1749] = {.lex_state = 293}, + [1750] = {.lex_state = 291, .external_lex_state = 16}, + [1751] = {.lex_state = 291, .external_lex_state = 16}, + [1752] = {.lex_state = 143, .external_lex_state = 17}, + [1753] = {.lex_state = 291, .external_lex_state = 16}, + [1754] = {.lex_state = 329, .external_lex_state = 18}, [1755] = {.lex_state = 300, .external_lex_state = 17}, [1756] = {.lex_state = 300, .external_lex_state = 17}, - [1757] = {.lex_state = 103}, - [1758] = {.lex_state = 226, .external_lex_state = 16}, - [1759] = {.lex_state = 235, .external_lex_state = 6}, - [1760] = {.lex_state = 226, .external_lex_state = 16}, - [1761] = {.lex_state = 226, .external_lex_state = 16}, - [1762] = {.lex_state = 103}, - [1763] = {.lex_state = 241, .external_lex_state = 2}, - [1764] = {.lex_state = 103}, - [1765] = {.lex_state = 249, .external_lex_state = 2}, - [1766] = {.lex_state = 103}, - [1767] = {.lex_state = 241, .external_lex_state = 2}, - [1768] = {.lex_state = 298, .external_lex_state = 18}, - [1769] = {.lex_state = 304, .external_lex_state = 24}, - [1770] = {.lex_state = 300, .external_lex_state = 18}, - [1771] = {.lex_state = 141}, - [1772] = {.lex_state = 249, .external_lex_state = 15}, - [1773] = {.lex_state = 249, .external_lex_state = 15}, - [1774] = {.lex_state = 165}, - [1775] = {.lex_state = 249, .external_lex_state = 15}, - [1776] = {.lex_state = 249, .external_lex_state = 15}, - [1777] = {.lex_state = 249, .external_lex_state = 15}, - [1778] = {.lex_state = 103}, - [1779] = {.lex_state = 226, .external_lex_state = 16}, - [1780] = {.lex_state = 235, .external_lex_state = 6}, - [1781] = {.lex_state = 226, .external_lex_state = 16}, - [1782] = {.lex_state = 226, .external_lex_state = 16}, - [1783] = {.lex_state = 103}, - [1784] = {.lex_state = 241, .external_lex_state = 2}, - [1785] = {.lex_state = 103}, - [1786] = {.lex_state = 249, .external_lex_state = 2}, - [1787] = {.lex_state = 103}, - [1788] = {.lex_state = 241, .external_lex_state = 2}, - [1789] = {.lex_state = 302, .external_lex_state = 18}, - [1790] = {.lex_state = 103}, - [1791] = {.lex_state = 20}, - [1792] = {.lex_state = 141}, - [1793] = {.lex_state = 302, .external_lex_state = 18}, - [1794] = {.lex_state = 243, .external_lex_state = 23}, - [1795] = {.lex_state = 243, .external_lex_state = 23}, - [1796] = {.lex_state = 243, .external_lex_state = 23}, - [1797] = {.lex_state = 243, .external_lex_state = 23}, - [1798] = {.lex_state = 243, .external_lex_state = 23}, - [1799] = {.lex_state = 289, .external_lex_state = 16}, - [1800] = {.lex_state = 243, .external_lex_state = 23}, - [1801] = {.lex_state = 293}, - [1802] = {.lex_state = 291, .external_lex_state = 16}, - [1803] = {.lex_state = 103}, - [1804] = {.lex_state = 226, .external_lex_state = 16}, - [1805] = {.lex_state = 226, .external_lex_state = 16}, - [1806] = {.lex_state = 226, .external_lex_state = 16}, - [1807] = {.lex_state = 243, .external_lex_state = 23}, - [1808] = {.lex_state = 293}, - [1809] = {.lex_state = 291, .external_lex_state = 16}, - [1810] = {.lex_state = 243, .external_lex_state = 23}, - [1811] = {.lex_state = 293}, - [1812] = {.lex_state = 291, .external_lex_state = 16}, - [1813] = {.lex_state = 243, .external_lex_state = 23}, - [1814] = {.lex_state = 243, .external_lex_state = 23}, - [1815] = {.lex_state = 243, .external_lex_state = 13}, - [1816] = {.lex_state = 243, .external_lex_state = 13}, - [1817] = {.lex_state = 243, .external_lex_state = 13}, - [1818] = {.lex_state = 289, .external_lex_state = 16}, - [1819] = {.lex_state = 243, .external_lex_state = 13}, - [1820] = {.lex_state = 293}, - [1821] = {.lex_state = 291, .external_lex_state = 16}, - [1822] = {.lex_state = 103}, - [1823] = {.lex_state = 226, .external_lex_state = 16}, - [1824] = {.lex_state = 226, .external_lex_state = 16}, - [1825] = {.lex_state = 226, .external_lex_state = 16}, - [1826] = {.lex_state = 243, .external_lex_state = 13}, - [1827] = {.lex_state = 293}, - [1828] = {.lex_state = 291, .external_lex_state = 16}, - [1829] = {.lex_state = 243, .external_lex_state = 13}, - [1830] = {.lex_state = 293}, - [1831] = {.lex_state = 291, .external_lex_state = 16}, - [1832] = {.lex_state = 243, .external_lex_state = 13}, - [1833] = {.lex_state = 243, .external_lex_state = 13}, - [1834] = {.lex_state = 245, .external_lex_state = 17}, - [1835] = {.lex_state = 327, .external_lex_state = 22}, - [1836] = {.lex_state = 327, .external_lex_state = 22}, - [1837] = {.lex_state = 103, .external_lex_state = 16}, - [1838] = {.lex_state = 291, .external_lex_state = 16}, - [1839] = {.lex_state = 245, .external_lex_state = 17}, - [1840] = {.lex_state = 289, .external_lex_state = 16}, - [1841] = {.lex_state = 245, .external_lex_state = 17}, - [1842] = {.lex_state = 293}, - [1843] = {.lex_state = 291, .external_lex_state = 16}, - [1844] = {.lex_state = 245, .external_lex_state = 17}, - [1845] = {.lex_state = 293}, + [1757] = {.lex_state = 298, .external_lex_state = 18}, + [1758] = {.lex_state = 141}, + [1759] = {.lex_state = 300, .external_lex_state = 17}, + [1760] = {.lex_state = 300, .external_lex_state = 17}, + [1761] = {.lex_state = 165}, + [1762] = {.lex_state = 300, .external_lex_state = 17}, + [1763] = {.lex_state = 300, .external_lex_state = 17}, + [1764] = {.lex_state = 300, .external_lex_state = 17}, + [1765] = {.lex_state = 103}, + [1766] = {.lex_state = 226, .external_lex_state = 16}, + [1767] = {.lex_state = 235, .external_lex_state = 6}, + [1768] = {.lex_state = 226, .external_lex_state = 16}, + [1769] = {.lex_state = 226, .external_lex_state = 16}, + [1770] = {.lex_state = 103}, + [1771] = {.lex_state = 241, .external_lex_state = 2}, + [1772] = {.lex_state = 103}, + [1773] = {.lex_state = 249, .external_lex_state = 2}, + [1774] = {.lex_state = 103}, + [1775] = {.lex_state = 241, .external_lex_state = 2}, + [1776] = {.lex_state = 298, .external_lex_state = 18}, + [1777] = {.lex_state = 304, .external_lex_state = 24}, + [1778] = {.lex_state = 300, .external_lex_state = 18}, + [1779] = {.lex_state = 141}, + [1780] = {.lex_state = 249, .external_lex_state = 15}, + [1781] = {.lex_state = 249, .external_lex_state = 15}, + [1782] = {.lex_state = 165}, + [1783] = {.lex_state = 249, .external_lex_state = 15}, + [1784] = {.lex_state = 249, .external_lex_state = 15}, + [1785] = {.lex_state = 249, .external_lex_state = 15}, + [1786] = {.lex_state = 103}, + [1787] = {.lex_state = 226, .external_lex_state = 16}, + [1788] = {.lex_state = 235, .external_lex_state = 6}, + [1789] = {.lex_state = 226, .external_lex_state = 16}, + [1790] = {.lex_state = 226, .external_lex_state = 16}, + [1791] = {.lex_state = 103}, + [1792] = {.lex_state = 241, .external_lex_state = 2}, + [1793] = {.lex_state = 103}, + [1794] = {.lex_state = 249, .external_lex_state = 2}, + [1795] = {.lex_state = 103}, + [1796] = {.lex_state = 241, .external_lex_state = 2}, + [1797] = {.lex_state = 302, .external_lex_state = 18}, + [1798] = {.lex_state = 103}, + [1799] = {.lex_state = 20}, + [1800] = {.lex_state = 141}, + [1801] = {.lex_state = 302, .external_lex_state = 18}, + [1802] = {.lex_state = 243, .external_lex_state = 23}, + [1803] = {.lex_state = 243, .external_lex_state = 23}, + [1804] = {.lex_state = 243, .external_lex_state = 23}, + [1805] = {.lex_state = 243, .external_lex_state = 23}, + [1806] = {.lex_state = 243, .external_lex_state = 23}, + [1807] = {.lex_state = 289, .external_lex_state = 16}, + [1808] = {.lex_state = 243, .external_lex_state = 23}, + [1809] = {.lex_state = 293}, + [1810] = {.lex_state = 291, .external_lex_state = 16}, + [1811] = {.lex_state = 103}, + [1812] = {.lex_state = 226, .external_lex_state = 16}, + [1813] = {.lex_state = 226, .external_lex_state = 16}, + [1814] = {.lex_state = 226, .external_lex_state = 16}, + [1815] = {.lex_state = 243, .external_lex_state = 23}, + [1816] = {.lex_state = 293}, + [1817] = {.lex_state = 291, .external_lex_state = 16}, + [1818] = {.lex_state = 243, .external_lex_state = 23}, + [1819] = {.lex_state = 293}, + [1820] = {.lex_state = 291, .external_lex_state = 16}, + [1821] = {.lex_state = 243, .external_lex_state = 23}, + [1822] = {.lex_state = 243, .external_lex_state = 23}, + [1823] = {.lex_state = 243, .external_lex_state = 13}, + [1824] = {.lex_state = 243, .external_lex_state = 13}, + [1825] = {.lex_state = 243, .external_lex_state = 13}, + [1826] = {.lex_state = 289, .external_lex_state = 16}, + [1827] = {.lex_state = 243, .external_lex_state = 13}, + [1828] = {.lex_state = 293}, + [1829] = {.lex_state = 291, .external_lex_state = 16}, + [1830] = {.lex_state = 103}, + [1831] = {.lex_state = 226, .external_lex_state = 16}, + [1832] = {.lex_state = 226, .external_lex_state = 16}, + [1833] = {.lex_state = 226, .external_lex_state = 16}, + [1834] = {.lex_state = 243, .external_lex_state = 13}, + [1835] = {.lex_state = 293}, + [1836] = {.lex_state = 291, .external_lex_state = 16}, + [1837] = {.lex_state = 243, .external_lex_state = 13}, + [1838] = {.lex_state = 293}, + [1839] = {.lex_state = 291, .external_lex_state = 16}, + [1840] = {.lex_state = 243, .external_lex_state = 13}, + [1841] = {.lex_state = 243, .external_lex_state = 13}, + [1842] = {.lex_state = 245, .external_lex_state = 17}, + [1843] = {.lex_state = 327, .external_lex_state = 22}, + [1844] = {.lex_state = 327, .external_lex_state = 22}, + [1845] = {.lex_state = 103, .external_lex_state = 16}, [1846] = {.lex_state = 291, .external_lex_state = 16}, - [1847] = {.lex_state = 293}, - [1848] = {.lex_state = 291, .external_lex_state = 16}, - [1849] = {.lex_state = 291, .external_lex_state = 16}, - [1850] = {.lex_state = 245, .external_lex_state = 17}, + [1847] = {.lex_state = 245, .external_lex_state = 17}, + [1848] = {.lex_state = 289, .external_lex_state = 16}, + [1849] = {.lex_state = 245, .external_lex_state = 17}, + [1850] = {.lex_state = 293}, [1851] = {.lex_state = 291, .external_lex_state = 16}, - [1852] = {.lex_state = 331, .external_lex_state = 18}, - [1853] = {.lex_state = 302, .external_lex_state = 17}, - [1854] = {.lex_state = 302, .external_lex_state = 17}, - [1855] = {.lex_state = 141}, - [1856] = {.lex_state = 302, .external_lex_state = 17}, - [1857] = {.lex_state = 302, .external_lex_state = 17}, - [1858] = {.lex_state = 165}, - [1859] = {.lex_state = 302, .external_lex_state = 17}, - [1860] = {.lex_state = 302, .external_lex_state = 17}, + [1852] = {.lex_state = 245, .external_lex_state = 17}, + [1853] = {.lex_state = 293}, + [1854] = {.lex_state = 291, .external_lex_state = 16}, + [1855] = {.lex_state = 293}, + [1856] = {.lex_state = 291, .external_lex_state = 16}, + [1857] = {.lex_state = 291, .external_lex_state = 16}, + [1858] = {.lex_state = 245, .external_lex_state = 17}, + [1859] = {.lex_state = 291, .external_lex_state = 16}, + [1860] = {.lex_state = 331, .external_lex_state = 18}, [1861] = {.lex_state = 302, .external_lex_state = 17}, - [1862] = {.lex_state = 103}, - [1863] = {.lex_state = 226, .external_lex_state = 16}, - [1864] = {.lex_state = 235, .external_lex_state = 6}, - [1865] = {.lex_state = 226, .external_lex_state = 16}, - [1866] = {.lex_state = 226, .external_lex_state = 16}, - [1867] = {.lex_state = 103}, - [1868] = {.lex_state = 241, .external_lex_state = 2}, - [1869] = {.lex_state = 103}, - [1870] = {.lex_state = 249, .external_lex_state = 2}, - [1871] = {.lex_state = 103}, - [1872] = {.lex_state = 241, .external_lex_state = 2}, - [1873] = {.lex_state = 302, .external_lex_state = 18}, - [1874] = {.lex_state = 283, .external_lex_state = 4}, - [1875] = {.lex_state = 258, .external_lex_state = 5}, - [1876] = {.lex_state = 258, .external_lex_state = 5}, - [1877] = {.lex_state = 258, .external_lex_state = 5}, - [1878] = {.lex_state = 289, .external_lex_state = 16}, - [1879] = {.lex_state = 258, .external_lex_state = 5}, - [1880] = {.lex_state = 293}, - [1881] = {.lex_state = 291, .external_lex_state = 16}, - [1882] = {.lex_state = 103}, - [1883] = {.lex_state = 226, .external_lex_state = 16}, - [1884] = {.lex_state = 226, .external_lex_state = 16}, - [1885] = {.lex_state = 226, .external_lex_state = 16}, - [1886] = {.lex_state = 258, .external_lex_state = 5}, - [1887] = {.lex_state = 293}, - [1888] = {.lex_state = 291, .external_lex_state = 16}, - [1889] = {.lex_state = 258, .external_lex_state = 5}, - [1890] = {.lex_state = 293}, - [1891] = {.lex_state = 291, .external_lex_state = 16}, - [1892] = {.lex_state = 258, .external_lex_state = 5}, - [1893] = {.lex_state = 258, .external_lex_state = 5}, - [1894] = {.lex_state = 304, .external_lex_state = 24}, - [1895] = {.lex_state = 304, .external_lex_state = 24}, - [1896] = {.lex_state = 103}, - [1897] = {.lex_state = 226, .external_lex_state = 16}, - [1898] = {.lex_state = 235, .external_lex_state = 6}, - [1899] = {.lex_state = 226, .external_lex_state = 16}, - [1900] = {.lex_state = 226, .external_lex_state = 16}, - [1901] = {.lex_state = 253, .external_lex_state = 7}, + [1862] = {.lex_state = 302, .external_lex_state = 17}, + [1863] = {.lex_state = 141}, + [1864] = {.lex_state = 302, .external_lex_state = 17}, + [1865] = {.lex_state = 302, .external_lex_state = 17}, + [1866] = {.lex_state = 165}, + [1867] = {.lex_state = 302, .external_lex_state = 17}, + [1868] = {.lex_state = 302, .external_lex_state = 17}, + [1869] = {.lex_state = 302, .external_lex_state = 17}, + [1870] = {.lex_state = 103}, + [1871] = {.lex_state = 226, .external_lex_state = 16}, + [1872] = {.lex_state = 235, .external_lex_state = 6}, + [1873] = {.lex_state = 226, .external_lex_state = 16}, + [1874] = {.lex_state = 226, .external_lex_state = 16}, + [1875] = {.lex_state = 103}, + [1876] = {.lex_state = 241, .external_lex_state = 2}, + [1877] = {.lex_state = 103}, + [1878] = {.lex_state = 249, .external_lex_state = 2}, + [1879] = {.lex_state = 103}, + [1880] = {.lex_state = 241, .external_lex_state = 2}, + [1881] = {.lex_state = 302, .external_lex_state = 18}, + [1882] = {.lex_state = 283, .external_lex_state = 4}, + [1883] = {.lex_state = 258, .external_lex_state = 5}, + [1884] = {.lex_state = 258, .external_lex_state = 5}, + [1885] = {.lex_state = 258, .external_lex_state = 5}, + [1886] = {.lex_state = 289, .external_lex_state = 16}, + [1887] = {.lex_state = 258, .external_lex_state = 5}, + [1888] = {.lex_state = 293}, + [1889] = {.lex_state = 291, .external_lex_state = 16}, + [1890] = {.lex_state = 103}, + [1891] = {.lex_state = 226, .external_lex_state = 16}, + [1892] = {.lex_state = 226, .external_lex_state = 16}, + [1893] = {.lex_state = 226, .external_lex_state = 16}, + [1894] = {.lex_state = 258, .external_lex_state = 5}, + [1895] = {.lex_state = 293}, + [1896] = {.lex_state = 291, .external_lex_state = 16}, + [1897] = {.lex_state = 258, .external_lex_state = 5}, + [1898] = {.lex_state = 293}, + [1899] = {.lex_state = 291, .external_lex_state = 16}, + [1900] = {.lex_state = 258, .external_lex_state = 5}, + [1901] = {.lex_state = 258, .external_lex_state = 5}, [1902] = {.lex_state = 304, .external_lex_state = 24}, - [1903] = {.lex_state = 103}, + [1903] = {.lex_state = 304, .external_lex_state = 24}, [1904] = {.lex_state = 103}, - [1905] = {.lex_state = 260, .external_lex_state = 11}, - [1906] = {.lex_state = 327, .external_lex_state = 22}, - [1907] = {.lex_state = 327, .external_lex_state = 22}, - [1908] = {.lex_state = 103, .external_lex_state = 16}, - [1909] = {.lex_state = 291, .external_lex_state = 16}, - [1910] = {.lex_state = 260, .external_lex_state = 11}, - [1911] = {.lex_state = 289, .external_lex_state = 16}, - [1912] = {.lex_state = 260, .external_lex_state = 11}, - [1913] = {.lex_state = 293}, - [1914] = {.lex_state = 291, .external_lex_state = 16}, - [1915] = {.lex_state = 260, .external_lex_state = 11}, - [1916] = {.lex_state = 293}, + [1905] = {.lex_state = 226, .external_lex_state = 16}, + [1906] = {.lex_state = 235, .external_lex_state = 6}, + [1907] = {.lex_state = 226, .external_lex_state = 16}, + [1908] = {.lex_state = 226, .external_lex_state = 16}, + [1909] = {.lex_state = 253, .external_lex_state = 7}, + [1910] = {.lex_state = 304, .external_lex_state = 24}, + [1911] = {.lex_state = 103}, + [1912] = {.lex_state = 103}, + [1913] = {.lex_state = 260, .external_lex_state = 11}, + [1914] = {.lex_state = 327, .external_lex_state = 22}, + [1915] = {.lex_state = 327, .external_lex_state = 22}, + [1916] = {.lex_state = 103, .external_lex_state = 16}, [1917] = {.lex_state = 291, .external_lex_state = 16}, - [1918] = {.lex_state = 293}, - [1919] = {.lex_state = 291, .external_lex_state = 16}, - [1920] = {.lex_state = 291, .external_lex_state = 16}, - [1921] = {.lex_state = 260, .external_lex_state = 11}, + [1918] = {.lex_state = 260, .external_lex_state = 11}, + [1919] = {.lex_state = 289, .external_lex_state = 16}, + [1920] = {.lex_state = 260, .external_lex_state = 11}, + [1921] = {.lex_state = 293}, [1922] = {.lex_state = 291, .external_lex_state = 16}, - [1923] = {.lex_state = 311, .external_lex_state = 13}, - [1924] = {.lex_state = 311, .external_lex_state = 13}, - [1925] = {.lex_state = 311, .external_lex_state = 13}, - [1926] = {.lex_state = 289, .external_lex_state = 16}, - [1927] = {.lex_state = 311, .external_lex_state = 13}, - [1928] = {.lex_state = 293}, - [1929] = {.lex_state = 291, .external_lex_state = 16}, - [1930] = {.lex_state = 103}, - [1931] = {.lex_state = 226, .external_lex_state = 16}, - [1932] = {.lex_state = 226, .external_lex_state = 16}, - [1933] = {.lex_state = 226, .external_lex_state = 16}, - [1934] = {.lex_state = 311, .external_lex_state = 13}, - [1935] = {.lex_state = 293}, - [1936] = {.lex_state = 291, .external_lex_state = 16}, - [1937] = {.lex_state = 311, .external_lex_state = 13}, - [1938] = {.lex_state = 293}, - [1939] = {.lex_state = 291, .external_lex_state = 16}, - [1940] = {.lex_state = 311, .external_lex_state = 13}, - [1941] = {.lex_state = 311, .external_lex_state = 13}, - [1942] = {.lex_state = 182, .external_lex_state = 20}, - [1943] = {.lex_state = 327, .external_lex_state = 22}, - [1944] = {.lex_state = 327, .external_lex_state = 22}, - [1945] = {.lex_state = 103, .external_lex_state = 16}, - [1946] = {.lex_state = 291, .external_lex_state = 16}, - [1947] = {.lex_state = 182, .external_lex_state = 20}, - [1948] = {.lex_state = 289, .external_lex_state = 16}, - [1949] = {.lex_state = 182, .external_lex_state = 20}, - [1950] = {.lex_state = 293}, - [1951] = {.lex_state = 291, .external_lex_state = 16}, - [1952] = {.lex_state = 182, .external_lex_state = 20}, - [1953] = {.lex_state = 293}, + [1923] = {.lex_state = 260, .external_lex_state = 11}, + [1924] = {.lex_state = 293}, + [1925] = {.lex_state = 291, .external_lex_state = 16}, + [1926] = {.lex_state = 293}, + [1927] = {.lex_state = 291, .external_lex_state = 16}, + [1928] = {.lex_state = 291, .external_lex_state = 16}, + [1929] = {.lex_state = 260, .external_lex_state = 11}, + [1930] = {.lex_state = 291, .external_lex_state = 16}, + [1931] = {.lex_state = 311, .external_lex_state = 13}, + [1932] = {.lex_state = 311, .external_lex_state = 13}, + [1933] = {.lex_state = 311, .external_lex_state = 13}, + [1934] = {.lex_state = 289, .external_lex_state = 16}, + [1935] = {.lex_state = 311, .external_lex_state = 13}, + [1936] = {.lex_state = 293}, + [1937] = {.lex_state = 291, .external_lex_state = 16}, + [1938] = {.lex_state = 103}, + [1939] = {.lex_state = 226, .external_lex_state = 16}, + [1940] = {.lex_state = 226, .external_lex_state = 16}, + [1941] = {.lex_state = 226, .external_lex_state = 16}, + [1942] = {.lex_state = 311, .external_lex_state = 13}, + [1943] = {.lex_state = 293}, + [1944] = {.lex_state = 291, .external_lex_state = 16}, + [1945] = {.lex_state = 311, .external_lex_state = 13}, + [1946] = {.lex_state = 293}, + [1947] = {.lex_state = 291, .external_lex_state = 16}, + [1948] = {.lex_state = 311, .external_lex_state = 13}, + [1949] = {.lex_state = 311, .external_lex_state = 13}, + [1950] = {.lex_state = 182, .external_lex_state = 20}, + [1951] = {.lex_state = 327, .external_lex_state = 22}, + [1952] = {.lex_state = 327, .external_lex_state = 22}, + [1953] = {.lex_state = 103, .external_lex_state = 16}, [1954] = {.lex_state = 291, .external_lex_state = 16}, - [1955] = {.lex_state = 293}, - [1956] = {.lex_state = 291, .external_lex_state = 16}, - [1957] = {.lex_state = 291, .external_lex_state = 16}, - [1958] = {.lex_state = 182, .external_lex_state = 20}, + [1955] = {.lex_state = 182, .external_lex_state = 20}, + [1956] = {.lex_state = 289, .external_lex_state = 16}, + [1957] = {.lex_state = 182, .external_lex_state = 20}, + [1958] = {.lex_state = 293}, [1959] = {.lex_state = 291, .external_lex_state = 16}, - [1960] = {.lex_state = 313, .external_lex_state = 10}, - [1961] = {.lex_state = 313, .external_lex_state = 10}, - [1962] = {.lex_state = 313, .external_lex_state = 10}, - [1963] = {.lex_state = 289, .external_lex_state = 16}, - [1964] = {.lex_state = 313, .external_lex_state = 10}, - [1965] = {.lex_state = 293}, - [1966] = {.lex_state = 291, .external_lex_state = 16}, - [1967] = {.lex_state = 103}, - [1968] = {.lex_state = 226, .external_lex_state = 16}, - [1969] = {.lex_state = 226, .external_lex_state = 16}, - [1970] = {.lex_state = 226, .external_lex_state = 16}, - [1971] = {.lex_state = 313, .external_lex_state = 10}, - [1972] = {.lex_state = 293}, - [1973] = {.lex_state = 291, .external_lex_state = 16}, - [1974] = {.lex_state = 313, .external_lex_state = 10}, - [1975] = {.lex_state = 293}, - [1976] = {.lex_state = 291, .external_lex_state = 16}, - [1977] = {.lex_state = 313, .external_lex_state = 10}, - [1978] = {.lex_state = 313, .external_lex_state = 10}, - [1979] = {.lex_state = 262, .external_lex_state = 2}, - [1980] = {.lex_state = 283, .external_lex_state = 4}, - [1981] = {.lex_state = 268, .external_lex_state = 2}, - [1982] = {.lex_state = 315, .external_lex_state = 2}, - [1983] = {.lex_state = 315, .external_lex_state = 2}, - [1984] = {.lex_state = 283, .external_lex_state = 4}, - [1985] = {.lex_state = 103}, - [1986] = {.lex_state = 141}, - [1987] = {.lex_state = 141}, - [1988] = {.lex_state = 339, .external_lex_state = 2}, - [1989] = {.lex_state = 137}, - [1990] = {.lex_state = 333, .external_lex_state = 13}, - [1991] = {.lex_state = 333, .external_lex_state = 13}, - [1992] = {.lex_state = 165}, - [1993] = {.lex_state = 333, .external_lex_state = 13}, - [1994] = {.lex_state = 333, .external_lex_state = 13}, - [1995] = {.lex_state = 333, .external_lex_state = 13}, + [1960] = {.lex_state = 182, .external_lex_state = 20}, + [1961] = {.lex_state = 293}, + [1962] = {.lex_state = 291, .external_lex_state = 16}, + [1963] = {.lex_state = 293}, + [1964] = {.lex_state = 291, .external_lex_state = 16}, + [1965] = {.lex_state = 291, .external_lex_state = 16}, + [1966] = {.lex_state = 182, .external_lex_state = 20}, + [1967] = {.lex_state = 291, .external_lex_state = 16}, + [1968] = {.lex_state = 313, .external_lex_state = 10}, + [1969] = {.lex_state = 313, .external_lex_state = 10}, + [1970] = {.lex_state = 313, .external_lex_state = 10}, + [1971] = {.lex_state = 289, .external_lex_state = 16}, + [1972] = {.lex_state = 313, .external_lex_state = 10}, + [1973] = {.lex_state = 293}, + [1974] = {.lex_state = 291, .external_lex_state = 16}, + [1975] = {.lex_state = 103}, + [1976] = {.lex_state = 226, .external_lex_state = 16}, + [1977] = {.lex_state = 226, .external_lex_state = 16}, + [1978] = {.lex_state = 226, .external_lex_state = 16}, + [1979] = {.lex_state = 313, .external_lex_state = 10}, + [1980] = {.lex_state = 293}, + [1981] = {.lex_state = 291, .external_lex_state = 16}, + [1982] = {.lex_state = 313, .external_lex_state = 10}, + [1983] = {.lex_state = 293}, + [1984] = {.lex_state = 291, .external_lex_state = 16}, + [1985] = {.lex_state = 313, .external_lex_state = 10}, + [1986] = {.lex_state = 313, .external_lex_state = 10}, + [1987] = {.lex_state = 283, .external_lex_state = 4}, + [1988] = {.lex_state = 283, .external_lex_state = 4}, + [1989] = {.lex_state = 268, .external_lex_state = 2}, + [1990] = {.lex_state = 315, .external_lex_state = 2}, + [1991] = {.lex_state = 315, .external_lex_state = 2}, + [1992] = {.lex_state = 283, .external_lex_state = 4}, + [1993] = {.lex_state = 103}, + [1994] = {.lex_state = 141}, + [1995] = {.lex_state = 141}, [1996] = {.lex_state = 339, .external_lex_state = 2}, [1997] = {.lex_state = 137}, - [1998] = {.lex_state = 103}, - [1999] = {.lex_state = 226, .external_lex_state = 16}, - [2000] = {.lex_state = 235, .external_lex_state = 6}, - [2001] = {.lex_state = 226, .external_lex_state = 16}, - [2002] = {.lex_state = 226, .external_lex_state = 16}, - [2003] = {.lex_state = 103}, - [2004] = {.lex_state = 241, .external_lex_state = 2}, - [2005] = {.lex_state = 103}, - [2006] = {.lex_state = 249, .external_lex_state = 2}, - [2007] = {.lex_state = 103}, - [2008] = {.lex_state = 241, .external_lex_state = 2}, - [2009] = {.lex_state = 283, .external_lex_state = 4}, - [2010] = {.lex_state = 103}, - [2011] = {.lex_state = 141}, - [2012] = {.lex_state = 283, .external_lex_state = 4}, - [2013] = {.lex_state = 141}, - [2014] = {.lex_state = 283, .external_lex_state = 4}, + [1998] = {.lex_state = 333, .external_lex_state = 13}, + [1999] = {.lex_state = 333, .external_lex_state = 13}, + [2000] = {.lex_state = 165}, + [2001] = {.lex_state = 333, .external_lex_state = 13}, + [2002] = {.lex_state = 333, .external_lex_state = 13}, + [2003] = {.lex_state = 333, .external_lex_state = 13}, + [2004] = {.lex_state = 339, .external_lex_state = 2}, + [2005] = {.lex_state = 137}, + [2006] = {.lex_state = 103}, + [2007] = {.lex_state = 226, .external_lex_state = 16}, + [2008] = {.lex_state = 235, .external_lex_state = 6}, + [2009] = {.lex_state = 226, .external_lex_state = 16}, + [2010] = {.lex_state = 226, .external_lex_state = 16}, + [2011] = {.lex_state = 103}, + [2012] = {.lex_state = 241, .external_lex_state = 2}, + [2013] = {.lex_state = 103}, + [2014] = {.lex_state = 249, .external_lex_state = 2}, [2015] = {.lex_state = 103}, - [2016] = {.lex_state = 283, .external_lex_state = 4}, - [2017] = {.lex_state = 141}, - [2018] = {.lex_state = 190, .external_lex_state = 10}, - [2019] = {.lex_state = 190, .external_lex_state = 10}, - [2020] = {.lex_state = 190, .external_lex_state = 10}, - [2021] = {.lex_state = 291, .external_lex_state = 16}, - [2022] = {.lex_state = 327, .external_lex_state = 22}, - [2023] = {.lex_state = 327, .external_lex_state = 22}, - [2024] = {.lex_state = 103, .external_lex_state = 16}, - [2025] = {.lex_state = 291, .external_lex_state = 16}, + [2016] = {.lex_state = 241, .external_lex_state = 2}, + [2017] = {.lex_state = 283, .external_lex_state = 4}, + [2018] = {.lex_state = 103}, + [2019] = {.lex_state = 141}, + [2020] = {.lex_state = 283, .external_lex_state = 4}, + [2021] = {.lex_state = 141}, + [2022] = {.lex_state = 283, .external_lex_state = 4}, + [2023] = {.lex_state = 103}, + [2024] = {.lex_state = 283, .external_lex_state = 4}, + [2025] = {.lex_state = 141}, [2026] = {.lex_state = 190, .external_lex_state = 10}, - [2027] = {.lex_state = 291, .external_lex_state = 16}, + [2027] = {.lex_state = 190, .external_lex_state = 10}, [2028] = {.lex_state = 190, .external_lex_state = 10}, [2029] = {.lex_state = 291, .external_lex_state = 16}, - [2030] = {.lex_state = 190, .external_lex_state = 10}, - [2031] = {.lex_state = 291, .external_lex_state = 16}, - [2032] = {.lex_state = 190, .external_lex_state = 10}, + [2030] = {.lex_state = 327, .external_lex_state = 22}, + [2031] = {.lex_state = 327, .external_lex_state = 22}, + [2032] = {.lex_state = 103, .external_lex_state = 16}, [2033] = {.lex_state = 291, .external_lex_state = 16}, - [2034] = {.lex_state = 283, .external_lex_state = 4}, - [2035] = {.lex_state = 335, .external_lex_state = 10}, - [2036] = {.lex_state = 335, .external_lex_state = 10}, - [2037] = {.lex_state = 283, .external_lex_state = 4}, - [2038] = {.lex_state = 141}, - [2039] = {.lex_state = 335, .external_lex_state = 10}, - [2040] = {.lex_state = 335, .external_lex_state = 10}, - [2041] = {.lex_state = 165}, - [2042] = {.lex_state = 335, .external_lex_state = 10}, + [2034] = {.lex_state = 190, .external_lex_state = 10}, + [2035] = {.lex_state = 291, .external_lex_state = 16}, + [2036] = {.lex_state = 190, .external_lex_state = 10}, + [2037] = {.lex_state = 291, .external_lex_state = 16}, + [2038] = {.lex_state = 190, .external_lex_state = 10}, + [2039] = {.lex_state = 291, .external_lex_state = 16}, + [2040] = {.lex_state = 190, .external_lex_state = 10}, + [2041] = {.lex_state = 291, .external_lex_state = 16}, + [2042] = {.lex_state = 283, .external_lex_state = 4}, [2043] = {.lex_state = 335, .external_lex_state = 10}, [2044] = {.lex_state = 335, .external_lex_state = 10}, - [2045] = {.lex_state = 103}, - [2046] = {.lex_state = 226, .external_lex_state = 16}, - [2047] = {.lex_state = 235, .external_lex_state = 6}, - [2048] = {.lex_state = 226, .external_lex_state = 16}, - [2049] = {.lex_state = 226, .external_lex_state = 16}, - [2050] = {.lex_state = 103}, - [2051] = {.lex_state = 241, .external_lex_state = 2}, - [2052] = {.lex_state = 103}, - [2053] = {.lex_state = 249, .external_lex_state = 2}, - [2054] = {.lex_state = 103}, - [2055] = {.lex_state = 241, .external_lex_state = 2}, - [2056] = {.lex_state = 188, .external_lex_state = 20}, - [2057] = {.lex_state = 188, .external_lex_state = 20}, - [2058] = {.lex_state = 188, .external_lex_state = 20}, - [2059] = {.lex_state = 289, .external_lex_state = 16}, - [2060] = {.lex_state = 188, .external_lex_state = 20}, - [2061] = {.lex_state = 293}, - [2062] = {.lex_state = 291, .external_lex_state = 16}, - [2063] = {.lex_state = 103}, - [2064] = {.lex_state = 226, .external_lex_state = 16}, - [2065] = {.lex_state = 226, .external_lex_state = 16}, - [2066] = {.lex_state = 226, .external_lex_state = 16}, - [2067] = {.lex_state = 188, .external_lex_state = 20}, - [2068] = {.lex_state = 293}, - [2069] = {.lex_state = 291, .external_lex_state = 16}, - [2070] = {.lex_state = 188, .external_lex_state = 20}, - [2071] = {.lex_state = 293}, - [2072] = {.lex_state = 291, .external_lex_state = 16}, - [2073] = {.lex_state = 188, .external_lex_state = 20}, - [2074] = {.lex_state = 188, .external_lex_state = 20}, - [2075] = {.lex_state = 325, .external_lex_state = 7}, - [2076] = {.lex_state = 141}, - [2077] = {.lex_state = 342, .external_lex_state = 10}, - [2078] = {.lex_state = 165}, - [2079] = {.lex_state = 170}, - [2080] = {.lex_state = 342, .external_lex_state = 10}, - [2081] = {.lex_state = 175, .external_lex_state = 6}, - [2082] = {.lex_state = 20, .external_lex_state = 2}, - [2083] = {.lex_state = 20, .external_lex_state = 2}, - [2084] = {.lex_state = 20, .external_lex_state = 2}, - [2085] = {.lex_state = 193, .external_lex_state = 14}, - [2086] = {.lex_state = 327, .external_lex_state = 22}, - [2087] = {.lex_state = 327, .external_lex_state = 22}, - [2088] = {.lex_state = 103, .external_lex_state = 16}, - [2089] = {.lex_state = 291, .external_lex_state = 16}, - [2090] = {.lex_state = 193, .external_lex_state = 14}, - [2091] = {.lex_state = 289, .external_lex_state = 16}, - [2092] = {.lex_state = 193, .external_lex_state = 14}, - [2093] = {.lex_state = 293}, - [2094] = {.lex_state = 291, .external_lex_state = 16}, - [2095] = {.lex_state = 193, .external_lex_state = 14}, - [2096] = {.lex_state = 293}, + [2045] = {.lex_state = 283, .external_lex_state = 4}, + [2046] = {.lex_state = 141}, + [2047] = {.lex_state = 335, .external_lex_state = 10}, + [2048] = {.lex_state = 335, .external_lex_state = 10}, + [2049] = {.lex_state = 165}, + [2050] = {.lex_state = 335, .external_lex_state = 10}, + [2051] = {.lex_state = 335, .external_lex_state = 10}, + [2052] = {.lex_state = 335, .external_lex_state = 10}, + [2053] = {.lex_state = 103}, + [2054] = {.lex_state = 226, .external_lex_state = 16}, + [2055] = {.lex_state = 235, .external_lex_state = 6}, + [2056] = {.lex_state = 226, .external_lex_state = 16}, + [2057] = {.lex_state = 226, .external_lex_state = 16}, + [2058] = {.lex_state = 103}, + [2059] = {.lex_state = 241, .external_lex_state = 2}, + [2060] = {.lex_state = 103}, + [2061] = {.lex_state = 249, .external_lex_state = 2}, + [2062] = {.lex_state = 103}, + [2063] = {.lex_state = 241, .external_lex_state = 2}, + [2064] = {.lex_state = 188, .external_lex_state = 20}, + [2065] = {.lex_state = 188, .external_lex_state = 20}, + [2066] = {.lex_state = 188, .external_lex_state = 20}, + [2067] = {.lex_state = 289, .external_lex_state = 16}, + [2068] = {.lex_state = 188, .external_lex_state = 20}, + [2069] = {.lex_state = 293}, + [2070] = {.lex_state = 291, .external_lex_state = 16}, + [2071] = {.lex_state = 103}, + [2072] = {.lex_state = 226, .external_lex_state = 16}, + [2073] = {.lex_state = 226, .external_lex_state = 16}, + [2074] = {.lex_state = 226, .external_lex_state = 16}, + [2075] = {.lex_state = 188, .external_lex_state = 20}, + [2076] = {.lex_state = 293}, + [2077] = {.lex_state = 291, .external_lex_state = 16}, + [2078] = {.lex_state = 188, .external_lex_state = 20}, + [2079] = {.lex_state = 293}, + [2080] = {.lex_state = 291, .external_lex_state = 16}, + [2081] = {.lex_state = 188, .external_lex_state = 20}, + [2082] = {.lex_state = 188, .external_lex_state = 20}, + [2083] = {.lex_state = 325, .external_lex_state = 7}, + [2084] = {.lex_state = 141}, + [2085] = {.lex_state = 342, .external_lex_state = 10}, + [2086] = {.lex_state = 165}, + [2087] = {.lex_state = 170}, + [2088] = {.lex_state = 342, .external_lex_state = 10}, + [2089] = {.lex_state = 175, .external_lex_state = 6}, + [2090] = {.lex_state = 20, .external_lex_state = 2}, + [2091] = {.lex_state = 20, .external_lex_state = 2}, + [2092] = {.lex_state = 20, .external_lex_state = 2}, + [2093] = {.lex_state = 193, .external_lex_state = 14}, + [2094] = {.lex_state = 327, .external_lex_state = 22}, + [2095] = {.lex_state = 327, .external_lex_state = 22}, + [2096] = {.lex_state = 103, .external_lex_state = 16}, [2097] = {.lex_state = 291, .external_lex_state = 16}, - [2098] = {.lex_state = 293}, - [2099] = {.lex_state = 291, .external_lex_state = 16}, - [2100] = {.lex_state = 291, .external_lex_state = 16}, - [2101] = {.lex_state = 193, .external_lex_state = 14}, + [2098] = {.lex_state = 193, .external_lex_state = 14}, + [2099] = {.lex_state = 289, .external_lex_state = 16}, + [2100] = {.lex_state = 193, .external_lex_state = 14}, + [2101] = {.lex_state = 293}, [2102] = {.lex_state = 291, .external_lex_state = 16}, - [2103] = {.lex_state = 193, .external_lex_state = 10}, - [2104] = {.lex_state = 327, .external_lex_state = 22}, - [2105] = {.lex_state = 327, .external_lex_state = 22}, - [2106] = {.lex_state = 103, .external_lex_state = 16}, + [2103] = {.lex_state = 193, .external_lex_state = 14}, + [2104] = {.lex_state = 293}, + [2105] = {.lex_state = 291, .external_lex_state = 16}, + [2106] = {.lex_state = 293}, [2107] = {.lex_state = 291, .external_lex_state = 16}, - [2108] = {.lex_state = 193, .external_lex_state = 10}, - [2109] = {.lex_state = 289, .external_lex_state = 16}, - [2110] = {.lex_state = 193, .external_lex_state = 10}, - [2111] = {.lex_state = 293}, - [2112] = {.lex_state = 291, .external_lex_state = 16}, - [2113] = {.lex_state = 193, .external_lex_state = 10}, - [2114] = {.lex_state = 293}, + [2108] = {.lex_state = 291, .external_lex_state = 16}, + [2109] = {.lex_state = 193, .external_lex_state = 14}, + [2110] = {.lex_state = 291, .external_lex_state = 16}, + [2111] = {.lex_state = 193, .external_lex_state = 10}, + [2112] = {.lex_state = 327, .external_lex_state = 22}, + [2113] = {.lex_state = 327, .external_lex_state = 22}, + [2114] = {.lex_state = 103, .external_lex_state = 16}, [2115] = {.lex_state = 291, .external_lex_state = 16}, - [2116] = {.lex_state = 293}, - [2117] = {.lex_state = 291, .external_lex_state = 16}, - [2118] = {.lex_state = 291, .external_lex_state = 16}, - [2119] = {.lex_state = 193, .external_lex_state = 10}, + [2116] = {.lex_state = 193, .external_lex_state = 10}, + [2117] = {.lex_state = 289, .external_lex_state = 16}, + [2118] = {.lex_state = 193, .external_lex_state = 10}, + [2119] = {.lex_state = 293}, [2120] = {.lex_state = 291, .external_lex_state = 16}, - [2121] = {.lex_state = 184, .external_lex_state = 5}, - [2122] = {.lex_state = 184, .external_lex_state = 5}, - [2123] = {.lex_state = 184, .external_lex_state = 5}, - [2124] = {.lex_state = 291, .external_lex_state = 16}, - [2125] = {.lex_state = 327, .external_lex_state = 22}, - [2126] = {.lex_state = 327, .external_lex_state = 22}, - [2127] = {.lex_state = 103, .external_lex_state = 16}, + [2121] = {.lex_state = 193, .external_lex_state = 10}, + [2122] = {.lex_state = 293}, + [2123] = {.lex_state = 291, .external_lex_state = 16}, + [2124] = {.lex_state = 293}, + [2125] = {.lex_state = 291, .external_lex_state = 16}, + [2126] = {.lex_state = 291, .external_lex_state = 16}, + [2127] = {.lex_state = 193, .external_lex_state = 10}, [2128] = {.lex_state = 291, .external_lex_state = 16}, [2129] = {.lex_state = 184, .external_lex_state = 5}, - [2130] = {.lex_state = 291, .external_lex_state = 16}, + [2130] = {.lex_state = 184, .external_lex_state = 5}, [2131] = {.lex_state = 184, .external_lex_state = 5}, [2132] = {.lex_state = 291, .external_lex_state = 16}, - [2133] = {.lex_state = 184, .external_lex_state = 5}, - [2134] = {.lex_state = 291, .external_lex_state = 16}, - [2135] = {.lex_state = 184, .external_lex_state = 5}, + [2133] = {.lex_state = 327, .external_lex_state = 22}, + [2134] = {.lex_state = 327, .external_lex_state = 22}, + [2135] = {.lex_state = 103, .external_lex_state = 16}, [2136] = {.lex_state = 291, .external_lex_state = 16}, - [2137] = {.lex_state = 287, .external_lex_state = 5}, - [2138] = {.lex_state = 287, .external_lex_state = 5}, - [2139] = {.lex_state = 287, .external_lex_state = 5}, - [2140] = {.lex_state = 289, .external_lex_state = 16}, - [2141] = {.lex_state = 287, .external_lex_state = 5}, - [2142] = {.lex_state = 293}, - [2143] = {.lex_state = 291, .external_lex_state = 16}, - [2144] = {.lex_state = 103}, - [2145] = {.lex_state = 226, .external_lex_state = 16}, - [2146] = {.lex_state = 226, .external_lex_state = 16}, - [2147] = {.lex_state = 226, .external_lex_state = 16}, - [2148] = {.lex_state = 287, .external_lex_state = 5}, - [2149] = {.lex_state = 293}, - [2150] = {.lex_state = 291, .external_lex_state = 16}, - [2151] = {.lex_state = 287, .external_lex_state = 5}, - [2152] = {.lex_state = 293}, - [2153] = {.lex_state = 291, .external_lex_state = 16}, - [2154] = {.lex_state = 287, .external_lex_state = 5}, - [2155] = {.lex_state = 287, .external_lex_state = 5}, - [2156] = {.lex_state = 217, .external_lex_state = 11}, - [2157] = {.lex_state = 217, .external_lex_state = 11}, - [2158] = {.lex_state = 217, .external_lex_state = 11}, - [2159] = {.lex_state = 291, .external_lex_state = 16}, - [2160] = {.lex_state = 327, .external_lex_state = 22}, - [2161] = {.lex_state = 327, .external_lex_state = 22}, - [2162] = {.lex_state = 103, .external_lex_state = 16}, - [2163] = {.lex_state = 291, .external_lex_state = 16}, + [2137] = {.lex_state = 184, .external_lex_state = 5}, + [2138] = {.lex_state = 291, .external_lex_state = 16}, + [2139] = {.lex_state = 184, .external_lex_state = 5}, + [2140] = {.lex_state = 291, .external_lex_state = 16}, + [2141] = {.lex_state = 184, .external_lex_state = 5}, + [2142] = {.lex_state = 291, .external_lex_state = 16}, + [2143] = {.lex_state = 184, .external_lex_state = 5}, + [2144] = {.lex_state = 291, .external_lex_state = 16}, + [2145] = {.lex_state = 287, .external_lex_state = 5}, + [2146] = {.lex_state = 287, .external_lex_state = 5}, + [2147] = {.lex_state = 287, .external_lex_state = 5}, + [2148] = {.lex_state = 289, .external_lex_state = 16}, + [2149] = {.lex_state = 287, .external_lex_state = 5}, + [2150] = {.lex_state = 293}, + [2151] = {.lex_state = 291, .external_lex_state = 16}, + [2152] = {.lex_state = 103}, + [2153] = {.lex_state = 226, .external_lex_state = 16}, + [2154] = {.lex_state = 226, .external_lex_state = 16}, + [2155] = {.lex_state = 226, .external_lex_state = 16}, + [2156] = {.lex_state = 287, .external_lex_state = 5}, + [2157] = {.lex_state = 293}, + [2158] = {.lex_state = 291, .external_lex_state = 16}, + [2159] = {.lex_state = 287, .external_lex_state = 5}, + [2160] = {.lex_state = 293}, + [2161] = {.lex_state = 291, .external_lex_state = 16}, + [2162] = {.lex_state = 287, .external_lex_state = 5}, + [2163] = {.lex_state = 287, .external_lex_state = 5}, [2164] = {.lex_state = 217, .external_lex_state = 11}, - [2165] = {.lex_state = 291, .external_lex_state = 16}, + [2165] = {.lex_state = 217, .external_lex_state = 11}, [2166] = {.lex_state = 217, .external_lex_state = 11}, [2167] = {.lex_state = 291, .external_lex_state = 16}, - [2168] = {.lex_state = 217, .external_lex_state = 11}, - [2169] = {.lex_state = 291, .external_lex_state = 16}, - [2170] = {.lex_state = 217, .external_lex_state = 11}, + [2168] = {.lex_state = 327, .external_lex_state = 22}, + [2169] = {.lex_state = 327, .external_lex_state = 22}, + [2170] = {.lex_state = 103, .external_lex_state = 16}, [2171] = {.lex_state = 291, .external_lex_state = 16}, - [2172] = {.lex_state = 219, .external_lex_state = 13}, - [2173] = {.lex_state = 219, .external_lex_state = 13}, - [2174] = {.lex_state = 219, .external_lex_state = 13}, + [2172] = {.lex_state = 217, .external_lex_state = 11}, + [2173] = {.lex_state = 291, .external_lex_state = 16}, + [2174] = {.lex_state = 217, .external_lex_state = 11}, [2175] = {.lex_state = 291, .external_lex_state = 16}, - [2176] = {.lex_state = 327, .external_lex_state = 22}, - [2177] = {.lex_state = 327, .external_lex_state = 22}, - [2178] = {.lex_state = 103, .external_lex_state = 16}, + [2176] = {.lex_state = 217, .external_lex_state = 11}, + [2177] = {.lex_state = 291, .external_lex_state = 16}, + [2178] = {.lex_state = 217, .external_lex_state = 11}, [2179] = {.lex_state = 291, .external_lex_state = 16}, [2180] = {.lex_state = 219, .external_lex_state = 13}, - [2181] = {.lex_state = 291, .external_lex_state = 16}, + [2181] = {.lex_state = 219, .external_lex_state = 13}, [2182] = {.lex_state = 219, .external_lex_state = 13}, [2183] = {.lex_state = 291, .external_lex_state = 16}, - [2184] = {.lex_state = 219, .external_lex_state = 13}, - [2185] = {.lex_state = 291, .external_lex_state = 16}, - [2186] = {.lex_state = 219, .external_lex_state = 13}, + [2184] = {.lex_state = 327, .external_lex_state = 22}, + [2185] = {.lex_state = 327, .external_lex_state = 22}, + [2186] = {.lex_state = 103, .external_lex_state = 16}, [2187] = {.lex_state = 291, .external_lex_state = 16}, - [2188] = {.lex_state = 193, .external_lex_state = 3}, - [2189] = {.lex_state = 153, .external_lex_state = 14}, - [2190] = {.lex_state = 153, .external_lex_state = 14}, - [2191] = {.lex_state = 153, .external_lex_state = 14}, - [2192] = {.lex_state = 291, .external_lex_state = 16}, - [2193] = {.lex_state = 327, .external_lex_state = 22}, - [2194] = {.lex_state = 327, .external_lex_state = 22}, - [2195] = {.lex_state = 103, .external_lex_state = 16}, - [2196] = {.lex_state = 291, .external_lex_state = 16}, + [2188] = {.lex_state = 219, .external_lex_state = 13}, + [2189] = {.lex_state = 291, .external_lex_state = 16}, + [2190] = {.lex_state = 219, .external_lex_state = 13}, + [2191] = {.lex_state = 291, .external_lex_state = 16}, + [2192] = {.lex_state = 219, .external_lex_state = 13}, + [2193] = {.lex_state = 291, .external_lex_state = 16}, + [2194] = {.lex_state = 219, .external_lex_state = 13}, + [2195] = {.lex_state = 291, .external_lex_state = 16}, + [2196] = {.lex_state = 193, .external_lex_state = 3}, [2197] = {.lex_state = 153, .external_lex_state = 14}, - [2198] = {.lex_state = 291, .external_lex_state = 16}, + [2198] = {.lex_state = 153, .external_lex_state = 14}, [2199] = {.lex_state = 153, .external_lex_state = 14}, [2200] = {.lex_state = 291, .external_lex_state = 16}, - [2201] = {.lex_state = 153, .external_lex_state = 14}, - [2202] = {.lex_state = 291, .external_lex_state = 16}, - [2203] = {.lex_state = 153, .external_lex_state = 14}, + [2201] = {.lex_state = 327, .external_lex_state = 22}, + [2202] = {.lex_state = 327, .external_lex_state = 22}, + [2203] = {.lex_state = 103, .external_lex_state = 16}, [2204] = {.lex_state = 291, .external_lex_state = 16}, - [2205] = {.lex_state = 153, .external_lex_state = 10}, - [2206] = {.lex_state = 153, .external_lex_state = 10}, - [2207] = {.lex_state = 153, .external_lex_state = 10}, + [2205] = {.lex_state = 153, .external_lex_state = 14}, + [2206] = {.lex_state = 291, .external_lex_state = 16}, + [2207] = {.lex_state = 153, .external_lex_state = 14}, [2208] = {.lex_state = 291, .external_lex_state = 16}, - [2209] = {.lex_state = 327, .external_lex_state = 22}, - [2210] = {.lex_state = 327, .external_lex_state = 22}, - [2211] = {.lex_state = 103, .external_lex_state = 16}, + [2209] = {.lex_state = 153, .external_lex_state = 14}, + [2210] = {.lex_state = 291, .external_lex_state = 16}, + [2211] = {.lex_state = 153, .external_lex_state = 14}, [2212] = {.lex_state = 291, .external_lex_state = 16}, [2213] = {.lex_state = 153, .external_lex_state = 10}, - [2214] = {.lex_state = 291, .external_lex_state = 16}, + [2214] = {.lex_state = 153, .external_lex_state = 10}, [2215] = {.lex_state = 153, .external_lex_state = 10}, [2216] = {.lex_state = 291, .external_lex_state = 16}, - [2217] = {.lex_state = 153, .external_lex_state = 10}, - [2218] = {.lex_state = 291, .external_lex_state = 16}, - [2219] = {.lex_state = 153, .external_lex_state = 10}, + [2217] = {.lex_state = 327, .external_lex_state = 22}, + [2218] = {.lex_state = 327, .external_lex_state = 22}, + [2219] = {.lex_state = 103, .external_lex_state = 16}, [2220] = {.lex_state = 291, .external_lex_state = 16}, - [2221] = {.lex_state = 141, .external_lex_state = 15}, - [2222] = {.lex_state = 141, .external_lex_state = 15}, - [2223] = {.lex_state = 141, .external_lex_state = 15}, + [2221] = {.lex_state = 153, .external_lex_state = 10}, + [2222] = {.lex_state = 291, .external_lex_state = 16}, + [2223] = {.lex_state = 153, .external_lex_state = 10}, [2224] = {.lex_state = 291, .external_lex_state = 16}, - [2225] = {.lex_state = 327, .external_lex_state = 22}, - [2226] = {.lex_state = 327, .external_lex_state = 22}, - [2227] = {.lex_state = 103, .external_lex_state = 16}, + [2225] = {.lex_state = 153, .external_lex_state = 10}, + [2226] = {.lex_state = 291, .external_lex_state = 16}, + [2227] = {.lex_state = 153, .external_lex_state = 10}, [2228] = {.lex_state = 291, .external_lex_state = 16}, [2229] = {.lex_state = 141, .external_lex_state = 15}, - [2230] = {.lex_state = 291, .external_lex_state = 16}, + [2230] = {.lex_state = 141, .external_lex_state = 15}, [2231] = {.lex_state = 141, .external_lex_state = 15}, [2232] = {.lex_state = 291, .external_lex_state = 16}, - [2233] = {.lex_state = 141, .external_lex_state = 15}, - [2234] = {.lex_state = 291, .external_lex_state = 16}, - [2235] = {.lex_state = 141, .external_lex_state = 15}, + [2233] = {.lex_state = 327, .external_lex_state = 22}, + [2234] = {.lex_state = 327, .external_lex_state = 22}, + [2235] = {.lex_state = 103, .external_lex_state = 16}, [2236] = {.lex_state = 291, .external_lex_state = 16}, - [2237] = {.lex_state = 165, .external_lex_state = 13}, - [2238] = {.lex_state = 165, .external_lex_state = 13}, - [2239] = {.lex_state = 165, .external_lex_state = 13}, + [2237] = {.lex_state = 141, .external_lex_state = 15}, + [2238] = {.lex_state = 291, .external_lex_state = 16}, + [2239] = {.lex_state = 141, .external_lex_state = 15}, [2240] = {.lex_state = 291, .external_lex_state = 16}, - [2241] = {.lex_state = 327, .external_lex_state = 22}, - [2242] = {.lex_state = 327, .external_lex_state = 22}, - [2243] = {.lex_state = 103, .external_lex_state = 16}, + [2241] = {.lex_state = 141, .external_lex_state = 15}, + [2242] = {.lex_state = 291, .external_lex_state = 16}, + [2243] = {.lex_state = 141, .external_lex_state = 15}, [2244] = {.lex_state = 291, .external_lex_state = 16}, [2245] = {.lex_state = 165, .external_lex_state = 13}, - [2246] = {.lex_state = 291, .external_lex_state = 16}, + [2246] = {.lex_state = 165, .external_lex_state = 13}, [2247] = {.lex_state = 165, .external_lex_state = 13}, [2248] = {.lex_state = 291, .external_lex_state = 16}, - [2249] = {.lex_state = 165, .external_lex_state = 13}, - [2250] = {.lex_state = 291, .external_lex_state = 16}, - [2251] = {.lex_state = 165, .external_lex_state = 13}, + [2249] = {.lex_state = 327, .external_lex_state = 22}, + [2250] = {.lex_state = 327, .external_lex_state = 22}, + [2251] = {.lex_state = 103, .external_lex_state = 16}, [2252] = {.lex_state = 291, .external_lex_state = 16}, - [2253] = {.lex_state = 226, .external_lex_state = 22}, - [2254] = {.lex_state = 226, .external_lex_state = 16}, - [2255] = {.lex_state = 226, .external_lex_state = 22}, - [2256] = {.lex_state = 226, .external_lex_state = 16}, - [2257] = {.lex_state = 327, .external_lex_state = 22}, - [2258] = {.lex_state = 327, .external_lex_state = 22}, - [2259] = {.lex_state = 327, .external_lex_state = 22}, - [2260] = {.lex_state = 289, .external_lex_state = 16}, - [2261] = {.lex_state = 327, .external_lex_state = 22}, - [2262] = {.lex_state = 293}, - [2263] = {.lex_state = 291, .external_lex_state = 16}, - [2264] = {.lex_state = 103}, - [2265] = {.lex_state = 226, .external_lex_state = 16}, - [2266] = {.lex_state = 226, .external_lex_state = 16}, - [2267] = {.lex_state = 226, .external_lex_state = 16}, - [2268] = {.lex_state = 327, .external_lex_state = 22}, - [2269] = {.lex_state = 293}, - [2270] = {.lex_state = 291, .external_lex_state = 16}, - [2271] = {.lex_state = 327, .external_lex_state = 22}, - [2272] = {.lex_state = 293}, - [2273] = {.lex_state = 291, .external_lex_state = 16}, - [2274] = {.lex_state = 327, .external_lex_state = 22}, - [2275] = {.lex_state = 327, .external_lex_state = 22}, - [2276] = {.lex_state = 291, .external_lex_state = 22}, - [2277] = {.lex_state = 327, .external_lex_state = 22}, - [2278] = {.lex_state = 327, .external_lex_state = 22}, - [2279] = {.lex_state = 103, .external_lex_state = 16}, - [2280] = {.lex_state = 291, .external_lex_state = 16}, - [2281] = {.lex_state = 291, .external_lex_state = 22}, - [2282] = {.lex_state = 289, .external_lex_state = 16}, - [2283] = {.lex_state = 291, .external_lex_state = 22}, - [2284] = {.lex_state = 293}, - [2285] = {.lex_state = 291, .external_lex_state = 16}, - [2286] = {.lex_state = 291, .external_lex_state = 22}, - [2287] = {.lex_state = 293}, + [2253] = {.lex_state = 165, .external_lex_state = 13}, + [2254] = {.lex_state = 291, .external_lex_state = 16}, + [2255] = {.lex_state = 165, .external_lex_state = 13}, + [2256] = {.lex_state = 291, .external_lex_state = 16}, + [2257] = {.lex_state = 165, .external_lex_state = 13}, + [2258] = {.lex_state = 291, .external_lex_state = 16}, + [2259] = {.lex_state = 165, .external_lex_state = 13}, + [2260] = {.lex_state = 291, .external_lex_state = 16}, + [2261] = {.lex_state = 226, .external_lex_state = 22}, + [2262] = {.lex_state = 226, .external_lex_state = 16}, + [2263] = {.lex_state = 226, .external_lex_state = 22}, + [2264] = {.lex_state = 226, .external_lex_state = 16}, + [2265] = {.lex_state = 327, .external_lex_state = 22}, + [2266] = {.lex_state = 327, .external_lex_state = 22}, + [2267] = {.lex_state = 327, .external_lex_state = 22}, + [2268] = {.lex_state = 289, .external_lex_state = 16}, + [2269] = {.lex_state = 327, .external_lex_state = 22}, + [2270] = {.lex_state = 293}, + [2271] = {.lex_state = 291, .external_lex_state = 16}, + [2272] = {.lex_state = 103}, + [2273] = {.lex_state = 226, .external_lex_state = 16}, + [2274] = {.lex_state = 226, .external_lex_state = 16}, + [2275] = {.lex_state = 226, .external_lex_state = 16}, + [2276] = {.lex_state = 327, .external_lex_state = 22}, + [2277] = {.lex_state = 293}, + [2278] = {.lex_state = 291, .external_lex_state = 16}, + [2279] = {.lex_state = 327, .external_lex_state = 22}, + [2280] = {.lex_state = 293}, + [2281] = {.lex_state = 291, .external_lex_state = 16}, + [2282] = {.lex_state = 327, .external_lex_state = 22}, + [2283] = {.lex_state = 327, .external_lex_state = 22}, + [2284] = {.lex_state = 291, .external_lex_state = 22}, + [2285] = {.lex_state = 327, .external_lex_state = 22}, + [2286] = {.lex_state = 327, .external_lex_state = 22}, + [2287] = {.lex_state = 103, .external_lex_state = 16}, [2288] = {.lex_state = 291, .external_lex_state = 16}, - [2289] = {.lex_state = 293}, - [2290] = {.lex_state = 291, .external_lex_state = 16}, - [2291] = {.lex_state = 291, .external_lex_state = 16}, - [2292] = {.lex_state = 291, .external_lex_state = 22}, + [2289] = {.lex_state = 291, .external_lex_state = 22}, + [2290] = {.lex_state = 289, .external_lex_state = 16}, + [2291] = {.lex_state = 291, .external_lex_state = 22}, + [2292] = {.lex_state = 293}, [2293] = {.lex_state = 291, .external_lex_state = 16}, - [2294] = {.lex_state = 162, .external_lex_state = 5}, - [2295] = {.lex_state = 162, .external_lex_state = 5}, - [2296] = {.lex_state = 162, .external_lex_state = 5}, - [2297] = {.lex_state = 162, .external_lex_state = 5}, + [2294] = {.lex_state = 291, .external_lex_state = 22}, + [2295] = {.lex_state = 293}, + [2296] = {.lex_state = 291, .external_lex_state = 16}, + [2297] = {.lex_state = 293}, [2298] = {.lex_state = 291, .external_lex_state = 16}, - [2299] = {.lex_state = 162, .external_lex_state = 5}, - [2300] = {.lex_state = 291, .external_lex_state = 16}, - [2301] = {.lex_state = 162, .external_lex_state = 5}, - [2302] = {.lex_state = 291, .external_lex_state = 16}, + [2299] = {.lex_state = 291, .external_lex_state = 16}, + [2300] = {.lex_state = 291, .external_lex_state = 22}, + [2301] = {.lex_state = 291, .external_lex_state = 16}, + [2302] = {.lex_state = 162, .external_lex_state = 5}, [2303] = {.lex_state = 162, .external_lex_state = 5}, [2304] = {.lex_state = 162, .external_lex_state = 5}, - [2305] = {.lex_state = 241, .external_lex_state = 2}, - [2306] = {.lex_state = 241, .external_lex_state = 15}, - [2307] = {.lex_state = 241, .external_lex_state = 15}, - [2308] = {.lex_state = 241, .external_lex_state = 15}, - [2309] = {.lex_state = 289, .external_lex_state = 16}, - [2310] = {.lex_state = 241, .external_lex_state = 15}, - [2311] = {.lex_state = 293}, - [2312] = {.lex_state = 291, .external_lex_state = 16}, - [2313] = {.lex_state = 103}, - [2314] = {.lex_state = 226, .external_lex_state = 16}, - [2315] = {.lex_state = 226, .external_lex_state = 16}, - [2316] = {.lex_state = 226, .external_lex_state = 16}, - [2317] = {.lex_state = 241, .external_lex_state = 15}, - [2318] = {.lex_state = 293}, - [2319] = {.lex_state = 291, .external_lex_state = 16}, - [2320] = {.lex_state = 241, .external_lex_state = 15}, - [2321] = {.lex_state = 293}, - [2322] = {.lex_state = 291, .external_lex_state = 16}, - [2323] = {.lex_state = 241, .external_lex_state = 15}, - [2324] = {.lex_state = 241, .external_lex_state = 15}, - [2325] = {.lex_state = 103}, - [2326] = {.lex_state = 298, .external_lex_state = 18}, - [2327] = {.lex_state = 103}, - [2328] = {.lex_state = 103}, - [2329] = {.lex_state = 103}, - [2330] = {.lex_state = 103}, - [2331] = {.lex_state = 103}, - [2332] = {.lex_state = 141}, - [2333] = {.lex_state = 317}, + [2305] = {.lex_state = 162, .external_lex_state = 5}, + [2306] = {.lex_state = 291, .external_lex_state = 16}, + [2307] = {.lex_state = 162, .external_lex_state = 5}, + [2308] = {.lex_state = 291, .external_lex_state = 16}, + [2309] = {.lex_state = 162, .external_lex_state = 5}, + [2310] = {.lex_state = 291, .external_lex_state = 16}, + [2311] = {.lex_state = 162, .external_lex_state = 5}, + [2312] = {.lex_state = 162, .external_lex_state = 5}, + [2313] = {.lex_state = 241, .external_lex_state = 2}, + [2314] = {.lex_state = 241, .external_lex_state = 15}, + [2315] = {.lex_state = 241, .external_lex_state = 15}, + [2316] = {.lex_state = 241, .external_lex_state = 15}, + [2317] = {.lex_state = 289, .external_lex_state = 16}, + [2318] = {.lex_state = 241, .external_lex_state = 15}, + [2319] = {.lex_state = 293}, + [2320] = {.lex_state = 291, .external_lex_state = 16}, + [2321] = {.lex_state = 103}, + [2322] = {.lex_state = 226, .external_lex_state = 16}, + [2323] = {.lex_state = 226, .external_lex_state = 16}, + [2324] = {.lex_state = 226, .external_lex_state = 16}, + [2325] = {.lex_state = 241, .external_lex_state = 15}, + [2326] = {.lex_state = 293}, + [2327] = {.lex_state = 291, .external_lex_state = 16}, + [2328] = {.lex_state = 241, .external_lex_state = 15}, + [2329] = {.lex_state = 293}, + [2330] = {.lex_state = 291, .external_lex_state = 16}, + [2331] = {.lex_state = 241, .external_lex_state = 15}, + [2332] = {.lex_state = 241, .external_lex_state = 15}, + [2333] = {.lex_state = 103}, [2334] = {.lex_state = 103}, - [2335] = {.lex_state = 103}, - [2336] = {.lex_state = 141}, - [2337] = {.lex_state = 317}, - [2338] = {.lex_state = 329, .external_lex_state = 18}, - [2339] = {.lex_state = 337, .external_lex_state = 18}, - [2340] = {.lex_state = 141}, - [2341] = {.lex_state = 344, .external_lex_state = 13}, - [2342] = {.lex_state = 165}, - [2343] = {.lex_state = 170}, - [2344] = {.lex_state = 344, .external_lex_state = 13}, - [2345] = {.lex_state = 175, .external_lex_state = 6}, - [2346] = {.lex_state = 20, .external_lex_state = 2}, - [2347] = {.lex_state = 20, .external_lex_state = 2}, - [2348] = {.lex_state = 20, .external_lex_state = 2}, - [2349] = {.lex_state = 103}, - [2350] = {.lex_state = 103}, - [2351] = {.lex_state = 237, .external_lex_state = 6}, - [2352] = {.lex_state = 241}, - [2353] = {.lex_state = 237, .external_lex_state = 23}, - [2354] = {.lex_state = 327, .external_lex_state = 22}, - [2355] = {.lex_state = 327, .external_lex_state = 22}, - [2356] = {.lex_state = 103, .external_lex_state = 16}, - [2357] = {.lex_state = 291, .external_lex_state = 16}, - [2358] = {.lex_state = 237, .external_lex_state = 23}, - [2359] = {.lex_state = 289, .external_lex_state = 16}, - [2360] = {.lex_state = 237, .external_lex_state = 23}, - [2361] = {.lex_state = 293}, - [2362] = {.lex_state = 291, .external_lex_state = 16}, + [2335] = {.lex_state = 262, .external_lex_state = 2}, + [2336] = {.lex_state = 298, .external_lex_state = 18}, + [2337] = {.lex_state = 103}, + [2338] = {.lex_state = 103}, + [2339] = {.lex_state = 103}, + [2340] = {.lex_state = 103}, + [2341] = {.lex_state = 103}, + [2342] = {.lex_state = 141}, + [2343] = {.lex_state = 317}, + [2344] = {.lex_state = 103}, + [2345] = {.lex_state = 103}, + [2346] = {.lex_state = 141}, + [2347] = {.lex_state = 317}, + [2348] = {.lex_state = 329, .external_lex_state = 18}, + [2349] = {.lex_state = 337, .external_lex_state = 18}, + [2350] = {.lex_state = 141}, + [2351] = {.lex_state = 344, .external_lex_state = 13}, + [2352] = {.lex_state = 165}, + [2353] = {.lex_state = 170}, + [2354] = {.lex_state = 344, .external_lex_state = 13}, + [2355] = {.lex_state = 175, .external_lex_state = 6}, + [2356] = {.lex_state = 20, .external_lex_state = 2}, + [2357] = {.lex_state = 20, .external_lex_state = 2}, + [2358] = {.lex_state = 20, .external_lex_state = 2}, + [2359] = {.lex_state = 103}, + [2360] = {.lex_state = 103}, + [2361] = {.lex_state = 237, .external_lex_state = 6}, + [2362] = {.lex_state = 241}, [2363] = {.lex_state = 237, .external_lex_state = 23}, - [2364] = {.lex_state = 293}, - [2365] = {.lex_state = 291, .external_lex_state = 16}, - [2366] = {.lex_state = 293}, + [2364] = {.lex_state = 327, .external_lex_state = 22}, + [2365] = {.lex_state = 327, .external_lex_state = 22}, + [2366] = {.lex_state = 103, .external_lex_state = 16}, [2367] = {.lex_state = 291, .external_lex_state = 16}, - [2368] = {.lex_state = 291, .external_lex_state = 16}, - [2369] = {.lex_state = 237, .external_lex_state = 23}, - [2370] = {.lex_state = 291, .external_lex_state = 16}, - [2371] = {.lex_state = 237, .external_lex_state = 13}, - [2372] = {.lex_state = 327, .external_lex_state = 22}, - [2373] = {.lex_state = 327, .external_lex_state = 22}, - [2374] = {.lex_state = 103, .external_lex_state = 16}, + [2368] = {.lex_state = 237, .external_lex_state = 23}, + [2369] = {.lex_state = 289, .external_lex_state = 16}, + [2370] = {.lex_state = 237, .external_lex_state = 23}, + [2371] = {.lex_state = 293}, + [2372] = {.lex_state = 291, .external_lex_state = 16}, + [2373] = {.lex_state = 237, .external_lex_state = 23}, + [2374] = {.lex_state = 293}, [2375] = {.lex_state = 291, .external_lex_state = 16}, - [2376] = {.lex_state = 237, .external_lex_state = 13}, - [2377] = {.lex_state = 289, .external_lex_state = 16}, - [2378] = {.lex_state = 237, .external_lex_state = 13}, - [2379] = {.lex_state = 293}, + [2376] = {.lex_state = 293}, + [2377] = {.lex_state = 291, .external_lex_state = 16}, + [2378] = {.lex_state = 291, .external_lex_state = 16}, + [2379] = {.lex_state = 237, .external_lex_state = 23}, [2380] = {.lex_state = 291, .external_lex_state = 16}, [2381] = {.lex_state = 237, .external_lex_state = 13}, - [2382] = {.lex_state = 293}, - [2383] = {.lex_state = 291, .external_lex_state = 16}, - [2384] = {.lex_state = 293}, + [2382] = {.lex_state = 327, .external_lex_state = 22}, + [2383] = {.lex_state = 327, .external_lex_state = 22}, + [2384] = {.lex_state = 103, .external_lex_state = 16}, [2385] = {.lex_state = 291, .external_lex_state = 16}, - [2386] = {.lex_state = 291, .external_lex_state = 16}, - [2387] = {.lex_state = 237, .external_lex_state = 13}, - [2388] = {.lex_state = 291, .external_lex_state = 16}, - [2389] = {.lex_state = 143, .external_lex_state = 17}, - [2390] = {.lex_state = 143, .external_lex_state = 17}, - [2391] = {.lex_state = 143, .external_lex_state = 17}, - [2392] = {.lex_state = 291, .external_lex_state = 16}, - [2393] = {.lex_state = 327, .external_lex_state = 22}, - [2394] = {.lex_state = 327, .external_lex_state = 22}, - [2395] = {.lex_state = 103, .external_lex_state = 16}, + [2386] = {.lex_state = 237, .external_lex_state = 13}, + [2387] = {.lex_state = 289, .external_lex_state = 16}, + [2388] = {.lex_state = 237, .external_lex_state = 13}, + [2389] = {.lex_state = 293}, + [2390] = {.lex_state = 291, .external_lex_state = 16}, + [2391] = {.lex_state = 237, .external_lex_state = 13}, + [2392] = {.lex_state = 293}, + [2393] = {.lex_state = 291, .external_lex_state = 16}, + [2394] = {.lex_state = 293}, + [2395] = {.lex_state = 291, .external_lex_state = 16}, [2396] = {.lex_state = 291, .external_lex_state = 16}, - [2397] = {.lex_state = 143, .external_lex_state = 17}, + [2397] = {.lex_state = 237, .external_lex_state = 13}, [2398] = {.lex_state = 291, .external_lex_state = 16}, [2399] = {.lex_state = 143, .external_lex_state = 17}, - [2400] = {.lex_state = 291, .external_lex_state = 16}, + [2400] = {.lex_state = 143, .external_lex_state = 17}, [2401] = {.lex_state = 143, .external_lex_state = 17}, [2402] = {.lex_state = 291, .external_lex_state = 16}, - [2403] = {.lex_state = 143, .external_lex_state = 17}, - [2404] = {.lex_state = 291, .external_lex_state = 16}, - [2405] = {.lex_state = 103}, - [2406] = {.lex_state = 300, .external_lex_state = 17}, - [2407] = {.lex_state = 300, .external_lex_state = 17}, - [2408] = {.lex_state = 300, .external_lex_state = 17}, - [2409] = {.lex_state = 289, .external_lex_state = 16}, - [2410] = {.lex_state = 300, .external_lex_state = 17}, - [2411] = {.lex_state = 293}, + [2403] = {.lex_state = 327, .external_lex_state = 22}, + [2404] = {.lex_state = 327, .external_lex_state = 22}, + [2405] = {.lex_state = 103, .external_lex_state = 16}, + [2406] = {.lex_state = 291, .external_lex_state = 16}, + [2407] = {.lex_state = 143, .external_lex_state = 17}, + [2408] = {.lex_state = 291, .external_lex_state = 16}, + [2409] = {.lex_state = 143, .external_lex_state = 17}, + [2410] = {.lex_state = 291, .external_lex_state = 16}, + [2411] = {.lex_state = 143, .external_lex_state = 17}, [2412] = {.lex_state = 291, .external_lex_state = 16}, - [2413] = {.lex_state = 103}, - [2414] = {.lex_state = 226, .external_lex_state = 16}, - [2415] = {.lex_state = 226, .external_lex_state = 16}, - [2416] = {.lex_state = 226, .external_lex_state = 16}, + [2413] = {.lex_state = 143, .external_lex_state = 17}, + [2414] = {.lex_state = 291, .external_lex_state = 16}, + [2415] = {.lex_state = 103}, + [2416] = {.lex_state = 300, .external_lex_state = 17}, [2417] = {.lex_state = 300, .external_lex_state = 17}, - [2418] = {.lex_state = 293}, - [2419] = {.lex_state = 291, .external_lex_state = 16}, + [2418] = {.lex_state = 300, .external_lex_state = 17}, + [2419] = {.lex_state = 289, .external_lex_state = 16}, [2420] = {.lex_state = 300, .external_lex_state = 17}, [2421] = {.lex_state = 293}, [2422] = {.lex_state = 291, .external_lex_state = 16}, - [2423] = {.lex_state = 300, .external_lex_state = 17}, - [2424] = {.lex_state = 300, .external_lex_state = 17}, - [2425] = {.lex_state = 298, .external_lex_state = 18}, - [2426] = {.lex_state = 249, .external_lex_state = 15}, - [2427] = {.lex_state = 249, .external_lex_state = 15}, - [2428] = {.lex_state = 249, .external_lex_state = 15}, - [2429] = {.lex_state = 289, .external_lex_state = 16}, - [2430] = {.lex_state = 249, .external_lex_state = 15}, + [2423] = {.lex_state = 103}, + [2424] = {.lex_state = 226, .external_lex_state = 16}, + [2425] = {.lex_state = 226, .external_lex_state = 16}, + [2426] = {.lex_state = 226, .external_lex_state = 16}, + [2427] = {.lex_state = 300, .external_lex_state = 17}, + [2428] = {.lex_state = 293}, + [2429] = {.lex_state = 291, .external_lex_state = 16}, + [2430] = {.lex_state = 300, .external_lex_state = 17}, [2431] = {.lex_state = 293}, [2432] = {.lex_state = 291, .external_lex_state = 16}, - [2433] = {.lex_state = 103}, - [2434] = {.lex_state = 226, .external_lex_state = 16}, - [2435] = {.lex_state = 226, .external_lex_state = 16}, - [2436] = {.lex_state = 226, .external_lex_state = 16}, + [2433] = {.lex_state = 300, .external_lex_state = 17}, + [2434] = {.lex_state = 300, .external_lex_state = 17}, + [2435] = {.lex_state = 298, .external_lex_state = 18}, + [2436] = {.lex_state = 249, .external_lex_state = 15}, [2437] = {.lex_state = 249, .external_lex_state = 15}, - [2438] = {.lex_state = 293}, - [2439] = {.lex_state = 291, .external_lex_state = 16}, + [2438] = {.lex_state = 249, .external_lex_state = 15}, + [2439] = {.lex_state = 289, .external_lex_state = 16}, [2440] = {.lex_state = 249, .external_lex_state = 15}, [2441] = {.lex_state = 293}, [2442] = {.lex_state = 291, .external_lex_state = 16}, - [2443] = {.lex_state = 249, .external_lex_state = 15}, - [2444] = {.lex_state = 249, .external_lex_state = 15}, - [2445] = {.lex_state = 331, .external_lex_state = 18}, - [2446] = {.lex_state = 141}, - [2447] = {.lex_state = 346, .external_lex_state = 13}, - [2448] = {.lex_state = 165}, - [2449] = {.lex_state = 170}, - [2450] = {.lex_state = 346, .external_lex_state = 13}, - [2451] = {.lex_state = 175, .external_lex_state = 6}, - [2452] = {.lex_state = 20, .external_lex_state = 2}, - [2453] = {.lex_state = 20, .external_lex_state = 2}, - [2454] = {.lex_state = 20, .external_lex_state = 2}, - [2455] = {.lex_state = 243, .external_lex_state = 23}, - [2456] = {.lex_state = 327, .external_lex_state = 22}, - [2457] = {.lex_state = 327, .external_lex_state = 22}, - [2458] = {.lex_state = 103, .external_lex_state = 16}, - [2459] = {.lex_state = 291, .external_lex_state = 16}, - [2460] = {.lex_state = 243, .external_lex_state = 23}, - [2461] = {.lex_state = 289, .external_lex_state = 16}, - [2462] = {.lex_state = 243, .external_lex_state = 23}, - [2463] = {.lex_state = 293}, - [2464] = {.lex_state = 291, .external_lex_state = 16}, + [2443] = {.lex_state = 103}, + [2444] = {.lex_state = 226, .external_lex_state = 16}, + [2445] = {.lex_state = 226, .external_lex_state = 16}, + [2446] = {.lex_state = 226, .external_lex_state = 16}, + [2447] = {.lex_state = 249, .external_lex_state = 15}, + [2448] = {.lex_state = 293}, + [2449] = {.lex_state = 291, .external_lex_state = 16}, + [2450] = {.lex_state = 249, .external_lex_state = 15}, + [2451] = {.lex_state = 293}, + [2452] = {.lex_state = 291, .external_lex_state = 16}, + [2453] = {.lex_state = 249, .external_lex_state = 15}, + [2454] = {.lex_state = 249, .external_lex_state = 15}, + [2455] = {.lex_state = 331, .external_lex_state = 18}, + [2456] = {.lex_state = 141}, + [2457] = {.lex_state = 346, .external_lex_state = 13}, + [2458] = {.lex_state = 165}, + [2459] = {.lex_state = 170}, + [2460] = {.lex_state = 346, .external_lex_state = 13}, + [2461] = {.lex_state = 175, .external_lex_state = 6}, + [2462] = {.lex_state = 20, .external_lex_state = 2}, + [2463] = {.lex_state = 20, .external_lex_state = 2}, + [2464] = {.lex_state = 20, .external_lex_state = 2}, [2465] = {.lex_state = 243, .external_lex_state = 23}, - [2466] = {.lex_state = 293}, - [2467] = {.lex_state = 291, .external_lex_state = 16}, - [2468] = {.lex_state = 293}, + [2466] = {.lex_state = 327, .external_lex_state = 22}, + [2467] = {.lex_state = 327, .external_lex_state = 22}, + [2468] = {.lex_state = 103, .external_lex_state = 16}, [2469] = {.lex_state = 291, .external_lex_state = 16}, - [2470] = {.lex_state = 291, .external_lex_state = 16}, - [2471] = {.lex_state = 243, .external_lex_state = 23}, - [2472] = {.lex_state = 291, .external_lex_state = 16}, - [2473] = {.lex_state = 243, .external_lex_state = 13}, - [2474] = {.lex_state = 327, .external_lex_state = 22}, - [2475] = {.lex_state = 327, .external_lex_state = 22}, - [2476] = {.lex_state = 103, .external_lex_state = 16}, + [2470] = {.lex_state = 243, .external_lex_state = 23}, + [2471] = {.lex_state = 289, .external_lex_state = 16}, + [2472] = {.lex_state = 243, .external_lex_state = 23}, + [2473] = {.lex_state = 293}, + [2474] = {.lex_state = 291, .external_lex_state = 16}, + [2475] = {.lex_state = 243, .external_lex_state = 23}, + [2476] = {.lex_state = 293}, [2477] = {.lex_state = 291, .external_lex_state = 16}, - [2478] = {.lex_state = 243, .external_lex_state = 13}, - [2479] = {.lex_state = 289, .external_lex_state = 16}, - [2480] = {.lex_state = 243, .external_lex_state = 13}, - [2481] = {.lex_state = 293}, + [2478] = {.lex_state = 293}, + [2479] = {.lex_state = 291, .external_lex_state = 16}, + [2480] = {.lex_state = 291, .external_lex_state = 16}, + [2481] = {.lex_state = 243, .external_lex_state = 23}, [2482] = {.lex_state = 291, .external_lex_state = 16}, [2483] = {.lex_state = 243, .external_lex_state = 13}, - [2484] = {.lex_state = 293}, - [2485] = {.lex_state = 291, .external_lex_state = 16}, - [2486] = {.lex_state = 293}, + [2484] = {.lex_state = 327, .external_lex_state = 22}, + [2485] = {.lex_state = 327, .external_lex_state = 22}, + [2486] = {.lex_state = 103, .external_lex_state = 16}, [2487] = {.lex_state = 291, .external_lex_state = 16}, - [2488] = {.lex_state = 291, .external_lex_state = 16}, - [2489] = {.lex_state = 243, .external_lex_state = 13}, - [2490] = {.lex_state = 291, .external_lex_state = 16}, - [2491] = {.lex_state = 245, .external_lex_state = 17}, - [2492] = {.lex_state = 245, .external_lex_state = 17}, - [2493] = {.lex_state = 245, .external_lex_state = 17}, - [2494] = {.lex_state = 291, .external_lex_state = 16}, - [2495] = {.lex_state = 327, .external_lex_state = 22}, - [2496] = {.lex_state = 327, .external_lex_state = 22}, - [2497] = {.lex_state = 103, .external_lex_state = 16}, + [2488] = {.lex_state = 243, .external_lex_state = 13}, + [2489] = {.lex_state = 289, .external_lex_state = 16}, + [2490] = {.lex_state = 243, .external_lex_state = 13}, + [2491] = {.lex_state = 293}, + [2492] = {.lex_state = 291, .external_lex_state = 16}, + [2493] = {.lex_state = 243, .external_lex_state = 13}, + [2494] = {.lex_state = 293}, + [2495] = {.lex_state = 291, .external_lex_state = 16}, + [2496] = {.lex_state = 293}, + [2497] = {.lex_state = 291, .external_lex_state = 16}, [2498] = {.lex_state = 291, .external_lex_state = 16}, - [2499] = {.lex_state = 245, .external_lex_state = 17}, + [2499] = {.lex_state = 243, .external_lex_state = 13}, [2500] = {.lex_state = 291, .external_lex_state = 16}, [2501] = {.lex_state = 245, .external_lex_state = 17}, - [2502] = {.lex_state = 291, .external_lex_state = 16}, + [2502] = {.lex_state = 245, .external_lex_state = 17}, [2503] = {.lex_state = 245, .external_lex_state = 17}, [2504] = {.lex_state = 291, .external_lex_state = 16}, - [2505] = {.lex_state = 245, .external_lex_state = 17}, - [2506] = {.lex_state = 291, .external_lex_state = 16}, - [2507] = {.lex_state = 302, .external_lex_state = 17}, - [2508] = {.lex_state = 302, .external_lex_state = 17}, - [2509] = {.lex_state = 302, .external_lex_state = 17}, - [2510] = {.lex_state = 289, .external_lex_state = 16}, - [2511] = {.lex_state = 302, .external_lex_state = 17}, - [2512] = {.lex_state = 293}, - [2513] = {.lex_state = 291, .external_lex_state = 16}, - [2514] = {.lex_state = 103}, - [2515] = {.lex_state = 226, .external_lex_state = 16}, - [2516] = {.lex_state = 226, .external_lex_state = 16}, - [2517] = {.lex_state = 226, .external_lex_state = 16}, + [2505] = {.lex_state = 327, .external_lex_state = 22}, + [2506] = {.lex_state = 327, .external_lex_state = 22}, + [2507] = {.lex_state = 103, .external_lex_state = 16}, + [2508] = {.lex_state = 291, .external_lex_state = 16}, + [2509] = {.lex_state = 245, .external_lex_state = 17}, + [2510] = {.lex_state = 291, .external_lex_state = 16}, + [2511] = {.lex_state = 245, .external_lex_state = 17}, + [2512] = {.lex_state = 291, .external_lex_state = 16}, + [2513] = {.lex_state = 245, .external_lex_state = 17}, + [2514] = {.lex_state = 291, .external_lex_state = 16}, + [2515] = {.lex_state = 245, .external_lex_state = 17}, + [2516] = {.lex_state = 291, .external_lex_state = 16}, + [2517] = {.lex_state = 302, .external_lex_state = 17}, [2518] = {.lex_state = 302, .external_lex_state = 17}, - [2519] = {.lex_state = 293}, - [2520] = {.lex_state = 291, .external_lex_state = 16}, + [2519] = {.lex_state = 302, .external_lex_state = 17}, + [2520] = {.lex_state = 289, .external_lex_state = 16}, [2521] = {.lex_state = 302, .external_lex_state = 17}, [2522] = {.lex_state = 293}, [2523] = {.lex_state = 291, .external_lex_state = 16}, - [2524] = {.lex_state = 302, .external_lex_state = 17}, - [2525] = {.lex_state = 302, .external_lex_state = 17}, - [2526] = {.lex_state = 258, .external_lex_state = 5}, - [2527] = {.lex_state = 327, .external_lex_state = 22}, - [2528] = {.lex_state = 327, .external_lex_state = 22}, - [2529] = {.lex_state = 103, .external_lex_state = 16}, + [2524] = {.lex_state = 103}, + [2525] = {.lex_state = 226, .external_lex_state = 16}, + [2526] = {.lex_state = 226, .external_lex_state = 16}, + [2527] = {.lex_state = 226, .external_lex_state = 16}, + [2528] = {.lex_state = 302, .external_lex_state = 17}, + [2529] = {.lex_state = 293}, [2530] = {.lex_state = 291, .external_lex_state = 16}, - [2531] = {.lex_state = 258, .external_lex_state = 5}, - [2532] = {.lex_state = 289, .external_lex_state = 16}, - [2533] = {.lex_state = 258, .external_lex_state = 5}, - [2534] = {.lex_state = 293}, - [2535] = {.lex_state = 291, .external_lex_state = 16}, + [2531] = {.lex_state = 302, .external_lex_state = 17}, + [2532] = {.lex_state = 293}, + [2533] = {.lex_state = 291, .external_lex_state = 16}, + [2534] = {.lex_state = 302, .external_lex_state = 17}, + [2535] = {.lex_state = 302, .external_lex_state = 17}, [2536] = {.lex_state = 258, .external_lex_state = 5}, - [2537] = {.lex_state = 293}, - [2538] = {.lex_state = 291, .external_lex_state = 16}, - [2539] = {.lex_state = 293}, + [2537] = {.lex_state = 327, .external_lex_state = 22}, + [2538] = {.lex_state = 327, .external_lex_state = 22}, + [2539] = {.lex_state = 103, .external_lex_state = 16}, [2540] = {.lex_state = 291, .external_lex_state = 16}, - [2541] = {.lex_state = 291, .external_lex_state = 16}, - [2542] = {.lex_state = 258, .external_lex_state = 5}, - [2543] = {.lex_state = 291, .external_lex_state = 16}, - [2544] = {.lex_state = 289, .external_lex_state = 16}, - [2545] = {.lex_state = 304, .external_lex_state = 24}, - [2546] = {.lex_state = 293}, - [2547] = {.lex_state = 291, .external_lex_state = 16}, - [2548] = {.lex_state = 103}, - [2549] = {.lex_state = 226, .external_lex_state = 16}, - [2550] = {.lex_state = 226, .external_lex_state = 16}, - [2551] = {.lex_state = 226, .external_lex_state = 16}, - [2552] = {.lex_state = 304, .external_lex_state = 24}, - [2553] = {.lex_state = 293}, - [2554] = {.lex_state = 291, .external_lex_state = 16}, + [2541] = {.lex_state = 258, .external_lex_state = 5}, + [2542] = {.lex_state = 289, .external_lex_state = 16}, + [2543] = {.lex_state = 258, .external_lex_state = 5}, + [2544] = {.lex_state = 293}, + [2545] = {.lex_state = 291, .external_lex_state = 16}, + [2546] = {.lex_state = 258, .external_lex_state = 5}, + [2547] = {.lex_state = 293}, + [2548] = {.lex_state = 291, .external_lex_state = 16}, + [2549] = {.lex_state = 293}, + [2550] = {.lex_state = 291, .external_lex_state = 16}, + [2551] = {.lex_state = 291, .external_lex_state = 16}, + [2552] = {.lex_state = 258, .external_lex_state = 5}, + [2553] = {.lex_state = 291, .external_lex_state = 16}, + [2554] = {.lex_state = 289, .external_lex_state = 16}, [2555] = {.lex_state = 304, .external_lex_state = 24}, [2556] = {.lex_state = 293}, [2557] = {.lex_state = 291, .external_lex_state = 16}, - [2558] = {.lex_state = 260, .external_lex_state = 11}, - [2559] = {.lex_state = 260, .external_lex_state = 11}, - [2560] = {.lex_state = 260, .external_lex_state = 11}, - [2561] = {.lex_state = 291, .external_lex_state = 16}, - [2562] = {.lex_state = 327, .external_lex_state = 22}, - [2563] = {.lex_state = 327, .external_lex_state = 22}, - [2564] = {.lex_state = 103, .external_lex_state = 16}, - [2565] = {.lex_state = 291, .external_lex_state = 16}, - [2566] = {.lex_state = 260, .external_lex_state = 11}, + [2558] = {.lex_state = 103}, + [2559] = {.lex_state = 226, .external_lex_state = 16}, + [2560] = {.lex_state = 226, .external_lex_state = 16}, + [2561] = {.lex_state = 226, .external_lex_state = 16}, + [2562] = {.lex_state = 304, .external_lex_state = 24}, + [2563] = {.lex_state = 293}, + [2564] = {.lex_state = 291, .external_lex_state = 16}, + [2565] = {.lex_state = 304, .external_lex_state = 24}, + [2566] = {.lex_state = 293}, [2567] = {.lex_state = 291, .external_lex_state = 16}, [2568] = {.lex_state = 260, .external_lex_state = 11}, - [2569] = {.lex_state = 291, .external_lex_state = 16}, + [2569] = {.lex_state = 260, .external_lex_state = 11}, [2570] = {.lex_state = 260, .external_lex_state = 11}, [2571] = {.lex_state = 291, .external_lex_state = 16}, - [2572] = {.lex_state = 260, .external_lex_state = 11}, - [2573] = {.lex_state = 291, .external_lex_state = 16}, - [2574] = {.lex_state = 311, .external_lex_state = 13}, - [2575] = {.lex_state = 327, .external_lex_state = 22}, - [2576] = {.lex_state = 327, .external_lex_state = 22}, - [2577] = {.lex_state = 103, .external_lex_state = 16}, - [2578] = {.lex_state = 291, .external_lex_state = 16}, - [2579] = {.lex_state = 311, .external_lex_state = 13}, - [2580] = {.lex_state = 289, .external_lex_state = 16}, - [2581] = {.lex_state = 311, .external_lex_state = 13}, - [2582] = {.lex_state = 293}, + [2572] = {.lex_state = 327, .external_lex_state = 22}, + [2573] = {.lex_state = 327, .external_lex_state = 22}, + [2574] = {.lex_state = 103, .external_lex_state = 16}, + [2575] = {.lex_state = 291, .external_lex_state = 16}, + [2576] = {.lex_state = 260, .external_lex_state = 11}, + [2577] = {.lex_state = 291, .external_lex_state = 16}, + [2578] = {.lex_state = 260, .external_lex_state = 11}, + [2579] = {.lex_state = 291, .external_lex_state = 16}, + [2580] = {.lex_state = 260, .external_lex_state = 11}, + [2581] = {.lex_state = 291, .external_lex_state = 16}, + [2582] = {.lex_state = 260, .external_lex_state = 11}, [2583] = {.lex_state = 291, .external_lex_state = 16}, [2584] = {.lex_state = 311, .external_lex_state = 13}, - [2585] = {.lex_state = 293}, - [2586] = {.lex_state = 291, .external_lex_state = 16}, - [2587] = {.lex_state = 293}, + [2585] = {.lex_state = 327, .external_lex_state = 22}, + [2586] = {.lex_state = 327, .external_lex_state = 22}, + [2587] = {.lex_state = 103, .external_lex_state = 16}, [2588] = {.lex_state = 291, .external_lex_state = 16}, - [2589] = {.lex_state = 291, .external_lex_state = 16}, - [2590] = {.lex_state = 311, .external_lex_state = 13}, - [2591] = {.lex_state = 291, .external_lex_state = 16}, - [2592] = {.lex_state = 182, .external_lex_state = 20}, - [2593] = {.lex_state = 182, .external_lex_state = 20}, - [2594] = {.lex_state = 182, .external_lex_state = 20}, - [2595] = {.lex_state = 291, .external_lex_state = 16}, - [2596] = {.lex_state = 327, .external_lex_state = 22}, - [2597] = {.lex_state = 327, .external_lex_state = 22}, - [2598] = {.lex_state = 103, .external_lex_state = 16}, + [2589] = {.lex_state = 311, .external_lex_state = 13}, + [2590] = {.lex_state = 289, .external_lex_state = 16}, + [2591] = {.lex_state = 311, .external_lex_state = 13}, + [2592] = {.lex_state = 293}, + [2593] = {.lex_state = 291, .external_lex_state = 16}, + [2594] = {.lex_state = 311, .external_lex_state = 13}, + [2595] = {.lex_state = 293}, + [2596] = {.lex_state = 291, .external_lex_state = 16}, + [2597] = {.lex_state = 293}, + [2598] = {.lex_state = 291, .external_lex_state = 16}, [2599] = {.lex_state = 291, .external_lex_state = 16}, - [2600] = {.lex_state = 182, .external_lex_state = 20}, + [2600] = {.lex_state = 311, .external_lex_state = 13}, [2601] = {.lex_state = 291, .external_lex_state = 16}, [2602] = {.lex_state = 182, .external_lex_state = 20}, - [2603] = {.lex_state = 291, .external_lex_state = 16}, + [2603] = {.lex_state = 182, .external_lex_state = 20}, [2604] = {.lex_state = 182, .external_lex_state = 20}, [2605] = {.lex_state = 291, .external_lex_state = 16}, - [2606] = {.lex_state = 182, .external_lex_state = 20}, - [2607] = {.lex_state = 291, .external_lex_state = 16}, - [2608] = {.lex_state = 313, .external_lex_state = 10}, - [2609] = {.lex_state = 327, .external_lex_state = 22}, - [2610] = {.lex_state = 327, .external_lex_state = 22}, - [2611] = {.lex_state = 103, .external_lex_state = 16}, - [2612] = {.lex_state = 291, .external_lex_state = 16}, - [2613] = {.lex_state = 313, .external_lex_state = 10}, - [2614] = {.lex_state = 289, .external_lex_state = 16}, - [2615] = {.lex_state = 313, .external_lex_state = 10}, - [2616] = {.lex_state = 293}, + [2606] = {.lex_state = 327, .external_lex_state = 22}, + [2607] = {.lex_state = 327, .external_lex_state = 22}, + [2608] = {.lex_state = 103, .external_lex_state = 16}, + [2609] = {.lex_state = 291, .external_lex_state = 16}, + [2610] = {.lex_state = 182, .external_lex_state = 20}, + [2611] = {.lex_state = 291, .external_lex_state = 16}, + [2612] = {.lex_state = 182, .external_lex_state = 20}, + [2613] = {.lex_state = 291, .external_lex_state = 16}, + [2614] = {.lex_state = 182, .external_lex_state = 20}, + [2615] = {.lex_state = 291, .external_lex_state = 16}, + [2616] = {.lex_state = 182, .external_lex_state = 20}, [2617] = {.lex_state = 291, .external_lex_state = 16}, [2618] = {.lex_state = 313, .external_lex_state = 10}, - [2619] = {.lex_state = 293}, - [2620] = {.lex_state = 291, .external_lex_state = 16}, - [2621] = {.lex_state = 293}, + [2619] = {.lex_state = 327, .external_lex_state = 22}, + [2620] = {.lex_state = 327, .external_lex_state = 22}, + [2621] = {.lex_state = 103, .external_lex_state = 16}, [2622] = {.lex_state = 291, .external_lex_state = 16}, - [2623] = {.lex_state = 291, .external_lex_state = 16}, - [2624] = {.lex_state = 313, .external_lex_state = 10}, - [2625] = {.lex_state = 291, .external_lex_state = 16}, - [2626] = {.lex_state = 283, .external_lex_state = 4}, - [2627] = {.lex_state = 262, .external_lex_state = 2}, - [2628] = {.lex_state = 268, .external_lex_state = 2}, - [2629] = {.lex_state = 283, .external_lex_state = 4}, - [2630] = {.lex_state = 333, .external_lex_state = 13}, - [2631] = {.lex_state = 333, .external_lex_state = 13}, - [2632] = {.lex_state = 333, .external_lex_state = 13}, - [2633] = {.lex_state = 137}, - [2634] = {.lex_state = 103}, - [2635] = {.lex_state = 20, .external_lex_state = 2}, - [2636] = {.lex_state = 317}, - [2637] = {.lex_state = 141}, - [2638] = {.lex_state = 143}, - [2639] = {.lex_state = 143}, - [2640] = {.lex_state = 348, .external_lex_state = 3}, - [2641] = {.lex_state = 348, .external_lex_state = 4}, - [2642] = {.lex_state = 354, .external_lex_state = 5}, - [2643] = {.lex_state = 165}, - [2644] = {.lex_state = 170}, - [2645] = {.lex_state = 354, .external_lex_state = 5}, - [2646] = {.lex_state = 175, .external_lex_state = 6}, - [2647] = {.lex_state = 20, .external_lex_state = 2}, - [2648] = {.lex_state = 20, .external_lex_state = 2}, - [2649] = {.lex_state = 20, .external_lex_state = 2}, - [2650] = {.lex_state = 356, .external_lex_state = 5}, - [2651] = {.lex_state = 339, .external_lex_state = 2}, - [2652] = {.lex_state = 283, .external_lex_state = 4}, - [2653] = {.lex_state = 354, .external_lex_state = 7}, - [2654] = {.lex_state = 358, .external_lex_state = 8}, - [2655] = {.lex_state = 103}, - [2656] = {.lex_state = 354, .external_lex_state = 7}, - [2657] = {.lex_state = 339, .external_lex_state = 2}, - [2658] = {.lex_state = 141, .external_lex_state = 2}, + [2623] = {.lex_state = 313, .external_lex_state = 10}, + [2624] = {.lex_state = 289, .external_lex_state = 16}, + [2625] = {.lex_state = 313, .external_lex_state = 10}, + [2626] = {.lex_state = 293}, + [2627] = {.lex_state = 291, .external_lex_state = 16}, + [2628] = {.lex_state = 313, .external_lex_state = 10}, + [2629] = {.lex_state = 293}, + [2630] = {.lex_state = 291, .external_lex_state = 16}, + [2631] = {.lex_state = 293}, + [2632] = {.lex_state = 291, .external_lex_state = 16}, + [2633] = {.lex_state = 291, .external_lex_state = 16}, + [2634] = {.lex_state = 313, .external_lex_state = 10}, + [2635] = {.lex_state = 291, .external_lex_state = 16}, + [2636] = {.lex_state = 268, .external_lex_state = 2}, + [2637] = {.lex_state = 283, .external_lex_state = 4}, + [2638] = {.lex_state = 333, .external_lex_state = 13}, + [2639] = {.lex_state = 333, .external_lex_state = 13}, + [2640] = {.lex_state = 333, .external_lex_state = 13}, + [2641] = {.lex_state = 137}, + [2642] = {.lex_state = 103}, + [2643] = {.lex_state = 20, .external_lex_state = 2}, + [2644] = {.lex_state = 317}, + [2645] = {.lex_state = 141}, + [2646] = {.lex_state = 143}, + [2647] = {.lex_state = 143}, + [2648] = {.lex_state = 348, .external_lex_state = 3}, + [2649] = {.lex_state = 348, .external_lex_state = 4}, + [2650] = {.lex_state = 354, .external_lex_state = 5}, + [2651] = {.lex_state = 165}, + [2652] = {.lex_state = 170}, + [2653] = {.lex_state = 354, .external_lex_state = 5}, + [2654] = {.lex_state = 175, .external_lex_state = 6}, + [2655] = {.lex_state = 20, .external_lex_state = 2}, + [2656] = {.lex_state = 20, .external_lex_state = 2}, + [2657] = {.lex_state = 20, .external_lex_state = 2}, + [2658] = {.lex_state = 356, .external_lex_state = 5}, [2659] = {.lex_state = 339, .external_lex_state = 2}, - [2660] = {.lex_state = 137}, - [2661] = {.lex_state = 333, .external_lex_state = 13}, - [2662] = {.lex_state = 333, .external_lex_state = 13}, - [2663] = {.lex_state = 317}, - [2664] = {.lex_state = 283, .external_lex_state = 4}, - [2665] = {.lex_state = 358, .external_lex_state = 8}, - [2666] = {.lex_state = 339, .external_lex_state = 2}, + [2660] = {.lex_state = 283, .external_lex_state = 4}, + [2661] = {.lex_state = 354, .external_lex_state = 7}, + [2662] = {.lex_state = 358, .external_lex_state = 8}, + [2663] = {.lex_state = 103}, + [2664] = {.lex_state = 354, .external_lex_state = 7}, + [2665] = {.lex_state = 339, .external_lex_state = 2}, + [2666] = {.lex_state = 141, .external_lex_state = 2}, [2667] = {.lex_state = 339, .external_lex_state = 2}, - [2668] = {.lex_state = 289, .external_lex_state = 16}, + [2668] = {.lex_state = 137}, [2669] = {.lex_state = 333, .external_lex_state = 13}, - [2670] = {.lex_state = 293}, - [2671] = {.lex_state = 291, .external_lex_state = 16}, - [2672] = {.lex_state = 103}, - [2673] = {.lex_state = 226, .external_lex_state = 16}, - [2674] = {.lex_state = 226, .external_lex_state = 16}, - [2675] = {.lex_state = 226, .external_lex_state = 16}, - [2676] = {.lex_state = 333, .external_lex_state = 13}, - [2677] = {.lex_state = 293}, - [2678] = {.lex_state = 291, .external_lex_state = 16}, - [2679] = {.lex_state = 333, .external_lex_state = 13}, - [2680] = {.lex_state = 293}, - [2681] = {.lex_state = 291, .external_lex_state = 16}, - [2682] = {.lex_state = 333, .external_lex_state = 13}, - [2683] = {.lex_state = 333, .external_lex_state = 13}, - [2684] = {.lex_state = 283, .external_lex_state = 4}, - [2685] = {.lex_state = 333, .external_lex_state = 13}, - [2686] = {.lex_state = 333, .external_lex_state = 13}, - [2687] = {.lex_state = 137}, - [2688] = {.lex_state = 103}, - [2689] = {.lex_state = 283, .external_lex_state = 4}, - [2690] = {.lex_state = 103}, - [2691] = {.lex_state = 190, .external_lex_state = 10}, - [2692] = {.lex_state = 190, .external_lex_state = 10}, - [2693] = {.lex_state = 190, .external_lex_state = 10}, - [2694] = {.lex_state = 190, .external_lex_state = 10}, - [2695] = {.lex_state = 291, .external_lex_state = 16}, - [2696] = {.lex_state = 190, .external_lex_state = 10}, - [2697] = {.lex_state = 291, .external_lex_state = 16}, - [2698] = {.lex_state = 190, .external_lex_state = 10}, - [2699] = {.lex_state = 291, .external_lex_state = 16}, + [2670] = {.lex_state = 333, .external_lex_state = 13}, + [2671] = {.lex_state = 317}, + [2672] = {.lex_state = 283, .external_lex_state = 4}, + [2673] = {.lex_state = 358, .external_lex_state = 8}, + [2674] = {.lex_state = 339, .external_lex_state = 2}, + [2675] = {.lex_state = 339, .external_lex_state = 2}, + [2676] = {.lex_state = 289, .external_lex_state = 16}, + [2677] = {.lex_state = 333, .external_lex_state = 13}, + [2678] = {.lex_state = 293}, + [2679] = {.lex_state = 291, .external_lex_state = 16}, + [2680] = {.lex_state = 103}, + [2681] = {.lex_state = 226, .external_lex_state = 16}, + [2682] = {.lex_state = 226, .external_lex_state = 16}, + [2683] = {.lex_state = 226, .external_lex_state = 16}, + [2684] = {.lex_state = 333, .external_lex_state = 13}, + [2685] = {.lex_state = 293}, + [2686] = {.lex_state = 291, .external_lex_state = 16}, + [2687] = {.lex_state = 333, .external_lex_state = 13}, + [2688] = {.lex_state = 293}, + [2689] = {.lex_state = 291, .external_lex_state = 16}, + [2690] = {.lex_state = 333, .external_lex_state = 13}, + [2691] = {.lex_state = 333, .external_lex_state = 13}, + [2692] = {.lex_state = 283, .external_lex_state = 4}, + [2693] = {.lex_state = 333, .external_lex_state = 13}, + [2694] = {.lex_state = 333, .external_lex_state = 13}, + [2695] = {.lex_state = 137}, + [2696] = {.lex_state = 103}, + [2697] = {.lex_state = 283, .external_lex_state = 4}, + [2698] = {.lex_state = 103}, + [2699] = {.lex_state = 190, .external_lex_state = 10}, [2700] = {.lex_state = 190, .external_lex_state = 10}, [2701] = {.lex_state = 190, .external_lex_state = 10}, - [2702] = {.lex_state = 335, .external_lex_state = 10}, - [2703] = {.lex_state = 335, .external_lex_state = 10}, - [2704] = {.lex_state = 335, .external_lex_state = 10}, - [2705] = {.lex_state = 289, .external_lex_state = 16}, - [2706] = {.lex_state = 335, .external_lex_state = 10}, - [2707] = {.lex_state = 293}, - [2708] = {.lex_state = 291, .external_lex_state = 16}, - [2709] = {.lex_state = 103}, - [2710] = {.lex_state = 226, .external_lex_state = 16}, - [2711] = {.lex_state = 226, .external_lex_state = 16}, - [2712] = {.lex_state = 226, .external_lex_state = 16}, - [2713] = {.lex_state = 335, .external_lex_state = 10}, - [2714] = {.lex_state = 293}, - [2715] = {.lex_state = 291, .external_lex_state = 16}, - [2716] = {.lex_state = 335, .external_lex_state = 10}, - [2717] = {.lex_state = 293}, - [2718] = {.lex_state = 291, .external_lex_state = 16}, - [2719] = {.lex_state = 335, .external_lex_state = 10}, - [2720] = {.lex_state = 335, .external_lex_state = 10}, - [2721] = {.lex_state = 188, .external_lex_state = 20}, - [2722] = {.lex_state = 327, .external_lex_state = 22}, - [2723] = {.lex_state = 327, .external_lex_state = 22}, - [2724] = {.lex_state = 103, .external_lex_state = 16}, - [2725] = {.lex_state = 291, .external_lex_state = 16}, - [2726] = {.lex_state = 188, .external_lex_state = 20}, - [2727] = {.lex_state = 289, .external_lex_state = 16}, - [2728] = {.lex_state = 188, .external_lex_state = 20}, - [2729] = {.lex_state = 293}, - [2730] = {.lex_state = 291, .external_lex_state = 16}, - [2731] = {.lex_state = 188, .external_lex_state = 20}, - [2732] = {.lex_state = 293}, + [2702] = {.lex_state = 190, .external_lex_state = 10}, + [2703] = {.lex_state = 291, .external_lex_state = 16}, + [2704] = {.lex_state = 190, .external_lex_state = 10}, + [2705] = {.lex_state = 291, .external_lex_state = 16}, + [2706] = {.lex_state = 190, .external_lex_state = 10}, + [2707] = {.lex_state = 291, .external_lex_state = 16}, + [2708] = {.lex_state = 190, .external_lex_state = 10}, + [2709] = {.lex_state = 190, .external_lex_state = 10}, + [2710] = {.lex_state = 335, .external_lex_state = 10}, + [2711] = {.lex_state = 335, .external_lex_state = 10}, + [2712] = {.lex_state = 335, .external_lex_state = 10}, + [2713] = {.lex_state = 289, .external_lex_state = 16}, + [2714] = {.lex_state = 335, .external_lex_state = 10}, + [2715] = {.lex_state = 293}, + [2716] = {.lex_state = 291, .external_lex_state = 16}, + [2717] = {.lex_state = 103}, + [2718] = {.lex_state = 226, .external_lex_state = 16}, + [2719] = {.lex_state = 226, .external_lex_state = 16}, + [2720] = {.lex_state = 226, .external_lex_state = 16}, + [2721] = {.lex_state = 335, .external_lex_state = 10}, + [2722] = {.lex_state = 293}, + [2723] = {.lex_state = 291, .external_lex_state = 16}, + [2724] = {.lex_state = 335, .external_lex_state = 10}, + [2725] = {.lex_state = 293}, + [2726] = {.lex_state = 291, .external_lex_state = 16}, + [2727] = {.lex_state = 335, .external_lex_state = 10}, + [2728] = {.lex_state = 335, .external_lex_state = 10}, + [2729] = {.lex_state = 188, .external_lex_state = 20}, + [2730] = {.lex_state = 327, .external_lex_state = 22}, + [2731] = {.lex_state = 327, .external_lex_state = 22}, + [2732] = {.lex_state = 103, .external_lex_state = 16}, [2733] = {.lex_state = 291, .external_lex_state = 16}, - [2734] = {.lex_state = 293}, - [2735] = {.lex_state = 291, .external_lex_state = 16}, - [2736] = {.lex_state = 291, .external_lex_state = 16}, - [2737] = {.lex_state = 188, .external_lex_state = 20}, + [2734] = {.lex_state = 188, .external_lex_state = 20}, + [2735] = {.lex_state = 289, .external_lex_state = 16}, + [2736] = {.lex_state = 188, .external_lex_state = 20}, + [2737] = {.lex_state = 293}, [2738] = {.lex_state = 291, .external_lex_state = 16}, - [2739] = {.lex_state = 342, .external_lex_state = 10}, - [2740] = {.lex_state = 342, .external_lex_state = 10}, - [2741] = {.lex_state = 141}, - [2742] = {.lex_state = 342, .external_lex_state = 10}, - [2743] = {.lex_state = 342, .external_lex_state = 10}, - [2744] = {.lex_state = 165}, - [2745] = {.lex_state = 342, .external_lex_state = 10}, - [2746] = {.lex_state = 342, .external_lex_state = 10}, + [2739] = {.lex_state = 188, .external_lex_state = 20}, + [2740] = {.lex_state = 293}, + [2741] = {.lex_state = 291, .external_lex_state = 16}, + [2742] = {.lex_state = 293}, + [2743] = {.lex_state = 291, .external_lex_state = 16}, + [2744] = {.lex_state = 291, .external_lex_state = 16}, + [2745] = {.lex_state = 188, .external_lex_state = 20}, + [2746] = {.lex_state = 291, .external_lex_state = 16}, [2747] = {.lex_state = 342, .external_lex_state = 10}, - [2748] = {.lex_state = 103}, - [2749] = {.lex_state = 226, .external_lex_state = 16}, - [2750] = {.lex_state = 235, .external_lex_state = 6}, - [2751] = {.lex_state = 226, .external_lex_state = 16}, - [2752] = {.lex_state = 226, .external_lex_state = 16}, - [2753] = {.lex_state = 103}, - [2754] = {.lex_state = 241, .external_lex_state = 2}, - [2755] = {.lex_state = 103}, - [2756] = {.lex_state = 249, .external_lex_state = 2}, - [2757] = {.lex_state = 103}, - [2758] = {.lex_state = 241, .external_lex_state = 2}, - [2759] = {.lex_state = 193, .external_lex_state = 14}, - [2760] = {.lex_state = 193, .external_lex_state = 14}, - [2761] = {.lex_state = 193, .external_lex_state = 14}, - [2762] = {.lex_state = 291, .external_lex_state = 16}, - [2763] = {.lex_state = 327, .external_lex_state = 22}, - [2764] = {.lex_state = 327, .external_lex_state = 22}, - [2765] = {.lex_state = 103, .external_lex_state = 16}, - [2766] = {.lex_state = 291, .external_lex_state = 16}, + [2748] = {.lex_state = 342, .external_lex_state = 10}, + [2749] = {.lex_state = 141}, + [2750] = {.lex_state = 342, .external_lex_state = 10}, + [2751] = {.lex_state = 342, .external_lex_state = 10}, + [2752] = {.lex_state = 165}, + [2753] = {.lex_state = 342, .external_lex_state = 10}, + [2754] = {.lex_state = 342, .external_lex_state = 10}, + [2755] = {.lex_state = 342, .external_lex_state = 10}, + [2756] = {.lex_state = 103}, + [2757] = {.lex_state = 226, .external_lex_state = 16}, + [2758] = {.lex_state = 235, .external_lex_state = 6}, + [2759] = {.lex_state = 226, .external_lex_state = 16}, + [2760] = {.lex_state = 226, .external_lex_state = 16}, + [2761] = {.lex_state = 103}, + [2762] = {.lex_state = 241, .external_lex_state = 2}, + [2763] = {.lex_state = 103}, + [2764] = {.lex_state = 249, .external_lex_state = 2}, + [2765] = {.lex_state = 103}, + [2766] = {.lex_state = 241, .external_lex_state = 2}, [2767] = {.lex_state = 193, .external_lex_state = 14}, - [2768] = {.lex_state = 291, .external_lex_state = 16}, + [2768] = {.lex_state = 193, .external_lex_state = 14}, [2769] = {.lex_state = 193, .external_lex_state = 14}, [2770] = {.lex_state = 291, .external_lex_state = 16}, - [2771] = {.lex_state = 193, .external_lex_state = 14}, - [2772] = {.lex_state = 291, .external_lex_state = 16}, - [2773] = {.lex_state = 193, .external_lex_state = 14}, + [2771] = {.lex_state = 327, .external_lex_state = 22}, + [2772] = {.lex_state = 327, .external_lex_state = 22}, + [2773] = {.lex_state = 103, .external_lex_state = 16}, [2774] = {.lex_state = 291, .external_lex_state = 16}, - [2775] = {.lex_state = 193, .external_lex_state = 10}, - [2776] = {.lex_state = 193, .external_lex_state = 10}, - [2777] = {.lex_state = 193, .external_lex_state = 10}, + [2775] = {.lex_state = 193, .external_lex_state = 14}, + [2776] = {.lex_state = 291, .external_lex_state = 16}, + [2777] = {.lex_state = 193, .external_lex_state = 14}, [2778] = {.lex_state = 291, .external_lex_state = 16}, - [2779] = {.lex_state = 327, .external_lex_state = 22}, - [2780] = {.lex_state = 327, .external_lex_state = 22}, - [2781] = {.lex_state = 103, .external_lex_state = 16}, + [2779] = {.lex_state = 193, .external_lex_state = 14}, + [2780] = {.lex_state = 291, .external_lex_state = 16}, + [2781] = {.lex_state = 193, .external_lex_state = 14}, [2782] = {.lex_state = 291, .external_lex_state = 16}, [2783] = {.lex_state = 193, .external_lex_state = 10}, - [2784] = {.lex_state = 291, .external_lex_state = 16}, + [2784] = {.lex_state = 193, .external_lex_state = 10}, [2785] = {.lex_state = 193, .external_lex_state = 10}, [2786] = {.lex_state = 291, .external_lex_state = 16}, - [2787] = {.lex_state = 193, .external_lex_state = 10}, - [2788] = {.lex_state = 291, .external_lex_state = 16}, - [2789] = {.lex_state = 193, .external_lex_state = 10}, + [2787] = {.lex_state = 327, .external_lex_state = 22}, + [2788] = {.lex_state = 327, .external_lex_state = 22}, + [2789] = {.lex_state = 103, .external_lex_state = 16}, [2790] = {.lex_state = 291, .external_lex_state = 16}, - [2791] = {.lex_state = 184, .external_lex_state = 5}, - [2792] = {.lex_state = 184, .external_lex_state = 5}, - [2793] = {.lex_state = 184, .external_lex_state = 5}, - [2794] = {.lex_state = 184, .external_lex_state = 5}, - [2795] = {.lex_state = 291, .external_lex_state = 16}, - [2796] = {.lex_state = 184, .external_lex_state = 5}, - [2797] = {.lex_state = 291, .external_lex_state = 16}, - [2798] = {.lex_state = 184, .external_lex_state = 5}, - [2799] = {.lex_state = 291, .external_lex_state = 16}, + [2791] = {.lex_state = 193, .external_lex_state = 10}, + [2792] = {.lex_state = 291, .external_lex_state = 16}, + [2793] = {.lex_state = 193, .external_lex_state = 10}, + [2794] = {.lex_state = 291, .external_lex_state = 16}, + [2795] = {.lex_state = 193, .external_lex_state = 10}, + [2796] = {.lex_state = 291, .external_lex_state = 16}, + [2797] = {.lex_state = 193, .external_lex_state = 10}, + [2798] = {.lex_state = 291, .external_lex_state = 16}, + [2799] = {.lex_state = 184, .external_lex_state = 5}, [2800] = {.lex_state = 184, .external_lex_state = 5}, [2801] = {.lex_state = 184, .external_lex_state = 5}, - [2802] = {.lex_state = 287, .external_lex_state = 5}, - [2803] = {.lex_state = 327, .external_lex_state = 22}, - [2804] = {.lex_state = 327, .external_lex_state = 22}, - [2805] = {.lex_state = 103, .external_lex_state = 16}, - [2806] = {.lex_state = 291, .external_lex_state = 16}, - [2807] = {.lex_state = 287, .external_lex_state = 5}, - [2808] = {.lex_state = 289, .external_lex_state = 16}, - [2809] = {.lex_state = 287, .external_lex_state = 5}, - [2810] = {.lex_state = 293}, - [2811] = {.lex_state = 291, .external_lex_state = 16}, - [2812] = {.lex_state = 287, .external_lex_state = 5}, - [2813] = {.lex_state = 293}, + [2802] = {.lex_state = 184, .external_lex_state = 5}, + [2803] = {.lex_state = 291, .external_lex_state = 16}, + [2804] = {.lex_state = 184, .external_lex_state = 5}, + [2805] = {.lex_state = 291, .external_lex_state = 16}, + [2806] = {.lex_state = 184, .external_lex_state = 5}, + [2807] = {.lex_state = 291, .external_lex_state = 16}, + [2808] = {.lex_state = 184, .external_lex_state = 5}, + [2809] = {.lex_state = 184, .external_lex_state = 5}, + [2810] = {.lex_state = 287, .external_lex_state = 5}, + [2811] = {.lex_state = 327, .external_lex_state = 22}, + [2812] = {.lex_state = 327, .external_lex_state = 22}, + [2813] = {.lex_state = 103, .external_lex_state = 16}, [2814] = {.lex_state = 291, .external_lex_state = 16}, - [2815] = {.lex_state = 293}, - [2816] = {.lex_state = 291, .external_lex_state = 16}, - [2817] = {.lex_state = 291, .external_lex_state = 16}, - [2818] = {.lex_state = 287, .external_lex_state = 5}, + [2815] = {.lex_state = 287, .external_lex_state = 5}, + [2816] = {.lex_state = 289, .external_lex_state = 16}, + [2817] = {.lex_state = 287, .external_lex_state = 5}, + [2818] = {.lex_state = 293}, [2819] = {.lex_state = 291, .external_lex_state = 16}, - [2820] = {.lex_state = 217, .external_lex_state = 11}, - [2821] = {.lex_state = 217, .external_lex_state = 11}, - [2822] = {.lex_state = 217, .external_lex_state = 11}, - [2823] = {.lex_state = 217, .external_lex_state = 11}, + [2820] = {.lex_state = 287, .external_lex_state = 5}, + [2821] = {.lex_state = 293}, + [2822] = {.lex_state = 291, .external_lex_state = 16}, + [2823] = {.lex_state = 293}, [2824] = {.lex_state = 291, .external_lex_state = 16}, - [2825] = {.lex_state = 217, .external_lex_state = 11}, - [2826] = {.lex_state = 291, .external_lex_state = 16}, - [2827] = {.lex_state = 217, .external_lex_state = 11}, - [2828] = {.lex_state = 291, .external_lex_state = 16}, + [2825] = {.lex_state = 291, .external_lex_state = 16}, + [2826] = {.lex_state = 287, .external_lex_state = 5}, + [2827] = {.lex_state = 291, .external_lex_state = 16}, + [2828] = {.lex_state = 217, .external_lex_state = 11}, [2829] = {.lex_state = 217, .external_lex_state = 11}, [2830] = {.lex_state = 217, .external_lex_state = 11}, - [2831] = {.lex_state = 219, .external_lex_state = 13}, - [2832] = {.lex_state = 219, .external_lex_state = 13}, - [2833] = {.lex_state = 219, .external_lex_state = 13}, - [2834] = {.lex_state = 219, .external_lex_state = 13}, - [2835] = {.lex_state = 291, .external_lex_state = 16}, - [2836] = {.lex_state = 219, .external_lex_state = 13}, - [2837] = {.lex_state = 291, .external_lex_state = 16}, - [2838] = {.lex_state = 219, .external_lex_state = 13}, - [2839] = {.lex_state = 291, .external_lex_state = 16}, + [2831] = {.lex_state = 217, .external_lex_state = 11}, + [2832] = {.lex_state = 291, .external_lex_state = 16}, + [2833] = {.lex_state = 217, .external_lex_state = 11}, + [2834] = {.lex_state = 291, .external_lex_state = 16}, + [2835] = {.lex_state = 217, .external_lex_state = 11}, + [2836] = {.lex_state = 291, .external_lex_state = 16}, + [2837] = {.lex_state = 217, .external_lex_state = 11}, + [2838] = {.lex_state = 217, .external_lex_state = 11}, + [2839] = {.lex_state = 219, .external_lex_state = 13}, [2840] = {.lex_state = 219, .external_lex_state = 13}, [2841] = {.lex_state = 219, .external_lex_state = 13}, - [2842] = {.lex_state = 153, .external_lex_state = 14}, - [2843] = {.lex_state = 153, .external_lex_state = 14}, - [2844] = {.lex_state = 153, .external_lex_state = 14}, - [2845] = {.lex_state = 153, .external_lex_state = 14}, - [2846] = {.lex_state = 291, .external_lex_state = 16}, - [2847] = {.lex_state = 153, .external_lex_state = 14}, - [2848] = {.lex_state = 291, .external_lex_state = 16}, - [2849] = {.lex_state = 153, .external_lex_state = 14}, - [2850] = {.lex_state = 291, .external_lex_state = 16}, + [2842] = {.lex_state = 219, .external_lex_state = 13}, + [2843] = {.lex_state = 291, .external_lex_state = 16}, + [2844] = {.lex_state = 219, .external_lex_state = 13}, + [2845] = {.lex_state = 291, .external_lex_state = 16}, + [2846] = {.lex_state = 219, .external_lex_state = 13}, + [2847] = {.lex_state = 291, .external_lex_state = 16}, + [2848] = {.lex_state = 219, .external_lex_state = 13}, + [2849] = {.lex_state = 219, .external_lex_state = 13}, + [2850] = {.lex_state = 153, .external_lex_state = 14}, [2851] = {.lex_state = 153, .external_lex_state = 14}, [2852] = {.lex_state = 153, .external_lex_state = 14}, - [2853] = {.lex_state = 153, .external_lex_state = 10}, - [2854] = {.lex_state = 153, .external_lex_state = 10}, - [2855] = {.lex_state = 153, .external_lex_state = 10}, - [2856] = {.lex_state = 153, .external_lex_state = 10}, - [2857] = {.lex_state = 291, .external_lex_state = 16}, - [2858] = {.lex_state = 153, .external_lex_state = 10}, - [2859] = {.lex_state = 291, .external_lex_state = 16}, - [2860] = {.lex_state = 153, .external_lex_state = 10}, - [2861] = {.lex_state = 291, .external_lex_state = 16}, + [2853] = {.lex_state = 153, .external_lex_state = 14}, + [2854] = {.lex_state = 291, .external_lex_state = 16}, + [2855] = {.lex_state = 153, .external_lex_state = 14}, + [2856] = {.lex_state = 291, .external_lex_state = 16}, + [2857] = {.lex_state = 153, .external_lex_state = 14}, + [2858] = {.lex_state = 291, .external_lex_state = 16}, + [2859] = {.lex_state = 153, .external_lex_state = 14}, + [2860] = {.lex_state = 153, .external_lex_state = 14}, + [2861] = {.lex_state = 153, .external_lex_state = 10}, [2862] = {.lex_state = 153, .external_lex_state = 10}, [2863] = {.lex_state = 153, .external_lex_state = 10}, - [2864] = {.lex_state = 141, .external_lex_state = 15}, - [2865] = {.lex_state = 141, .external_lex_state = 15}, - [2866] = {.lex_state = 141, .external_lex_state = 15}, - [2867] = {.lex_state = 141, .external_lex_state = 15}, - [2868] = {.lex_state = 291, .external_lex_state = 16}, - [2869] = {.lex_state = 141, .external_lex_state = 15}, - [2870] = {.lex_state = 291, .external_lex_state = 16}, - [2871] = {.lex_state = 141, .external_lex_state = 15}, - [2872] = {.lex_state = 291, .external_lex_state = 16}, + [2864] = {.lex_state = 153, .external_lex_state = 10}, + [2865] = {.lex_state = 291, .external_lex_state = 16}, + [2866] = {.lex_state = 153, .external_lex_state = 10}, + [2867] = {.lex_state = 291, .external_lex_state = 16}, + [2868] = {.lex_state = 153, .external_lex_state = 10}, + [2869] = {.lex_state = 291, .external_lex_state = 16}, + [2870] = {.lex_state = 153, .external_lex_state = 10}, + [2871] = {.lex_state = 153, .external_lex_state = 10}, + [2872] = {.lex_state = 141, .external_lex_state = 15}, [2873] = {.lex_state = 141, .external_lex_state = 15}, [2874] = {.lex_state = 141, .external_lex_state = 15}, - [2875] = {.lex_state = 165, .external_lex_state = 13}, - [2876] = {.lex_state = 165, .external_lex_state = 13}, - [2877] = {.lex_state = 165, .external_lex_state = 13}, - [2878] = {.lex_state = 165, .external_lex_state = 13}, - [2879] = {.lex_state = 291, .external_lex_state = 16}, - [2880] = {.lex_state = 165, .external_lex_state = 13}, - [2881] = {.lex_state = 291, .external_lex_state = 16}, - [2882] = {.lex_state = 165, .external_lex_state = 13}, - [2883] = {.lex_state = 291, .external_lex_state = 16}, + [2875] = {.lex_state = 141, .external_lex_state = 15}, + [2876] = {.lex_state = 291, .external_lex_state = 16}, + [2877] = {.lex_state = 141, .external_lex_state = 15}, + [2878] = {.lex_state = 291, .external_lex_state = 16}, + [2879] = {.lex_state = 141, .external_lex_state = 15}, + [2880] = {.lex_state = 291, .external_lex_state = 16}, + [2881] = {.lex_state = 141, .external_lex_state = 15}, + [2882] = {.lex_state = 141, .external_lex_state = 15}, + [2883] = {.lex_state = 165, .external_lex_state = 13}, [2884] = {.lex_state = 165, .external_lex_state = 13}, [2885] = {.lex_state = 165, .external_lex_state = 13}, - [2886] = {.lex_state = 226, .external_lex_state = 16}, - [2887] = {.lex_state = 226, .external_lex_state = 16}, - [2888] = {.lex_state = 327, .external_lex_state = 22}, - [2889] = {.lex_state = 327, .external_lex_state = 22}, - [2890] = {.lex_state = 327, .external_lex_state = 22}, - [2891] = {.lex_state = 103, .external_lex_state = 16}, - [2892] = {.lex_state = 291, .external_lex_state = 16}, - [2893] = {.lex_state = 327, .external_lex_state = 22}, - [2894] = {.lex_state = 289, .external_lex_state = 16}, - [2895] = {.lex_state = 327, .external_lex_state = 22}, - [2896] = {.lex_state = 293}, - [2897] = {.lex_state = 291, .external_lex_state = 16}, + [2886] = {.lex_state = 165, .external_lex_state = 13}, + [2887] = {.lex_state = 291, .external_lex_state = 16}, + [2888] = {.lex_state = 165, .external_lex_state = 13}, + [2889] = {.lex_state = 291, .external_lex_state = 16}, + [2890] = {.lex_state = 165, .external_lex_state = 13}, + [2891] = {.lex_state = 291, .external_lex_state = 16}, + [2892] = {.lex_state = 165, .external_lex_state = 13}, + [2893] = {.lex_state = 165, .external_lex_state = 13}, + [2894] = {.lex_state = 226, .external_lex_state = 16}, + [2895] = {.lex_state = 226, .external_lex_state = 16}, + [2896] = {.lex_state = 327, .external_lex_state = 22}, + [2897] = {.lex_state = 327, .external_lex_state = 22}, [2898] = {.lex_state = 327, .external_lex_state = 22}, - [2899] = {.lex_state = 293}, + [2899] = {.lex_state = 103, .external_lex_state = 16}, [2900] = {.lex_state = 291, .external_lex_state = 16}, - [2901] = {.lex_state = 293}, - [2902] = {.lex_state = 291, .external_lex_state = 16}, - [2903] = {.lex_state = 291, .external_lex_state = 16}, - [2904] = {.lex_state = 327, .external_lex_state = 22}, + [2901] = {.lex_state = 327, .external_lex_state = 22}, + [2902] = {.lex_state = 289, .external_lex_state = 16}, + [2903] = {.lex_state = 327, .external_lex_state = 22}, + [2904] = {.lex_state = 293}, [2905] = {.lex_state = 291, .external_lex_state = 16}, - [2906] = {.lex_state = 291, .external_lex_state = 22}, - [2907] = {.lex_state = 291, .external_lex_state = 22}, - [2908] = {.lex_state = 291, .external_lex_state = 22}, - [2909] = {.lex_state = 291, .external_lex_state = 16}, - [2910] = {.lex_state = 327, .external_lex_state = 22}, - [2911] = {.lex_state = 327, .external_lex_state = 22}, - [2912] = {.lex_state = 103, .external_lex_state = 16}, + [2906] = {.lex_state = 327, .external_lex_state = 22}, + [2907] = {.lex_state = 293}, + [2908] = {.lex_state = 291, .external_lex_state = 16}, + [2909] = {.lex_state = 293}, + [2910] = {.lex_state = 291, .external_lex_state = 16}, + [2911] = {.lex_state = 291, .external_lex_state = 16}, + [2912] = {.lex_state = 327, .external_lex_state = 22}, [2913] = {.lex_state = 291, .external_lex_state = 16}, [2914] = {.lex_state = 291, .external_lex_state = 22}, - [2915] = {.lex_state = 291, .external_lex_state = 16}, + [2915] = {.lex_state = 291, .external_lex_state = 22}, [2916] = {.lex_state = 291, .external_lex_state = 22}, [2917] = {.lex_state = 291, .external_lex_state = 16}, - [2918] = {.lex_state = 291, .external_lex_state = 22}, - [2919] = {.lex_state = 291, .external_lex_state = 16}, - [2920] = {.lex_state = 291, .external_lex_state = 22}, + [2918] = {.lex_state = 327, .external_lex_state = 22}, + [2919] = {.lex_state = 327, .external_lex_state = 22}, + [2920] = {.lex_state = 103, .external_lex_state = 16}, [2921] = {.lex_state = 291, .external_lex_state = 16}, - [2922] = {.lex_state = 162, .external_lex_state = 5}, - [2923] = {.lex_state = 162, .external_lex_state = 5}, - [2924] = {.lex_state = 162, .external_lex_state = 5}, - [2925] = {.lex_state = 241, .external_lex_state = 15}, - [2926] = {.lex_state = 327, .external_lex_state = 22}, - [2927] = {.lex_state = 327, .external_lex_state = 22}, - [2928] = {.lex_state = 103, .external_lex_state = 16}, + [2922] = {.lex_state = 291, .external_lex_state = 22}, + [2923] = {.lex_state = 291, .external_lex_state = 16}, + [2924] = {.lex_state = 291, .external_lex_state = 22}, + [2925] = {.lex_state = 291, .external_lex_state = 16}, + [2926] = {.lex_state = 291, .external_lex_state = 22}, + [2927] = {.lex_state = 291, .external_lex_state = 16}, + [2928] = {.lex_state = 291, .external_lex_state = 22}, [2929] = {.lex_state = 291, .external_lex_state = 16}, - [2930] = {.lex_state = 241, .external_lex_state = 15}, - [2931] = {.lex_state = 289, .external_lex_state = 16}, - [2932] = {.lex_state = 241, .external_lex_state = 15}, - [2933] = {.lex_state = 293}, - [2934] = {.lex_state = 291, .external_lex_state = 16}, - [2935] = {.lex_state = 241, .external_lex_state = 15}, - [2936] = {.lex_state = 293}, + [2930] = {.lex_state = 162, .external_lex_state = 5}, + [2931] = {.lex_state = 162, .external_lex_state = 5}, + [2932] = {.lex_state = 162, .external_lex_state = 5}, + [2933] = {.lex_state = 241, .external_lex_state = 15}, + [2934] = {.lex_state = 327, .external_lex_state = 22}, + [2935] = {.lex_state = 327, .external_lex_state = 22}, + [2936] = {.lex_state = 103, .external_lex_state = 16}, [2937] = {.lex_state = 291, .external_lex_state = 16}, - [2938] = {.lex_state = 293}, - [2939] = {.lex_state = 291, .external_lex_state = 16}, - [2940] = {.lex_state = 291, .external_lex_state = 16}, - [2941] = {.lex_state = 241, .external_lex_state = 15}, + [2938] = {.lex_state = 241, .external_lex_state = 15}, + [2939] = {.lex_state = 289, .external_lex_state = 16}, + [2940] = {.lex_state = 241, .external_lex_state = 15}, + [2941] = {.lex_state = 293}, [2942] = {.lex_state = 291, .external_lex_state = 16}, - [2943] = {.lex_state = 262, .external_lex_state = 2}, - [2944] = {.lex_state = 103}, - [2945] = {.lex_state = 103}, - [2946] = {.lex_state = 103}, - [2947] = {.lex_state = 103}, - [2948] = {.lex_state = 103}, - [2949] = {.lex_state = 103}, - [2950] = {.lex_state = 141}, + [2943] = {.lex_state = 241, .external_lex_state = 15}, + [2944] = {.lex_state = 293}, + [2945] = {.lex_state = 291, .external_lex_state = 16}, + [2946] = {.lex_state = 293}, + [2947] = {.lex_state = 291, .external_lex_state = 16}, + [2948] = {.lex_state = 291, .external_lex_state = 16}, + [2949] = {.lex_state = 241, .external_lex_state = 15}, + [2950] = {.lex_state = 291, .external_lex_state = 16}, [2951] = {.lex_state = 103}, [2952] = {.lex_state = 103}, [2953] = {.lex_state = 103}, - [2954] = {.lex_state = 141}, + [2954] = {.lex_state = 103}, [2955] = {.lex_state = 103}, - [2956] = {.lex_state = 344, .external_lex_state = 13}, - [2957] = {.lex_state = 344, .external_lex_state = 13}, - [2958] = {.lex_state = 103}, - [2959] = {.lex_state = 141}, - [2960] = {.lex_state = 344, .external_lex_state = 13}, - [2961] = {.lex_state = 344, .external_lex_state = 13}, - [2962] = {.lex_state = 165}, - [2963] = {.lex_state = 344, .external_lex_state = 13}, + [2956] = {.lex_state = 103}, + [2957] = {.lex_state = 103}, + [2958] = {.lex_state = 141}, + [2959] = {.lex_state = 103}, + [2960] = {.lex_state = 103}, + [2961] = {.lex_state = 103}, + [2962] = {.lex_state = 141}, + [2963] = {.lex_state = 103}, [2964] = {.lex_state = 344, .external_lex_state = 13}, [2965] = {.lex_state = 344, .external_lex_state = 13}, [2966] = {.lex_state = 103}, - [2967] = {.lex_state = 226, .external_lex_state = 16}, - [2968] = {.lex_state = 235, .external_lex_state = 6}, - [2969] = {.lex_state = 226, .external_lex_state = 16}, - [2970] = {.lex_state = 226, .external_lex_state = 16}, - [2971] = {.lex_state = 103}, - [2972] = {.lex_state = 241, .external_lex_state = 2}, - [2973] = {.lex_state = 103}, - [2974] = {.lex_state = 249, .external_lex_state = 2}, - [2975] = {.lex_state = 103}, - [2976] = {.lex_state = 241, .external_lex_state = 2}, - [2977] = {.lex_state = 237, .external_lex_state = 6}, - [2978] = {.lex_state = 237, .external_lex_state = 23}, - [2979] = {.lex_state = 237, .external_lex_state = 23}, - [2980] = {.lex_state = 237, .external_lex_state = 23}, - [2981] = {.lex_state = 291, .external_lex_state = 16}, - [2982] = {.lex_state = 327, .external_lex_state = 22}, - [2983] = {.lex_state = 327, .external_lex_state = 22}, - [2984] = {.lex_state = 103, .external_lex_state = 16}, - [2985] = {.lex_state = 291, .external_lex_state = 16}, + [2967] = {.lex_state = 141}, + [2968] = {.lex_state = 344, .external_lex_state = 13}, + [2969] = {.lex_state = 344, .external_lex_state = 13}, + [2970] = {.lex_state = 165}, + [2971] = {.lex_state = 344, .external_lex_state = 13}, + [2972] = {.lex_state = 344, .external_lex_state = 13}, + [2973] = {.lex_state = 344, .external_lex_state = 13}, + [2974] = {.lex_state = 103}, + [2975] = {.lex_state = 226, .external_lex_state = 16}, + [2976] = {.lex_state = 235, .external_lex_state = 6}, + [2977] = {.lex_state = 226, .external_lex_state = 16}, + [2978] = {.lex_state = 226, .external_lex_state = 16}, + [2979] = {.lex_state = 103}, + [2980] = {.lex_state = 241, .external_lex_state = 2}, + [2981] = {.lex_state = 103}, + [2982] = {.lex_state = 249, .external_lex_state = 2}, + [2983] = {.lex_state = 103}, + [2984] = {.lex_state = 241, .external_lex_state = 2}, + [2985] = {.lex_state = 237, .external_lex_state = 6}, [2986] = {.lex_state = 237, .external_lex_state = 23}, - [2987] = {.lex_state = 291, .external_lex_state = 16}, + [2987] = {.lex_state = 237, .external_lex_state = 23}, [2988] = {.lex_state = 237, .external_lex_state = 23}, [2989] = {.lex_state = 291, .external_lex_state = 16}, - [2990] = {.lex_state = 237, .external_lex_state = 23}, - [2991] = {.lex_state = 291, .external_lex_state = 16}, - [2992] = {.lex_state = 237, .external_lex_state = 23}, + [2990] = {.lex_state = 327, .external_lex_state = 22}, + [2991] = {.lex_state = 327, .external_lex_state = 22}, + [2992] = {.lex_state = 103, .external_lex_state = 16}, [2993] = {.lex_state = 291, .external_lex_state = 16}, - [2994] = {.lex_state = 237, .external_lex_state = 13}, - [2995] = {.lex_state = 237, .external_lex_state = 13}, - [2996] = {.lex_state = 237, .external_lex_state = 13}, + [2994] = {.lex_state = 237, .external_lex_state = 23}, + [2995] = {.lex_state = 291, .external_lex_state = 16}, + [2996] = {.lex_state = 237, .external_lex_state = 23}, [2997] = {.lex_state = 291, .external_lex_state = 16}, - [2998] = {.lex_state = 327, .external_lex_state = 22}, - [2999] = {.lex_state = 327, .external_lex_state = 22}, - [3000] = {.lex_state = 103, .external_lex_state = 16}, + [2998] = {.lex_state = 237, .external_lex_state = 23}, + [2999] = {.lex_state = 291, .external_lex_state = 16}, + [3000] = {.lex_state = 237, .external_lex_state = 23}, [3001] = {.lex_state = 291, .external_lex_state = 16}, [3002] = {.lex_state = 237, .external_lex_state = 13}, - [3003] = {.lex_state = 291, .external_lex_state = 16}, + [3003] = {.lex_state = 237, .external_lex_state = 13}, [3004] = {.lex_state = 237, .external_lex_state = 13}, [3005] = {.lex_state = 291, .external_lex_state = 16}, - [3006] = {.lex_state = 237, .external_lex_state = 13}, - [3007] = {.lex_state = 291, .external_lex_state = 16}, - [3008] = {.lex_state = 237, .external_lex_state = 13}, + [3006] = {.lex_state = 327, .external_lex_state = 22}, + [3007] = {.lex_state = 327, .external_lex_state = 22}, + [3008] = {.lex_state = 103, .external_lex_state = 16}, [3009] = {.lex_state = 291, .external_lex_state = 16}, - [3010] = {.lex_state = 143, .external_lex_state = 17}, - [3011] = {.lex_state = 143, .external_lex_state = 17}, - [3012] = {.lex_state = 143, .external_lex_state = 17}, - [3013] = {.lex_state = 143, .external_lex_state = 17}, - [3014] = {.lex_state = 291, .external_lex_state = 16}, - [3015] = {.lex_state = 143, .external_lex_state = 17}, - [3016] = {.lex_state = 291, .external_lex_state = 16}, - [3017] = {.lex_state = 143, .external_lex_state = 17}, - [3018] = {.lex_state = 291, .external_lex_state = 16}, + [3010] = {.lex_state = 237, .external_lex_state = 13}, + [3011] = {.lex_state = 291, .external_lex_state = 16}, + [3012] = {.lex_state = 237, .external_lex_state = 13}, + [3013] = {.lex_state = 291, .external_lex_state = 16}, + [3014] = {.lex_state = 237, .external_lex_state = 13}, + [3015] = {.lex_state = 291, .external_lex_state = 16}, + [3016] = {.lex_state = 237, .external_lex_state = 13}, + [3017] = {.lex_state = 291, .external_lex_state = 16}, + [3018] = {.lex_state = 143, .external_lex_state = 17}, [3019] = {.lex_state = 143, .external_lex_state = 17}, [3020] = {.lex_state = 143, .external_lex_state = 17}, - [3021] = {.lex_state = 300, .external_lex_state = 17}, - [3022] = {.lex_state = 327, .external_lex_state = 22}, - [3023] = {.lex_state = 327, .external_lex_state = 22}, - [3024] = {.lex_state = 103, .external_lex_state = 16}, - [3025] = {.lex_state = 291, .external_lex_state = 16}, - [3026] = {.lex_state = 300, .external_lex_state = 17}, - [3027] = {.lex_state = 289, .external_lex_state = 16}, - [3028] = {.lex_state = 300, .external_lex_state = 17}, - [3029] = {.lex_state = 293}, - [3030] = {.lex_state = 291, .external_lex_state = 16}, - [3031] = {.lex_state = 300, .external_lex_state = 17}, - [3032] = {.lex_state = 293}, + [3021] = {.lex_state = 143, .external_lex_state = 17}, + [3022] = {.lex_state = 291, .external_lex_state = 16}, + [3023] = {.lex_state = 143, .external_lex_state = 17}, + [3024] = {.lex_state = 291, .external_lex_state = 16}, + [3025] = {.lex_state = 143, .external_lex_state = 17}, + [3026] = {.lex_state = 291, .external_lex_state = 16}, + [3027] = {.lex_state = 143, .external_lex_state = 17}, + [3028] = {.lex_state = 143, .external_lex_state = 17}, + [3029] = {.lex_state = 300, .external_lex_state = 17}, + [3030] = {.lex_state = 327, .external_lex_state = 22}, + [3031] = {.lex_state = 327, .external_lex_state = 22}, + [3032] = {.lex_state = 103, .external_lex_state = 16}, [3033] = {.lex_state = 291, .external_lex_state = 16}, - [3034] = {.lex_state = 293}, - [3035] = {.lex_state = 291, .external_lex_state = 16}, - [3036] = {.lex_state = 291, .external_lex_state = 16}, - [3037] = {.lex_state = 300, .external_lex_state = 17}, + [3034] = {.lex_state = 300, .external_lex_state = 17}, + [3035] = {.lex_state = 289, .external_lex_state = 16}, + [3036] = {.lex_state = 300, .external_lex_state = 17}, + [3037] = {.lex_state = 293}, [3038] = {.lex_state = 291, .external_lex_state = 16}, - [3039] = {.lex_state = 249, .external_lex_state = 15}, - [3040] = {.lex_state = 327, .external_lex_state = 22}, - [3041] = {.lex_state = 327, .external_lex_state = 22}, - [3042] = {.lex_state = 103, .external_lex_state = 16}, + [3039] = {.lex_state = 300, .external_lex_state = 17}, + [3040] = {.lex_state = 293}, + [3041] = {.lex_state = 291, .external_lex_state = 16}, + [3042] = {.lex_state = 293}, [3043] = {.lex_state = 291, .external_lex_state = 16}, - [3044] = {.lex_state = 249, .external_lex_state = 15}, - [3045] = {.lex_state = 289, .external_lex_state = 16}, - [3046] = {.lex_state = 249, .external_lex_state = 15}, - [3047] = {.lex_state = 293}, - [3048] = {.lex_state = 291, .external_lex_state = 16}, - [3049] = {.lex_state = 249, .external_lex_state = 15}, - [3050] = {.lex_state = 293}, + [3044] = {.lex_state = 291, .external_lex_state = 16}, + [3045] = {.lex_state = 300, .external_lex_state = 17}, + [3046] = {.lex_state = 291, .external_lex_state = 16}, + [3047] = {.lex_state = 249, .external_lex_state = 15}, + [3048] = {.lex_state = 327, .external_lex_state = 22}, + [3049] = {.lex_state = 327, .external_lex_state = 22}, + [3050] = {.lex_state = 103, .external_lex_state = 16}, [3051] = {.lex_state = 291, .external_lex_state = 16}, - [3052] = {.lex_state = 293}, - [3053] = {.lex_state = 291, .external_lex_state = 16}, - [3054] = {.lex_state = 291, .external_lex_state = 16}, - [3055] = {.lex_state = 249, .external_lex_state = 15}, + [3052] = {.lex_state = 249, .external_lex_state = 15}, + [3053] = {.lex_state = 289, .external_lex_state = 16}, + [3054] = {.lex_state = 249, .external_lex_state = 15}, + [3055] = {.lex_state = 293}, [3056] = {.lex_state = 291, .external_lex_state = 16}, - [3057] = {.lex_state = 346, .external_lex_state = 13}, - [3058] = {.lex_state = 346, .external_lex_state = 13}, - [3059] = {.lex_state = 141}, - [3060] = {.lex_state = 346, .external_lex_state = 13}, - [3061] = {.lex_state = 346, .external_lex_state = 13}, - [3062] = {.lex_state = 165}, - [3063] = {.lex_state = 346, .external_lex_state = 13}, - [3064] = {.lex_state = 346, .external_lex_state = 13}, + [3057] = {.lex_state = 249, .external_lex_state = 15}, + [3058] = {.lex_state = 293}, + [3059] = {.lex_state = 291, .external_lex_state = 16}, + [3060] = {.lex_state = 293}, + [3061] = {.lex_state = 291, .external_lex_state = 16}, + [3062] = {.lex_state = 291, .external_lex_state = 16}, + [3063] = {.lex_state = 249, .external_lex_state = 15}, + [3064] = {.lex_state = 291, .external_lex_state = 16}, [3065] = {.lex_state = 346, .external_lex_state = 13}, - [3066] = {.lex_state = 103}, - [3067] = {.lex_state = 226, .external_lex_state = 16}, - [3068] = {.lex_state = 235, .external_lex_state = 6}, - [3069] = {.lex_state = 226, .external_lex_state = 16}, - [3070] = {.lex_state = 226, .external_lex_state = 16}, - [3071] = {.lex_state = 103}, - [3072] = {.lex_state = 241, .external_lex_state = 2}, - [3073] = {.lex_state = 103}, - [3074] = {.lex_state = 249, .external_lex_state = 2}, - [3075] = {.lex_state = 103}, - [3076] = {.lex_state = 241, .external_lex_state = 2}, - [3077] = {.lex_state = 243, .external_lex_state = 23}, - [3078] = {.lex_state = 243, .external_lex_state = 23}, - [3079] = {.lex_state = 243, .external_lex_state = 23}, - [3080] = {.lex_state = 291, .external_lex_state = 16}, - [3081] = {.lex_state = 327, .external_lex_state = 22}, - [3082] = {.lex_state = 327, .external_lex_state = 22}, - [3083] = {.lex_state = 103, .external_lex_state = 16}, - [3084] = {.lex_state = 291, .external_lex_state = 16}, + [3066] = {.lex_state = 346, .external_lex_state = 13}, + [3067] = {.lex_state = 141}, + [3068] = {.lex_state = 346, .external_lex_state = 13}, + [3069] = {.lex_state = 346, .external_lex_state = 13}, + [3070] = {.lex_state = 165}, + [3071] = {.lex_state = 346, .external_lex_state = 13}, + [3072] = {.lex_state = 346, .external_lex_state = 13}, + [3073] = {.lex_state = 346, .external_lex_state = 13}, + [3074] = {.lex_state = 103}, + [3075] = {.lex_state = 226, .external_lex_state = 16}, + [3076] = {.lex_state = 235, .external_lex_state = 6}, + [3077] = {.lex_state = 226, .external_lex_state = 16}, + [3078] = {.lex_state = 226, .external_lex_state = 16}, + [3079] = {.lex_state = 103}, + [3080] = {.lex_state = 241, .external_lex_state = 2}, + [3081] = {.lex_state = 103}, + [3082] = {.lex_state = 249, .external_lex_state = 2}, + [3083] = {.lex_state = 103}, + [3084] = {.lex_state = 241, .external_lex_state = 2}, [3085] = {.lex_state = 243, .external_lex_state = 23}, - [3086] = {.lex_state = 291, .external_lex_state = 16}, + [3086] = {.lex_state = 243, .external_lex_state = 23}, [3087] = {.lex_state = 243, .external_lex_state = 23}, [3088] = {.lex_state = 291, .external_lex_state = 16}, - [3089] = {.lex_state = 243, .external_lex_state = 23}, - [3090] = {.lex_state = 291, .external_lex_state = 16}, - [3091] = {.lex_state = 243, .external_lex_state = 23}, + [3089] = {.lex_state = 327, .external_lex_state = 22}, + [3090] = {.lex_state = 327, .external_lex_state = 22}, + [3091] = {.lex_state = 103, .external_lex_state = 16}, [3092] = {.lex_state = 291, .external_lex_state = 16}, - [3093] = {.lex_state = 243, .external_lex_state = 13}, - [3094] = {.lex_state = 243, .external_lex_state = 13}, - [3095] = {.lex_state = 243, .external_lex_state = 13}, + [3093] = {.lex_state = 243, .external_lex_state = 23}, + [3094] = {.lex_state = 291, .external_lex_state = 16}, + [3095] = {.lex_state = 243, .external_lex_state = 23}, [3096] = {.lex_state = 291, .external_lex_state = 16}, - [3097] = {.lex_state = 327, .external_lex_state = 22}, - [3098] = {.lex_state = 327, .external_lex_state = 22}, - [3099] = {.lex_state = 103, .external_lex_state = 16}, + [3097] = {.lex_state = 243, .external_lex_state = 23}, + [3098] = {.lex_state = 291, .external_lex_state = 16}, + [3099] = {.lex_state = 243, .external_lex_state = 23}, [3100] = {.lex_state = 291, .external_lex_state = 16}, [3101] = {.lex_state = 243, .external_lex_state = 13}, - [3102] = {.lex_state = 291, .external_lex_state = 16}, + [3102] = {.lex_state = 243, .external_lex_state = 13}, [3103] = {.lex_state = 243, .external_lex_state = 13}, [3104] = {.lex_state = 291, .external_lex_state = 16}, - [3105] = {.lex_state = 243, .external_lex_state = 13}, - [3106] = {.lex_state = 291, .external_lex_state = 16}, - [3107] = {.lex_state = 243, .external_lex_state = 13}, + [3105] = {.lex_state = 327, .external_lex_state = 22}, + [3106] = {.lex_state = 327, .external_lex_state = 22}, + [3107] = {.lex_state = 103, .external_lex_state = 16}, [3108] = {.lex_state = 291, .external_lex_state = 16}, - [3109] = {.lex_state = 245, .external_lex_state = 17}, - [3110] = {.lex_state = 245, .external_lex_state = 17}, - [3111] = {.lex_state = 245, .external_lex_state = 17}, - [3112] = {.lex_state = 245, .external_lex_state = 17}, - [3113] = {.lex_state = 291, .external_lex_state = 16}, - [3114] = {.lex_state = 245, .external_lex_state = 17}, - [3115] = {.lex_state = 291, .external_lex_state = 16}, - [3116] = {.lex_state = 245, .external_lex_state = 17}, - [3117] = {.lex_state = 291, .external_lex_state = 16}, + [3109] = {.lex_state = 243, .external_lex_state = 13}, + [3110] = {.lex_state = 291, .external_lex_state = 16}, + [3111] = {.lex_state = 243, .external_lex_state = 13}, + [3112] = {.lex_state = 291, .external_lex_state = 16}, + [3113] = {.lex_state = 243, .external_lex_state = 13}, + [3114] = {.lex_state = 291, .external_lex_state = 16}, + [3115] = {.lex_state = 243, .external_lex_state = 13}, + [3116] = {.lex_state = 291, .external_lex_state = 16}, + [3117] = {.lex_state = 245, .external_lex_state = 17}, [3118] = {.lex_state = 245, .external_lex_state = 17}, [3119] = {.lex_state = 245, .external_lex_state = 17}, - [3120] = {.lex_state = 302, .external_lex_state = 17}, - [3121] = {.lex_state = 327, .external_lex_state = 22}, - [3122] = {.lex_state = 327, .external_lex_state = 22}, - [3123] = {.lex_state = 103, .external_lex_state = 16}, - [3124] = {.lex_state = 291, .external_lex_state = 16}, - [3125] = {.lex_state = 302, .external_lex_state = 17}, - [3126] = {.lex_state = 289, .external_lex_state = 16}, - [3127] = {.lex_state = 302, .external_lex_state = 17}, - [3128] = {.lex_state = 293}, - [3129] = {.lex_state = 291, .external_lex_state = 16}, - [3130] = {.lex_state = 302, .external_lex_state = 17}, - [3131] = {.lex_state = 293}, + [3120] = {.lex_state = 245, .external_lex_state = 17}, + [3121] = {.lex_state = 291, .external_lex_state = 16}, + [3122] = {.lex_state = 245, .external_lex_state = 17}, + [3123] = {.lex_state = 291, .external_lex_state = 16}, + [3124] = {.lex_state = 245, .external_lex_state = 17}, + [3125] = {.lex_state = 291, .external_lex_state = 16}, + [3126] = {.lex_state = 245, .external_lex_state = 17}, + [3127] = {.lex_state = 245, .external_lex_state = 17}, + [3128] = {.lex_state = 302, .external_lex_state = 17}, + [3129] = {.lex_state = 327, .external_lex_state = 22}, + [3130] = {.lex_state = 327, .external_lex_state = 22}, + [3131] = {.lex_state = 103, .external_lex_state = 16}, [3132] = {.lex_state = 291, .external_lex_state = 16}, - [3133] = {.lex_state = 293}, - [3134] = {.lex_state = 291, .external_lex_state = 16}, - [3135] = {.lex_state = 291, .external_lex_state = 16}, - [3136] = {.lex_state = 302, .external_lex_state = 17}, + [3133] = {.lex_state = 302, .external_lex_state = 17}, + [3134] = {.lex_state = 289, .external_lex_state = 16}, + [3135] = {.lex_state = 302, .external_lex_state = 17}, + [3136] = {.lex_state = 293}, [3137] = {.lex_state = 291, .external_lex_state = 16}, - [3138] = {.lex_state = 258, .external_lex_state = 5}, - [3139] = {.lex_state = 258, .external_lex_state = 5}, - [3140] = {.lex_state = 258, .external_lex_state = 5}, - [3141] = {.lex_state = 291, .external_lex_state = 16}, - [3142] = {.lex_state = 327, .external_lex_state = 22}, - [3143] = {.lex_state = 327, .external_lex_state = 22}, - [3144] = {.lex_state = 103, .external_lex_state = 16}, + [3138] = {.lex_state = 302, .external_lex_state = 17}, + [3139] = {.lex_state = 293}, + [3140] = {.lex_state = 291, .external_lex_state = 16}, + [3141] = {.lex_state = 293}, + [3142] = {.lex_state = 291, .external_lex_state = 16}, + [3143] = {.lex_state = 291, .external_lex_state = 16}, + [3144] = {.lex_state = 302, .external_lex_state = 17}, [3145] = {.lex_state = 291, .external_lex_state = 16}, [3146] = {.lex_state = 258, .external_lex_state = 5}, - [3147] = {.lex_state = 291, .external_lex_state = 16}, + [3147] = {.lex_state = 258, .external_lex_state = 5}, [3148] = {.lex_state = 258, .external_lex_state = 5}, [3149] = {.lex_state = 291, .external_lex_state = 16}, - [3150] = {.lex_state = 258, .external_lex_state = 5}, - [3151] = {.lex_state = 291, .external_lex_state = 16}, - [3152] = {.lex_state = 258, .external_lex_state = 5}, + [3150] = {.lex_state = 327, .external_lex_state = 22}, + [3151] = {.lex_state = 327, .external_lex_state = 22}, + [3152] = {.lex_state = 103, .external_lex_state = 16}, [3153] = {.lex_state = 291, .external_lex_state = 16}, - [3154] = {.lex_state = 304, .external_lex_state = 24}, - [3155] = {.lex_state = 327, .external_lex_state = 22}, - [3156] = {.lex_state = 327, .external_lex_state = 22}, - [3157] = {.lex_state = 103, .external_lex_state = 16}, - [3158] = {.lex_state = 291, .external_lex_state = 16}, - [3159] = {.lex_state = 304, .external_lex_state = 24}, - [3160] = {.lex_state = 289, .external_lex_state = 16}, - [3161] = {.lex_state = 304, .external_lex_state = 24}, - [3162] = {.lex_state = 293}, - [3163] = {.lex_state = 291, .external_lex_state = 16}, - [3164] = {.lex_state = 304, .external_lex_state = 24}, - [3165] = {.lex_state = 293}, + [3154] = {.lex_state = 258, .external_lex_state = 5}, + [3155] = {.lex_state = 291, .external_lex_state = 16}, + [3156] = {.lex_state = 258, .external_lex_state = 5}, + [3157] = {.lex_state = 291, .external_lex_state = 16}, + [3158] = {.lex_state = 258, .external_lex_state = 5}, + [3159] = {.lex_state = 291, .external_lex_state = 16}, + [3160] = {.lex_state = 258, .external_lex_state = 5}, + [3161] = {.lex_state = 291, .external_lex_state = 16}, + [3162] = {.lex_state = 304, .external_lex_state = 24}, + [3163] = {.lex_state = 327, .external_lex_state = 22}, + [3164] = {.lex_state = 327, .external_lex_state = 22}, + [3165] = {.lex_state = 103, .external_lex_state = 16}, [3166] = {.lex_state = 291, .external_lex_state = 16}, - [3167] = {.lex_state = 293}, - [3168] = {.lex_state = 291, .external_lex_state = 16}, - [3169] = {.lex_state = 291, .external_lex_state = 16}, - [3170] = {.lex_state = 304, .external_lex_state = 24}, + [3167] = {.lex_state = 304, .external_lex_state = 24}, + [3168] = {.lex_state = 289, .external_lex_state = 16}, + [3169] = {.lex_state = 304, .external_lex_state = 24}, + [3170] = {.lex_state = 293}, [3171] = {.lex_state = 291, .external_lex_state = 16}, - [3172] = {.lex_state = 260, .external_lex_state = 11}, - [3173] = {.lex_state = 260, .external_lex_state = 11}, - [3174] = {.lex_state = 260, .external_lex_state = 11}, - [3175] = {.lex_state = 260, .external_lex_state = 11}, + [3172] = {.lex_state = 304, .external_lex_state = 24}, + [3173] = {.lex_state = 293}, + [3174] = {.lex_state = 291, .external_lex_state = 16}, + [3175] = {.lex_state = 293}, [3176] = {.lex_state = 291, .external_lex_state = 16}, - [3177] = {.lex_state = 260, .external_lex_state = 11}, - [3178] = {.lex_state = 291, .external_lex_state = 16}, - [3179] = {.lex_state = 260, .external_lex_state = 11}, - [3180] = {.lex_state = 291, .external_lex_state = 16}, + [3177] = {.lex_state = 291, .external_lex_state = 16}, + [3178] = {.lex_state = 304, .external_lex_state = 24}, + [3179] = {.lex_state = 291, .external_lex_state = 16}, + [3180] = {.lex_state = 260, .external_lex_state = 11}, [3181] = {.lex_state = 260, .external_lex_state = 11}, [3182] = {.lex_state = 260, .external_lex_state = 11}, - [3183] = {.lex_state = 311, .external_lex_state = 13}, - [3184] = {.lex_state = 311, .external_lex_state = 13}, - [3185] = {.lex_state = 311, .external_lex_state = 13}, + [3183] = {.lex_state = 260, .external_lex_state = 11}, + [3184] = {.lex_state = 291, .external_lex_state = 16}, + [3185] = {.lex_state = 260, .external_lex_state = 11}, [3186] = {.lex_state = 291, .external_lex_state = 16}, - [3187] = {.lex_state = 327, .external_lex_state = 22}, - [3188] = {.lex_state = 327, .external_lex_state = 22}, - [3189] = {.lex_state = 103, .external_lex_state = 16}, - [3190] = {.lex_state = 291, .external_lex_state = 16}, + [3187] = {.lex_state = 260, .external_lex_state = 11}, + [3188] = {.lex_state = 291, .external_lex_state = 16}, + [3189] = {.lex_state = 260, .external_lex_state = 11}, + [3190] = {.lex_state = 260, .external_lex_state = 11}, [3191] = {.lex_state = 311, .external_lex_state = 13}, - [3192] = {.lex_state = 291, .external_lex_state = 16}, + [3192] = {.lex_state = 311, .external_lex_state = 13}, [3193] = {.lex_state = 311, .external_lex_state = 13}, [3194] = {.lex_state = 291, .external_lex_state = 16}, - [3195] = {.lex_state = 311, .external_lex_state = 13}, - [3196] = {.lex_state = 291, .external_lex_state = 16}, - [3197] = {.lex_state = 311, .external_lex_state = 13}, + [3195] = {.lex_state = 327, .external_lex_state = 22}, + [3196] = {.lex_state = 327, .external_lex_state = 22}, + [3197] = {.lex_state = 103, .external_lex_state = 16}, [3198] = {.lex_state = 291, .external_lex_state = 16}, - [3199] = {.lex_state = 182, .external_lex_state = 20}, - [3200] = {.lex_state = 182, .external_lex_state = 20}, - [3201] = {.lex_state = 182, .external_lex_state = 20}, - [3202] = {.lex_state = 182, .external_lex_state = 20}, - [3203] = {.lex_state = 291, .external_lex_state = 16}, - [3204] = {.lex_state = 182, .external_lex_state = 20}, - [3205] = {.lex_state = 291, .external_lex_state = 16}, - [3206] = {.lex_state = 182, .external_lex_state = 20}, - [3207] = {.lex_state = 291, .external_lex_state = 16}, + [3199] = {.lex_state = 311, .external_lex_state = 13}, + [3200] = {.lex_state = 291, .external_lex_state = 16}, + [3201] = {.lex_state = 311, .external_lex_state = 13}, + [3202] = {.lex_state = 291, .external_lex_state = 16}, + [3203] = {.lex_state = 311, .external_lex_state = 13}, + [3204] = {.lex_state = 291, .external_lex_state = 16}, + [3205] = {.lex_state = 311, .external_lex_state = 13}, + [3206] = {.lex_state = 291, .external_lex_state = 16}, + [3207] = {.lex_state = 182, .external_lex_state = 20}, [3208] = {.lex_state = 182, .external_lex_state = 20}, [3209] = {.lex_state = 182, .external_lex_state = 20}, - [3210] = {.lex_state = 313, .external_lex_state = 10}, - [3211] = {.lex_state = 313, .external_lex_state = 10}, - [3212] = {.lex_state = 313, .external_lex_state = 10}, + [3210] = {.lex_state = 182, .external_lex_state = 20}, + [3211] = {.lex_state = 291, .external_lex_state = 16}, + [3212] = {.lex_state = 182, .external_lex_state = 20}, [3213] = {.lex_state = 291, .external_lex_state = 16}, - [3214] = {.lex_state = 327, .external_lex_state = 22}, - [3215] = {.lex_state = 327, .external_lex_state = 22}, - [3216] = {.lex_state = 103, .external_lex_state = 16}, - [3217] = {.lex_state = 291, .external_lex_state = 16}, + [3214] = {.lex_state = 182, .external_lex_state = 20}, + [3215] = {.lex_state = 291, .external_lex_state = 16}, + [3216] = {.lex_state = 182, .external_lex_state = 20}, + [3217] = {.lex_state = 182, .external_lex_state = 20}, [3218] = {.lex_state = 313, .external_lex_state = 10}, - [3219] = {.lex_state = 291, .external_lex_state = 16}, + [3219] = {.lex_state = 313, .external_lex_state = 10}, [3220] = {.lex_state = 313, .external_lex_state = 10}, [3221] = {.lex_state = 291, .external_lex_state = 16}, - [3222] = {.lex_state = 313, .external_lex_state = 10}, - [3223] = {.lex_state = 291, .external_lex_state = 16}, - [3224] = {.lex_state = 313, .external_lex_state = 10}, + [3222] = {.lex_state = 327, .external_lex_state = 22}, + [3223] = {.lex_state = 327, .external_lex_state = 22}, + [3224] = {.lex_state = 103, .external_lex_state = 16}, [3225] = {.lex_state = 291, .external_lex_state = 16}, - [3226] = {.lex_state = 283, .external_lex_state = 4}, - [3227] = {.lex_state = 186, .external_lex_state = 9}, - [3228] = {.lex_state = 358, .external_lex_state = 8}, - [3229] = {.lex_state = 103}, - [3230] = {.lex_state = 103}, - [3231] = {.lex_state = 217, .external_lex_state = 12}, - [3232] = {.lex_state = 219}, - [3233] = {.lex_state = 103}, - [3234] = {.lex_state = 348, .external_lex_state = 14}, - [3235] = {.lex_state = 165}, - [3236] = {.lex_state = 170}, - [3237] = {.lex_state = 348, .external_lex_state = 14}, - [3238] = {.lex_state = 175, .external_lex_state = 6}, - [3239] = {.lex_state = 20, .external_lex_state = 2}, - [3240] = {.lex_state = 20, .external_lex_state = 2}, - [3241] = {.lex_state = 20, .external_lex_state = 2}, - [3242] = {.lex_state = 348, .external_lex_state = 3}, - [3243] = {.lex_state = 348, .external_lex_state = 3}, - [3244] = {.lex_state = 103}, - [3245] = {.lex_state = 348, .external_lex_state = 3}, - [3246] = {.lex_state = 348, .external_lex_state = 10}, - [3247] = {.lex_state = 165}, - [3248] = {.lex_state = 170}, - [3249] = {.lex_state = 348, .external_lex_state = 10}, - [3250] = {.lex_state = 175, .external_lex_state = 6}, - [3251] = {.lex_state = 20, .external_lex_state = 2}, - [3252] = {.lex_state = 20, .external_lex_state = 2}, - [3253] = {.lex_state = 20, .external_lex_state = 2}, - [3254] = {.lex_state = 348, .external_lex_state = 4}, - [3255] = {.lex_state = 348, .external_lex_state = 4}, - [3256] = {.lex_state = 348, .external_lex_state = 4}, - [3257] = {.lex_state = 141}, - [3258] = {.lex_state = 354, .external_lex_state = 5}, - [3259] = {.lex_state = 354, .external_lex_state = 5}, - [3260] = {.lex_state = 165}, - [3261] = {.lex_state = 354, .external_lex_state = 5}, - [3262] = {.lex_state = 354, .external_lex_state = 5}, - [3263] = {.lex_state = 354, .external_lex_state = 5}, - [3264] = {.lex_state = 103}, - [3265] = {.lex_state = 226, .external_lex_state = 16}, - [3266] = {.lex_state = 235, .external_lex_state = 6}, - [3267] = {.lex_state = 226, .external_lex_state = 16}, - [3268] = {.lex_state = 226, .external_lex_state = 16}, - [3269] = {.lex_state = 103}, - [3270] = {.lex_state = 241, .external_lex_state = 2}, + [3226] = {.lex_state = 313, .external_lex_state = 10}, + [3227] = {.lex_state = 291, .external_lex_state = 16}, + [3228] = {.lex_state = 313, .external_lex_state = 10}, + [3229] = {.lex_state = 291, .external_lex_state = 16}, + [3230] = {.lex_state = 313, .external_lex_state = 10}, + [3231] = {.lex_state = 291, .external_lex_state = 16}, + [3232] = {.lex_state = 313, .external_lex_state = 10}, + [3233] = {.lex_state = 291, .external_lex_state = 16}, + [3234] = {.lex_state = 186, .external_lex_state = 9}, + [3235] = {.lex_state = 358, .external_lex_state = 8}, + [3236] = {.lex_state = 103}, + [3237] = {.lex_state = 103}, + [3238] = {.lex_state = 217, .external_lex_state = 12}, + [3239] = {.lex_state = 219}, + [3240] = {.lex_state = 103}, + [3241] = {.lex_state = 348, .external_lex_state = 14}, + [3242] = {.lex_state = 165}, + [3243] = {.lex_state = 170}, + [3244] = {.lex_state = 348, .external_lex_state = 14}, + [3245] = {.lex_state = 175, .external_lex_state = 6}, + [3246] = {.lex_state = 20, .external_lex_state = 2}, + [3247] = {.lex_state = 20, .external_lex_state = 2}, + [3248] = {.lex_state = 20, .external_lex_state = 2}, + [3249] = {.lex_state = 348, .external_lex_state = 3}, + [3250] = {.lex_state = 348, .external_lex_state = 3}, + [3251] = {.lex_state = 103}, + [3252] = {.lex_state = 348, .external_lex_state = 3}, + [3253] = {.lex_state = 348, .external_lex_state = 10}, + [3254] = {.lex_state = 165}, + [3255] = {.lex_state = 170}, + [3256] = {.lex_state = 348, .external_lex_state = 10}, + [3257] = {.lex_state = 175, .external_lex_state = 6}, + [3258] = {.lex_state = 20, .external_lex_state = 2}, + [3259] = {.lex_state = 20, .external_lex_state = 2}, + [3260] = {.lex_state = 20, .external_lex_state = 2}, + [3261] = {.lex_state = 348, .external_lex_state = 4}, + [3262] = {.lex_state = 348, .external_lex_state = 4}, + [3263] = {.lex_state = 348, .external_lex_state = 4}, + [3264] = {.lex_state = 141}, + [3265] = {.lex_state = 354, .external_lex_state = 5}, + [3266] = {.lex_state = 354, .external_lex_state = 5}, + [3267] = {.lex_state = 165}, + [3268] = {.lex_state = 354, .external_lex_state = 5}, + [3269] = {.lex_state = 354, .external_lex_state = 5}, + [3270] = {.lex_state = 354, .external_lex_state = 5}, [3271] = {.lex_state = 103}, - [3272] = {.lex_state = 249, .external_lex_state = 2}, - [3273] = {.lex_state = 103}, - [3274] = {.lex_state = 241, .external_lex_state = 2}, - [3275] = {.lex_state = 103}, - [3276] = {.lex_state = 20, .external_lex_state = 2}, - [3277] = {.lex_state = 339, .external_lex_state = 2}, - [3278] = {.lex_state = 20, .external_lex_state = 2}, - [3279] = {.lex_state = 339, .external_lex_state = 2}, - [3280] = {.lex_state = 20}, - [3281] = {.lex_state = 197}, - [3282] = {.lex_state = 141}, - [3283] = {.lex_state = 141}, - [3284] = {.lex_state = 354, .external_lex_state = 5}, - [3285] = {.lex_state = 354, .external_lex_state = 5}, - [3286] = {.lex_state = 354, .external_lex_state = 7}, - [3287] = {.lex_state = 360, .external_lex_state = 7}, - [3288] = {.lex_state = 354, .external_lex_state = 7}, - [3289] = {.lex_state = 317}, - [3290] = {.lex_state = 283, .external_lex_state = 4}, - [3291] = {.lex_state = 358, .external_lex_state = 8}, - [3292] = {.lex_state = 339, .external_lex_state = 2}, + [3272] = {.lex_state = 226, .external_lex_state = 16}, + [3273] = {.lex_state = 235, .external_lex_state = 6}, + [3274] = {.lex_state = 226, .external_lex_state = 16}, + [3275] = {.lex_state = 226, .external_lex_state = 16}, + [3276] = {.lex_state = 103}, + [3277] = {.lex_state = 241, .external_lex_state = 2}, + [3278] = {.lex_state = 103}, + [3279] = {.lex_state = 249, .external_lex_state = 2}, + [3280] = {.lex_state = 103}, + [3281] = {.lex_state = 241, .external_lex_state = 2}, + [3282] = {.lex_state = 103}, + [3283] = {.lex_state = 20, .external_lex_state = 2}, + [3284] = {.lex_state = 339, .external_lex_state = 2}, + [3285] = {.lex_state = 20, .external_lex_state = 2}, + [3286] = {.lex_state = 339, .external_lex_state = 2}, + [3287] = {.lex_state = 20}, + [3288] = {.lex_state = 197}, + [3289] = {.lex_state = 141}, + [3290] = {.lex_state = 141}, + [3291] = {.lex_state = 354, .external_lex_state = 5}, + [3292] = {.lex_state = 354, .external_lex_state = 5}, [3293] = {.lex_state = 354, .external_lex_state = 7}, - [3294] = {.lex_state = 339, .external_lex_state = 2}, - [3295] = {.lex_state = 339, .external_lex_state = 2}, + [3294] = {.lex_state = 360, .external_lex_state = 7}, + [3295] = {.lex_state = 354, .external_lex_state = 7}, [3296] = {.lex_state = 317}, [3297] = {.lex_state = 283, .external_lex_state = 4}, [3298] = {.lex_state = 358, .external_lex_state = 8}, [3299] = {.lex_state = 339, .external_lex_state = 2}, - [3300] = {.lex_state = 333, .external_lex_state = 13}, - [3301] = {.lex_state = 327, .external_lex_state = 22}, - [3302] = {.lex_state = 327, .external_lex_state = 22}, - [3303] = {.lex_state = 103, .external_lex_state = 16}, - [3304] = {.lex_state = 291, .external_lex_state = 16}, - [3305] = {.lex_state = 333, .external_lex_state = 13}, - [3306] = {.lex_state = 289, .external_lex_state = 16}, + [3300] = {.lex_state = 354, .external_lex_state = 7}, + [3301] = {.lex_state = 339, .external_lex_state = 2}, + [3302] = {.lex_state = 339, .external_lex_state = 2}, + [3303] = {.lex_state = 317}, + [3304] = {.lex_state = 283, .external_lex_state = 4}, + [3305] = {.lex_state = 358, .external_lex_state = 8}, + [3306] = {.lex_state = 339, .external_lex_state = 2}, [3307] = {.lex_state = 333, .external_lex_state = 13}, - [3308] = {.lex_state = 293}, - [3309] = {.lex_state = 291, .external_lex_state = 16}, - [3310] = {.lex_state = 333, .external_lex_state = 13}, - [3311] = {.lex_state = 293}, - [3312] = {.lex_state = 291, .external_lex_state = 16}, - [3313] = {.lex_state = 293}, - [3314] = {.lex_state = 291, .external_lex_state = 16}, - [3315] = {.lex_state = 291, .external_lex_state = 16}, - [3316] = {.lex_state = 333, .external_lex_state = 13}, - [3317] = {.lex_state = 291, .external_lex_state = 16}, - [3318] = {.lex_state = 179, .external_lex_state = 2}, - [3319] = {.lex_state = 137}, - [3320] = {.lex_state = 179, .external_lex_state = 2}, - [3321] = {.lex_state = 137}, - [3322] = {.lex_state = 283, .external_lex_state = 4}, - [3323] = {.lex_state = 283, .external_lex_state = 4}, - [3324] = {.lex_state = 190, .external_lex_state = 10}, - [3325] = {.lex_state = 190, .external_lex_state = 10}, - [3326] = {.lex_state = 190, .external_lex_state = 10}, - [3327] = {.lex_state = 335, .external_lex_state = 10}, - [3328] = {.lex_state = 327, .external_lex_state = 22}, - [3329] = {.lex_state = 327, .external_lex_state = 22}, - [3330] = {.lex_state = 103, .external_lex_state = 16}, - [3331] = {.lex_state = 291, .external_lex_state = 16}, - [3332] = {.lex_state = 335, .external_lex_state = 10}, - [3333] = {.lex_state = 289, .external_lex_state = 16}, + [3308] = {.lex_state = 327, .external_lex_state = 22}, + [3309] = {.lex_state = 327, .external_lex_state = 22}, + [3310] = {.lex_state = 103, .external_lex_state = 16}, + [3311] = {.lex_state = 291, .external_lex_state = 16}, + [3312] = {.lex_state = 333, .external_lex_state = 13}, + [3313] = {.lex_state = 289, .external_lex_state = 16}, + [3314] = {.lex_state = 333, .external_lex_state = 13}, + [3315] = {.lex_state = 293}, + [3316] = {.lex_state = 291, .external_lex_state = 16}, + [3317] = {.lex_state = 333, .external_lex_state = 13}, + [3318] = {.lex_state = 293}, + [3319] = {.lex_state = 291, .external_lex_state = 16}, + [3320] = {.lex_state = 293}, + [3321] = {.lex_state = 291, .external_lex_state = 16}, + [3322] = {.lex_state = 291, .external_lex_state = 16}, + [3323] = {.lex_state = 333, .external_lex_state = 13}, + [3324] = {.lex_state = 291, .external_lex_state = 16}, + [3325] = {.lex_state = 179, .external_lex_state = 2}, + [3326] = {.lex_state = 137}, + [3327] = {.lex_state = 179, .external_lex_state = 2}, + [3328] = {.lex_state = 137}, + [3329] = {.lex_state = 283, .external_lex_state = 4}, + [3330] = {.lex_state = 283, .external_lex_state = 4}, + [3331] = {.lex_state = 190, .external_lex_state = 10}, + [3332] = {.lex_state = 190, .external_lex_state = 10}, + [3333] = {.lex_state = 190, .external_lex_state = 10}, [3334] = {.lex_state = 335, .external_lex_state = 10}, - [3335] = {.lex_state = 293}, - [3336] = {.lex_state = 291, .external_lex_state = 16}, - [3337] = {.lex_state = 335, .external_lex_state = 10}, - [3338] = {.lex_state = 293}, - [3339] = {.lex_state = 291, .external_lex_state = 16}, - [3340] = {.lex_state = 293}, - [3341] = {.lex_state = 291, .external_lex_state = 16}, - [3342] = {.lex_state = 291, .external_lex_state = 16}, - [3343] = {.lex_state = 335, .external_lex_state = 10}, - [3344] = {.lex_state = 291, .external_lex_state = 16}, - [3345] = {.lex_state = 188, .external_lex_state = 20}, - [3346] = {.lex_state = 188, .external_lex_state = 20}, - [3347] = {.lex_state = 188, .external_lex_state = 20}, + [3335] = {.lex_state = 327, .external_lex_state = 22}, + [3336] = {.lex_state = 327, .external_lex_state = 22}, + [3337] = {.lex_state = 103, .external_lex_state = 16}, + [3338] = {.lex_state = 291, .external_lex_state = 16}, + [3339] = {.lex_state = 335, .external_lex_state = 10}, + [3340] = {.lex_state = 289, .external_lex_state = 16}, + [3341] = {.lex_state = 335, .external_lex_state = 10}, + [3342] = {.lex_state = 293}, + [3343] = {.lex_state = 291, .external_lex_state = 16}, + [3344] = {.lex_state = 335, .external_lex_state = 10}, + [3345] = {.lex_state = 293}, + [3346] = {.lex_state = 291, .external_lex_state = 16}, + [3347] = {.lex_state = 293}, [3348] = {.lex_state = 291, .external_lex_state = 16}, - [3349] = {.lex_state = 327, .external_lex_state = 22}, - [3350] = {.lex_state = 327, .external_lex_state = 22}, - [3351] = {.lex_state = 103, .external_lex_state = 16}, - [3352] = {.lex_state = 291, .external_lex_state = 16}, + [3349] = {.lex_state = 291, .external_lex_state = 16}, + [3350] = {.lex_state = 335, .external_lex_state = 10}, + [3351] = {.lex_state = 291, .external_lex_state = 16}, + [3352] = {.lex_state = 188, .external_lex_state = 20}, [3353] = {.lex_state = 188, .external_lex_state = 20}, - [3354] = {.lex_state = 291, .external_lex_state = 16}, - [3355] = {.lex_state = 188, .external_lex_state = 20}, - [3356] = {.lex_state = 291, .external_lex_state = 16}, - [3357] = {.lex_state = 188, .external_lex_state = 20}, - [3358] = {.lex_state = 291, .external_lex_state = 16}, - [3359] = {.lex_state = 188, .external_lex_state = 20}, - [3360] = {.lex_state = 291, .external_lex_state = 16}, - [3361] = {.lex_state = 342, .external_lex_state = 10}, - [3362] = {.lex_state = 342, .external_lex_state = 10}, - [3363] = {.lex_state = 342, .external_lex_state = 10}, - [3364] = {.lex_state = 289, .external_lex_state = 16}, - [3365] = {.lex_state = 342, .external_lex_state = 10}, - [3366] = {.lex_state = 293}, + [3354] = {.lex_state = 188, .external_lex_state = 20}, + [3355] = {.lex_state = 291, .external_lex_state = 16}, + [3356] = {.lex_state = 327, .external_lex_state = 22}, + [3357] = {.lex_state = 327, .external_lex_state = 22}, + [3358] = {.lex_state = 103, .external_lex_state = 16}, + [3359] = {.lex_state = 291, .external_lex_state = 16}, + [3360] = {.lex_state = 188, .external_lex_state = 20}, + [3361] = {.lex_state = 291, .external_lex_state = 16}, + [3362] = {.lex_state = 188, .external_lex_state = 20}, + [3363] = {.lex_state = 291, .external_lex_state = 16}, + [3364] = {.lex_state = 188, .external_lex_state = 20}, + [3365] = {.lex_state = 291, .external_lex_state = 16}, + [3366] = {.lex_state = 188, .external_lex_state = 20}, [3367] = {.lex_state = 291, .external_lex_state = 16}, - [3368] = {.lex_state = 103}, - [3369] = {.lex_state = 226, .external_lex_state = 16}, - [3370] = {.lex_state = 226, .external_lex_state = 16}, - [3371] = {.lex_state = 226, .external_lex_state = 16}, + [3368] = {.lex_state = 342, .external_lex_state = 10}, + [3369] = {.lex_state = 342, .external_lex_state = 10}, + [3370] = {.lex_state = 342, .external_lex_state = 10}, + [3371] = {.lex_state = 289, .external_lex_state = 16}, [3372] = {.lex_state = 342, .external_lex_state = 10}, [3373] = {.lex_state = 293}, [3374] = {.lex_state = 291, .external_lex_state = 16}, - [3375] = {.lex_state = 342, .external_lex_state = 10}, - [3376] = {.lex_state = 293}, - [3377] = {.lex_state = 291, .external_lex_state = 16}, - [3378] = {.lex_state = 342, .external_lex_state = 10}, + [3375] = {.lex_state = 103}, + [3376] = {.lex_state = 226, .external_lex_state = 16}, + [3377] = {.lex_state = 226, .external_lex_state = 16}, + [3378] = {.lex_state = 226, .external_lex_state = 16}, [3379] = {.lex_state = 342, .external_lex_state = 10}, - [3380] = {.lex_state = 193, .external_lex_state = 14}, - [3381] = {.lex_state = 193, .external_lex_state = 14}, - [3382] = {.lex_state = 193, .external_lex_state = 14}, - [3383] = {.lex_state = 193, .external_lex_state = 14}, + [3380] = {.lex_state = 293}, + [3381] = {.lex_state = 291, .external_lex_state = 16}, + [3382] = {.lex_state = 342, .external_lex_state = 10}, + [3383] = {.lex_state = 293}, [3384] = {.lex_state = 291, .external_lex_state = 16}, - [3385] = {.lex_state = 193, .external_lex_state = 14}, - [3386] = {.lex_state = 291, .external_lex_state = 16}, + [3385] = {.lex_state = 342, .external_lex_state = 10}, + [3386] = {.lex_state = 342, .external_lex_state = 10}, [3387] = {.lex_state = 193, .external_lex_state = 14}, - [3388] = {.lex_state = 291, .external_lex_state = 16}, + [3388] = {.lex_state = 193, .external_lex_state = 14}, [3389] = {.lex_state = 193, .external_lex_state = 14}, [3390] = {.lex_state = 193, .external_lex_state = 14}, - [3391] = {.lex_state = 193, .external_lex_state = 10}, - [3392] = {.lex_state = 193, .external_lex_state = 10}, - [3393] = {.lex_state = 193, .external_lex_state = 10}, - [3394] = {.lex_state = 193, .external_lex_state = 10}, + [3391] = {.lex_state = 291, .external_lex_state = 16}, + [3392] = {.lex_state = 193, .external_lex_state = 14}, + [3393] = {.lex_state = 291, .external_lex_state = 16}, + [3394] = {.lex_state = 193, .external_lex_state = 14}, [3395] = {.lex_state = 291, .external_lex_state = 16}, - [3396] = {.lex_state = 193, .external_lex_state = 10}, - [3397] = {.lex_state = 291, .external_lex_state = 16}, + [3396] = {.lex_state = 193, .external_lex_state = 14}, + [3397] = {.lex_state = 193, .external_lex_state = 14}, [3398] = {.lex_state = 193, .external_lex_state = 10}, - [3399] = {.lex_state = 291, .external_lex_state = 16}, + [3399] = {.lex_state = 193, .external_lex_state = 10}, [3400] = {.lex_state = 193, .external_lex_state = 10}, [3401] = {.lex_state = 193, .external_lex_state = 10}, - [3402] = {.lex_state = 184, .external_lex_state = 5}, - [3403] = {.lex_state = 184, .external_lex_state = 5}, - [3404] = {.lex_state = 184, .external_lex_state = 5}, - [3405] = {.lex_state = 287, .external_lex_state = 5}, - [3406] = {.lex_state = 287, .external_lex_state = 5}, - [3407] = {.lex_state = 287, .external_lex_state = 5}, - [3408] = {.lex_state = 291, .external_lex_state = 16}, - [3409] = {.lex_state = 327, .external_lex_state = 22}, - [3410] = {.lex_state = 327, .external_lex_state = 22}, - [3411] = {.lex_state = 103, .external_lex_state = 16}, - [3412] = {.lex_state = 291, .external_lex_state = 16}, + [3402] = {.lex_state = 291, .external_lex_state = 16}, + [3403] = {.lex_state = 193, .external_lex_state = 10}, + [3404] = {.lex_state = 291, .external_lex_state = 16}, + [3405] = {.lex_state = 193, .external_lex_state = 10}, + [3406] = {.lex_state = 291, .external_lex_state = 16}, + [3407] = {.lex_state = 193, .external_lex_state = 10}, + [3408] = {.lex_state = 193, .external_lex_state = 10}, + [3409] = {.lex_state = 184, .external_lex_state = 5}, + [3410] = {.lex_state = 184, .external_lex_state = 5}, + [3411] = {.lex_state = 184, .external_lex_state = 5}, + [3412] = {.lex_state = 287, .external_lex_state = 5}, [3413] = {.lex_state = 287, .external_lex_state = 5}, - [3414] = {.lex_state = 291, .external_lex_state = 16}, - [3415] = {.lex_state = 287, .external_lex_state = 5}, - [3416] = {.lex_state = 291, .external_lex_state = 16}, - [3417] = {.lex_state = 287, .external_lex_state = 5}, - [3418] = {.lex_state = 291, .external_lex_state = 16}, - [3419] = {.lex_state = 287, .external_lex_state = 5}, - [3420] = {.lex_state = 291, .external_lex_state = 16}, - [3421] = {.lex_state = 217, .external_lex_state = 11}, - [3422] = {.lex_state = 217, .external_lex_state = 11}, - [3423] = {.lex_state = 217, .external_lex_state = 11}, - [3424] = {.lex_state = 219, .external_lex_state = 13}, - [3425] = {.lex_state = 219, .external_lex_state = 13}, - [3426] = {.lex_state = 219, .external_lex_state = 13}, - [3427] = {.lex_state = 153, .external_lex_state = 14}, - [3428] = {.lex_state = 153, .external_lex_state = 14}, - [3429] = {.lex_state = 153, .external_lex_state = 14}, - [3430] = {.lex_state = 153, .external_lex_state = 10}, - [3431] = {.lex_state = 153, .external_lex_state = 10}, - [3432] = {.lex_state = 153, .external_lex_state = 10}, - [3433] = {.lex_state = 141, .external_lex_state = 15}, - [3434] = {.lex_state = 141, .external_lex_state = 15}, - [3435] = {.lex_state = 141, .external_lex_state = 15}, - [3436] = {.lex_state = 165, .external_lex_state = 13}, - [3437] = {.lex_state = 165, .external_lex_state = 13}, - [3438] = {.lex_state = 165, .external_lex_state = 13}, - [3439] = {.lex_state = 327, .external_lex_state = 22}, - [3440] = {.lex_state = 327, .external_lex_state = 22}, - [3441] = {.lex_state = 327, .external_lex_state = 22}, - [3442] = {.lex_state = 291, .external_lex_state = 16}, - [3443] = {.lex_state = 327, .external_lex_state = 22}, - [3444] = {.lex_state = 327, .external_lex_state = 22}, - [3445] = {.lex_state = 103, .external_lex_state = 16}, - [3446] = {.lex_state = 291, .external_lex_state = 16}, + [3414] = {.lex_state = 287, .external_lex_state = 5}, + [3415] = {.lex_state = 291, .external_lex_state = 16}, + [3416] = {.lex_state = 327, .external_lex_state = 22}, + [3417] = {.lex_state = 327, .external_lex_state = 22}, + [3418] = {.lex_state = 103, .external_lex_state = 16}, + [3419] = {.lex_state = 291, .external_lex_state = 16}, + [3420] = {.lex_state = 287, .external_lex_state = 5}, + [3421] = {.lex_state = 291, .external_lex_state = 16}, + [3422] = {.lex_state = 287, .external_lex_state = 5}, + [3423] = {.lex_state = 291, .external_lex_state = 16}, + [3424] = {.lex_state = 287, .external_lex_state = 5}, + [3425] = {.lex_state = 291, .external_lex_state = 16}, + [3426] = {.lex_state = 287, .external_lex_state = 5}, + [3427] = {.lex_state = 291, .external_lex_state = 16}, + [3428] = {.lex_state = 217, .external_lex_state = 11}, + [3429] = {.lex_state = 217, .external_lex_state = 11}, + [3430] = {.lex_state = 217, .external_lex_state = 11}, + [3431] = {.lex_state = 219, .external_lex_state = 13}, + [3432] = {.lex_state = 219, .external_lex_state = 13}, + [3433] = {.lex_state = 219, .external_lex_state = 13}, + [3434] = {.lex_state = 153, .external_lex_state = 14}, + [3435] = {.lex_state = 153, .external_lex_state = 14}, + [3436] = {.lex_state = 153, .external_lex_state = 14}, + [3437] = {.lex_state = 153, .external_lex_state = 10}, + [3438] = {.lex_state = 153, .external_lex_state = 10}, + [3439] = {.lex_state = 153, .external_lex_state = 10}, + [3440] = {.lex_state = 141, .external_lex_state = 15}, + [3441] = {.lex_state = 141, .external_lex_state = 15}, + [3442] = {.lex_state = 141, .external_lex_state = 15}, + [3443] = {.lex_state = 165, .external_lex_state = 13}, + [3444] = {.lex_state = 165, .external_lex_state = 13}, + [3445] = {.lex_state = 165, .external_lex_state = 13}, + [3446] = {.lex_state = 327, .external_lex_state = 22}, [3447] = {.lex_state = 327, .external_lex_state = 22}, - [3448] = {.lex_state = 291, .external_lex_state = 16}, - [3449] = {.lex_state = 327, .external_lex_state = 22}, - [3450] = {.lex_state = 291, .external_lex_state = 16}, + [3448] = {.lex_state = 327, .external_lex_state = 22}, + [3449] = {.lex_state = 291, .external_lex_state = 16}, + [3450] = {.lex_state = 327, .external_lex_state = 22}, [3451] = {.lex_state = 327, .external_lex_state = 22}, - [3452] = {.lex_state = 291, .external_lex_state = 16}, - [3453] = {.lex_state = 327, .external_lex_state = 22}, - [3454] = {.lex_state = 291, .external_lex_state = 16}, - [3455] = {.lex_state = 291, .external_lex_state = 22}, - [3456] = {.lex_state = 291, .external_lex_state = 22}, - [3457] = {.lex_state = 291, .external_lex_state = 22}, - [3458] = {.lex_state = 291, .external_lex_state = 22}, + [3452] = {.lex_state = 103, .external_lex_state = 16}, + [3453] = {.lex_state = 291, .external_lex_state = 16}, + [3454] = {.lex_state = 327, .external_lex_state = 22}, + [3455] = {.lex_state = 291, .external_lex_state = 16}, + [3456] = {.lex_state = 327, .external_lex_state = 22}, + [3457] = {.lex_state = 291, .external_lex_state = 16}, + [3458] = {.lex_state = 327, .external_lex_state = 22}, [3459] = {.lex_state = 291, .external_lex_state = 16}, - [3460] = {.lex_state = 291, .external_lex_state = 22}, + [3460] = {.lex_state = 327, .external_lex_state = 22}, [3461] = {.lex_state = 291, .external_lex_state = 16}, [3462] = {.lex_state = 291, .external_lex_state = 22}, - [3463] = {.lex_state = 291, .external_lex_state = 16}, + [3463] = {.lex_state = 291, .external_lex_state = 22}, [3464] = {.lex_state = 291, .external_lex_state = 22}, [3465] = {.lex_state = 291, .external_lex_state = 22}, - [3466] = {.lex_state = 241, .external_lex_state = 15}, - [3467] = {.lex_state = 241, .external_lex_state = 15}, - [3468] = {.lex_state = 241, .external_lex_state = 15}, - [3469] = {.lex_state = 291, .external_lex_state = 16}, - [3470] = {.lex_state = 327, .external_lex_state = 22}, - [3471] = {.lex_state = 327, .external_lex_state = 22}, - [3472] = {.lex_state = 103, .external_lex_state = 16}, - [3473] = {.lex_state = 291, .external_lex_state = 16}, + [3466] = {.lex_state = 291, .external_lex_state = 16}, + [3467] = {.lex_state = 291, .external_lex_state = 22}, + [3468] = {.lex_state = 291, .external_lex_state = 16}, + [3469] = {.lex_state = 291, .external_lex_state = 22}, + [3470] = {.lex_state = 291, .external_lex_state = 16}, + [3471] = {.lex_state = 291, .external_lex_state = 22}, + [3472] = {.lex_state = 291, .external_lex_state = 22}, + [3473] = {.lex_state = 241, .external_lex_state = 15}, [3474] = {.lex_state = 241, .external_lex_state = 15}, - [3475] = {.lex_state = 291, .external_lex_state = 16}, - [3476] = {.lex_state = 241, .external_lex_state = 15}, - [3477] = {.lex_state = 291, .external_lex_state = 16}, - [3478] = {.lex_state = 241, .external_lex_state = 15}, - [3479] = {.lex_state = 291, .external_lex_state = 16}, - [3480] = {.lex_state = 241, .external_lex_state = 15}, - [3481] = {.lex_state = 291, .external_lex_state = 16}, - [3482] = {.lex_state = 103}, - [3483] = {.lex_state = 262, .external_lex_state = 2}, - [3484] = {.lex_state = 103}, - [3485] = {.lex_state = 103}, - [3486] = {.lex_state = 103}, - [3487] = {.lex_state = 103}, - [3488] = {.lex_state = 103}, - [3489] = {.lex_state = 344, .external_lex_state = 13}, - [3490] = {.lex_state = 344, .external_lex_state = 13}, - [3491] = {.lex_state = 344, .external_lex_state = 13}, - [3492] = {.lex_state = 289, .external_lex_state = 16}, - [3493] = {.lex_state = 344, .external_lex_state = 13}, - [3494] = {.lex_state = 293}, - [3495] = {.lex_state = 291, .external_lex_state = 16}, - [3496] = {.lex_state = 103}, - [3497] = {.lex_state = 226, .external_lex_state = 16}, - [3498] = {.lex_state = 226, .external_lex_state = 16}, - [3499] = {.lex_state = 226, .external_lex_state = 16}, - [3500] = {.lex_state = 344, .external_lex_state = 13}, - [3501] = {.lex_state = 293}, - [3502] = {.lex_state = 291, .external_lex_state = 16}, - [3503] = {.lex_state = 344, .external_lex_state = 13}, - [3504] = {.lex_state = 293}, - [3505] = {.lex_state = 291, .external_lex_state = 16}, - [3506] = {.lex_state = 344, .external_lex_state = 13}, - [3507] = {.lex_state = 344, .external_lex_state = 13}, - [3508] = {.lex_state = 237, .external_lex_state = 23}, - [3509] = {.lex_state = 237, .external_lex_state = 23}, - [3510] = {.lex_state = 237, .external_lex_state = 23}, - [3511] = {.lex_state = 237, .external_lex_state = 23}, - [3512] = {.lex_state = 291, .external_lex_state = 16}, + [3475] = {.lex_state = 241, .external_lex_state = 15}, + [3476] = {.lex_state = 291, .external_lex_state = 16}, + [3477] = {.lex_state = 327, .external_lex_state = 22}, + [3478] = {.lex_state = 327, .external_lex_state = 22}, + [3479] = {.lex_state = 103, .external_lex_state = 16}, + [3480] = {.lex_state = 291, .external_lex_state = 16}, + [3481] = {.lex_state = 241, .external_lex_state = 15}, + [3482] = {.lex_state = 291, .external_lex_state = 16}, + [3483] = {.lex_state = 241, .external_lex_state = 15}, + [3484] = {.lex_state = 291, .external_lex_state = 16}, + [3485] = {.lex_state = 241, .external_lex_state = 15}, + [3486] = {.lex_state = 291, .external_lex_state = 16}, + [3487] = {.lex_state = 241, .external_lex_state = 15}, + [3488] = {.lex_state = 291, .external_lex_state = 16}, + [3489] = {.lex_state = 103}, + [3490] = {.lex_state = 103}, + [3491] = {.lex_state = 103}, + [3492] = {.lex_state = 103}, + [3493] = {.lex_state = 103}, + [3494] = {.lex_state = 344, .external_lex_state = 13}, + [3495] = {.lex_state = 344, .external_lex_state = 13}, + [3496] = {.lex_state = 344, .external_lex_state = 13}, + [3497] = {.lex_state = 289, .external_lex_state = 16}, + [3498] = {.lex_state = 344, .external_lex_state = 13}, + [3499] = {.lex_state = 293}, + [3500] = {.lex_state = 291, .external_lex_state = 16}, + [3501] = {.lex_state = 103}, + [3502] = {.lex_state = 226, .external_lex_state = 16}, + [3503] = {.lex_state = 226, .external_lex_state = 16}, + [3504] = {.lex_state = 226, .external_lex_state = 16}, + [3505] = {.lex_state = 344, .external_lex_state = 13}, + [3506] = {.lex_state = 293}, + [3507] = {.lex_state = 291, .external_lex_state = 16}, + [3508] = {.lex_state = 344, .external_lex_state = 13}, + [3509] = {.lex_state = 293}, + [3510] = {.lex_state = 291, .external_lex_state = 16}, + [3511] = {.lex_state = 344, .external_lex_state = 13}, + [3512] = {.lex_state = 344, .external_lex_state = 13}, [3513] = {.lex_state = 237, .external_lex_state = 23}, - [3514] = {.lex_state = 291, .external_lex_state = 16}, + [3514] = {.lex_state = 237, .external_lex_state = 23}, [3515] = {.lex_state = 237, .external_lex_state = 23}, - [3516] = {.lex_state = 291, .external_lex_state = 16}, - [3517] = {.lex_state = 237, .external_lex_state = 23}, + [3516] = {.lex_state = 237, .external_lex_state = 23}, + [3517] = {.lex_state = 291, .external_lex_state = 16}, [3518] = {.lex_state = 237, .external_lex_state = 23}, - [3519] = {.lex_state = 237, .external_lex_state = 13}, - [3520] = {.lex_state = 237, .external_lex_state = 13}, - [3521] = {.lex_state = 237, .external_lex_state = 13}, - [3522] = {.lex_state = 237, .external_lex_state = 13}, - [3523] = {.lex_state = 291, .external_lex_state = 16}, + [3519] = {.lex_state = 291, .external_lex_state = 16}, + [3520] = {.lex_state = 237, .external_lex_state = 23}, + [3521] = {.lex_state = 291, .external_lex_state = 16}, + [3522] = {.lex_state = 237, .external_lex_state = 23}, + [3523] = {.lex_state = 237, .external_lex_state = 23}, [3524] = {.lex_state = 237, .external_lex_state = 13}, - [3525] = {.lex_state = 291, .external_lex_state = 16}, + [3525] = {.lex_state = 237, .external_lex_state = 13}, [3526] = {.lex_state = 237, .external_lex_state = 13}, - [3527] = {.lex_state = 291, .external_lex_state = 16}, - [3528] = {.lex_state = 237, .external_lex_state = 13}, + [3527] = {.lex_state = 237, .external_lex_state = 13}, + [3528] = {.lex_state = 291, .external_lex_state = 16}, [3529] = {.lex_state = 237, .external_lex_state = 13}, - [3530] = {.lex_state = 143, .external_lex_state = 17}, - [3531] = {.lex_state = 143, .external_lex_state = 17}, - [3532] = {.lex_state = 143, .external_lex_state = 17}, - [3533] = {.lex_state = 300, .external_lex_state = 17}, - [3534] = {.lex_state = 300, .external_lex_state = 17}, - [3535] = {.lex_state = 300, .external_lex_state = 17}, - [3536] = {.lex_state = 291, .external_lex_state = 16}, - [3537] = {.lex_state = 327, .external_lex_state = 22}, - [3538] = {.lex_state = 327, .external_lex_state = 22}, - [3539] = {.lex_state = 103, .external_lex_state = 16}, - [3540] = {.lex_state = 291, .external_lex_state = 16}, - [3541] = {.lex_state = 300, .external_lex_state = 17}, - [3542] = {.lex_state = 291, .external_lex_state = 16}, - [3543] = {.lex_state = 300, .external_lex_state = 17}, - [3544] = {.lex_state = 291, .external_lex_state = 16}, - [3545] = {.lex_state = 300, .external_lex_state = 17}, - [3546] = {.lex_state = 291, .external_lex_state = 16}, - [3547] = {.lex_state = 300, .external_lex_state = 17}, - [3548] = {.lex_state = 291, .external_lex_state = 16}, - [3549] = {.lex_state = 249, .external_lex_state = 15}, - [3550] = {.lex_state = 249, .external_lex_state = 15}, - [3551] = {.lex_state = 249, .external_lex_state = 15}, - [3552] = {.lex_state = 291, .external_lex_state = 16}, - [3553] = {.lex_state = 327, .external_lex_state = 22}, - [3554] = {.lex_state = 327, .external_lex_state = 22}, - [3555] = {.lex_state = 103, .external_lex_state = 16}, - [3556] = {.lex_state = 291, .external_lex_state = 16}, - [3557] = {.lex_state = 249, .external_lex_state = 15}, - [3558] = {.lex_state = 291, .external_lex_state = 16}, - [3559] = {.lex_state = 249, .external_lex_state = 15}, - [3560] = {.lex_state = 291, .external_lex_state = 16}, - [3561] = {.lex_state = 249, .external_lex_state = 15}, - [3562] = {.lex_state = 291, .external_lex_state = 16}, - [3563] = {.lex_state = 249, .external_lex_state = 15}, - [3564] = {.lex_state = 291, .external_lex_state = 16}, - [3565] = {.lex_state = 346, .external_lex_state = 13}, - [3566] = {.lex_state = 346, .external_lex_state = 13}, - [3567] = {.lex_state = 346, .external_lex_state = 13}, - [3568] = {.lex_state = 289, .external_lex_state = 16}, - [3569] = {.lex_state = 346, .external_lex_state = 13}, - [3570] = {.lex_state = 293}, - [3571] = {.lex_state = 291, .external_lex_state = 16}, - [3572] = {.lex_state = 103}, - [3573] = {.lex_state = 226, .external_lex_state = 16}, - [3574] = {.lex_state = 226, .external_lex_state = 16}, - [3575] = {.lex_state = 226, .external_lex_state = 16}, - [3576] = {.lex_state = 346, .external_lex_state = 13}, - [3577] = {.lex_state = 293}, - [3578] = {.lex_state = 291, .external_lex_state = 16}, - [3579] = {.lex_state = 346, .external_lex_state = 13}, - [3580] = {.lex_state = 293}, - [3581] = {.lex_state = 291, .external_lex_state = 16}, - [3582] = {.lex_state = 346, .external_lex_state = 13}, - [3583] = {.lex_state = 346, .external_lex_state = 13}, - [3584] = {.lex_state = 243, .external_lex_state = 23}, - [3585] = {.lex_state = 243, .external_lex_state = 23}, - [3586] = {.lex_state = 243, .external_lex_state = 23}, - [3587] = {.lex_state = 243, .external_lex_state = 23}, - [3588] = {.lex_state = 291, .external_lex_state = 16}, + [3530] = {.lex_state = 291, .external_lex_state = 16}, + [3531] = {.lex_state = 237, .external_lex_state = 13}, + [3532] = {.lex_state = 291, .external_lex_state = 16}, + [3533] = {.lex_state = 237, .external_lex_state = 13}, + [3534] = {.lex_state = 237, .external_lex_state = 13}, + [3535] = {.lex_state = 143, .external_lex_state = 17}, + [3536] = {.lex_state = 143, .external_lex_state = 17}, + [3537] = {.lex_state = 143, .external_lex_state = 17}, + [3538] = {.lex_state = 300, .external_lex_state = 17}, + [3539] = {.lex_state = 300, .external_lex_state = 17}, + [3540] = {.lex_state = 300, .external_lex_state = 17}, + [3541] = {.lex_state = 291, .external_lex_state = 16}, + [3542] = {.lex_state = 327, .external_lex_state = 22}, + [3543] = {.lex_state = 327, .external_lex_state = 22}, + [3544] = {.lex_state = 103, .external_lex_state = 16}, + [3545] = {.lex_state = 291, .external_lex_state = 16}, + [3546] = {.lex_state = 300, .external_lex_state = 17}, + [3547] = {.lex_state = 291, .external_lex_state = 16}, + [3548] = {.lex_state = 300, .external_lex_state = 17}, + [3549] = {.lex_state = 291, .external_lex_state = 16}, + [3550] = {.lex_state = 300, .external_lex_state = 17}, + [3551] = {.lex_state = 291, .external_lex_state = 16}, + [3552] = {.lex_state = 300, .external_lex_state = 17}, + [3553] = {.lex_state = 291, .external_lex_state = 16}, + [3554] = {.lex_state = 249, .external_lex_state = 15}, + [3555] = {.lex_state = 249, .external_lex_state = 15}, + [3556] = {.lex_state = 249, .external_lex_state = 15}, + [3557] = {.lex_state = 291, .external_lex_state = 16}, + [3558] = {.lex_state = 327, .external_lex_state = 22}, + [3559] = {.lex_state = 327, .external_lex_state = 22}, + [3560] = {.lex_state = 103, .external_lex_state = 16}, + [3561] = {.lex_state = 291, .external_lex_state = 16}, + [3562] = {.lex_state = 249, .external_lex_state = 15}, + [3563] = {.lex_state = 291, .external_lex_state = 16}, + [3564] = {.lex_state = 249, .external_lex_state = 15}, + [3565] = {.lex_state = 291, .external_lex_state = 16}, + [3566] = {.lex_state = 249, .external_lex_state = 15}, + [3567] = {.lex_state = 291, .external_lex_state = 16}, + [3568] = {.lex_state = 249, .external_lex_state = 15}, + [3569] = {.lex_state = 291, .external_lex_state = 16}, + [3570] = {.lex_state = 346, .external_lex_state = 13}, + [3571] = {.lex_state = 346, .external_lex_state = 13}, + [3572] = {.lex_state = 346, .external_lex_state = 13}, + [3573] = {.lex_state = 289, .external_lex_state = 16}, + [3574] = {.lex_state = 346, .external_lex_state = 13}, + [3575] = {.lex_state = 293}, + [3576] = {.lex_state = 291, .external_lex_state = 16}, + [3577] = {.lex_state = 103}, + [3578] = {.lex_state = 226, .external_lex_state = 16}, + [3579] = {.lex_state = 226, .external_lex_state = 16}, + [3580] = {.lex_state = 226, .external_lex_state = 16}, + [3581] = {.lex_state = 346, .external_lex_state = 13}, + [3582] = {.lex_state = 293}, + [3583] = {.lex_state = 291, .external_lex_state = 16}, + [3584] = {.lex_state = 346, .external_lex_state = 13}, + [3585] = {.lex_state = 293}, + [3586] = {.lex_state = 291, .external_lex_state = 16}, + [3587] = {.lex_state = 346, .external_lex_state = 13}, + [3588] = {.lex_state = 346, .external_lex_state = 13}, [3589] = {.lex_state = 243, .external_lex_state = 23}, - [3590] = {.lex_state = 291, .external_lex_state = 16}, + [3590] = {.lex_state = 243, .external_lex_state = 23}, [3591] = {.lex_state = 243, .external_lex_state = 23}, - [3592] = {.lex_state = 291, .external_lex_state = 16}, - [3593] = {.lex_state = 243, .external_lex_state = 23}, + [3592] = {.lex_state = 243, .external_lex_state = 23}, + [3593] = {.lex_state = 291, .external_lex_state = 16}, [3594] = {.lex_state = 243, .external_lex_state = 23}, - [3595] = {.lex_state = 243, .external_lex_state = 13}, - [3596] = {.lex_state = 243, .external_lex_state = 13}, - [3597] = {.lex_state = 243, .external_lex_state = 13}, - [3598] = {.lex_state = 243, .external_lex_state = 13}, - [3599] = {.lex_state = 291, .external_lex_state = 16}, + [3595] = {.lex_state = 291, .external_lex_state = 16}, + [3596] = {.lex_state = 243, .external_lex_state = 23}, + [3597] = {.lex_state = 291, .external_lex_state = 16}, + [3598] = {.lex_state = 243, .external_lex_state = 23}, + [3599] = {.lex_state = 243, .external_lex_state = 23}, [3600] = {.lex_state = 243, .external_lex_state = 13}, - [3601] = {.lex_state = 291, .external_lex_state = 16}, + [3601] = {.lex_state = 243, .external_lex_state = 13}, [3602] = {.lex_state = 243, .external_lex_state = 13}, - [3603] = {.lex_state = 291, .external_lex_state = 16}, - [3604] = {.lex_state = 243, .external_lex_state = 13}, + [3603] = {.lex_state = 243, .external_lex_state = 13}, + [3604] = {.lex_state = 291, .external_lex_state = 16}, [3605] = {.lex_state = 243, .external_lex_state = 13}, - [3606] = {.lex_state = 245, .external_lex_state = 17}, - [3607] = {.lex_state = 245, .external_lex_state = 17}, - [3608] = {.lex_state = 245, .external_lex_state = 17}, - [3609] = {.lex_state = 302, .external_lex_state = 17}, - [3610] = {.lex_state = 302, .external_lex_state = 17}, - [3611] = {.lex_state = 302, .external_lex_state = 17}, - [3612] = {.lex_state = 291, .external_lex_state = 16}, - [3613] = {.lex_state = 327, .external_lex_state = 22}, - [3614] = {.lex_state = 327, .external_lex_state = 22}, - [3615] = {.lex_state = 103, .external_lex_state = 16}, - [3616] = {.lex_state = 291, .external_lex_state = 16}, - [3617] = {.lex_state = 302, .external_lex_state = 17}, - [3618] = {.lex_state = 291, .external_lex_state = 16}, - [3619] = {.lex_state = 302, .external_lex_state = 17}, - [3620] = {.lex_state = 291, .external_lex_state = 16}, - [3621] = {.lex_state = 302, .external_lex_state = 17}, - [3622] = {.lex_state = 291, .external_lex_state = 16}, - [3623] = {.lex_state = 302, .external_lex_state = 17}, - [3624] = {.lex_state = 291, .external_lex_state = 16}, - [3625] = {.lex_state = 258, .external_lex_state = 5}, - [3626] = {.lex_state = 258, .external_lex_state = 5}, - [3627] = {.lex_state = 258, .external_lex_state = 5}, - [3628] = {.lex_state = 258, .external_lex_state = 5}, + [3606] = {.lex_state = 291, .external_lex_state = 16}, + [3607] = {.lex_state = 243, .external_lex_state = 13}, + [3608] = {.lex_state = 291, .external_lex_state = 16}, + [3609] = {.lex_state = 243, .external_lex_state = 13}, + [3610] = {.lex_state = 243, .external_lex_state = 13}, + [3611] = {.lex_state = 245, .external_lex_state = 17}, + [3612] = {.lex_state = 245, .external_lex_state = 17}, + [3613] = {.lex_state = 245, .external_lex_state = 17}, + [3614] = {.lex_state = 302, .external_lex_state = 17}, + [3615] = {.lex_state = 302, .external_lex_state = 17}, + [3616] = {.lex_state = 302, .external_lex_state = 17}, + [3617] = {.lex_state = 291, .external_lex_state = 16}, + [3618] = {.lex_state = 327, .external_lex_state = 22}, + [3619] = {.lex_state = 327, .external_lex_state = 22}, + [3620] = {.lex_state = 103, .external_lex_state = 16}, + [3621] = {.lex_state = 291, .external_lex_state = 16}, + [3622] = {.lex_state = 302, .external_lex_state = 17}, + [3623] = {.lex_state = 291, .external_lex_state = 16}, + [3624] = {.lex_state = 302, .external_lex_state = 17}, + [3625] = {.lex_state = 291, .external_lex_state = 16}, + [3626] = {.lex_state = 302, .external_lex_state = 17}, + [3627] = {.lex_state = 291, .external_lex_state = 16}, + [3628] = {.lex_state = 302, .external_lex_state = 17}, [3629] = {.lex_state = 291, .external_lex_state = 16}, [3630] = {.lex_state = 258, .external_lex_state = 5}, - [3631] = {.lex_state = 291, .external_lex_state = 16}, + [3631] = {.lex_state = 258, .external_lex_state = 5}, [3632] = {.lex_state = 258, .external_lex_state = 5}, - [3633] = {.lex_state = 291, .external_lex_state = 16}, - [3634] = {.lex_state = 258, .external_lex_state = 5}, + [3633] = {.lex_state = 258, .external_lex_state = 5}, + [3634] = {.lex_state = 291, .external_lex_state = 16}, [3635] = {.lex_state = 258, .external_lex_state = 5}, - [3636] = {.lex_state = 304, .external_lex_state = 24}, - [3637] = {.lex_state = 304, .external_lex_state = 24}, - [3638] = {.lex_state = 304, .external_lex_state = 24}, - [3639] = {.lex_state = 291, .external_lex_state = 16}, - [3640] = {.lex_state = 327, .external_lex_state = 22}, - [3641] = {.lex_state = 327, .external_lex_state = 22}, - [3642] = {.lex_state = 103, .external_lex_state = 16}, - [3643] = {.lex_state = 291, .external_lex_state = 16}, - [3644] = {.lex_state = 304, .external_lex_state = 24}, - [3645] = {.lex_state = 291, .external_lex_state = 16}, - [3646] = {.lex_state = 304, .external_lex_state = 24}, - [3647] = {.lex_state = 291, .external_lex_state = 16}, - [3648] = {.lex_state = 304, .external_lex_state = 24}, - [3649] = {.lex_state = 291, .external_lex_state = 16}, - [3650] = {.lex_state = 304, .external_lex_state = 24}, - [3651] = {.lex_state = 291, .external_lex_state = 16}, - [3652] = {.lex_state = 260, .external_lex_state = 11}, - [3653] = {.lex_state = 260, .external_lex_state = 11}, - [3654] = {.lex_state = 260, .external_lex_state = 11}, - [3655] = {.lex_state = 311, .external_lex_state = 13}, - [3656] = {.lex_state = 311, .external_lex_state = 13}, - [3657] = {.lex_state = 311, .external_lex_state = 13}, - [3658] = {.lex_state = 311, .external_lex_state = 13}, - [3659] = {.lex_state = 291, .external_lex_state = 16}, + [3636] = {.lex_state = 291, .external_lex_state = 16}, + [3637] = {.lex_state = 258, .external_lex_state = 5}, + [3638] = {.lex_state = 291, .external_lex_state = 16}, + [3639] = {.lex_state = 258, .external_lex_state = 5}, + [3640] = {.lex_state = 258, .external_lex_state = 5}, + [3641] = {.lex_state = 304, .external_lex_state = 24}, + [3642] = {.lex_state = 304, .external_lex_state = 24}, + [3643] = {.lex_state = 304, .external_lex_state = 24}, + [3644] = {.lex_state = 291, .external_lex_state = 16}, + [3645] = {.lex_state = 327, .external_lex_state = 22}, + [3646] = {.lex_state = 327, .external_lex_state = 22}, + [3647] = {.lex_state = 103, .external_lex_state = 16}, + [3648] = {.lex_state = 291, .external_lex_state = 16}, + [3649] = {.lex_state = 304, .external_lex_state = 24}, + [3650] = {.lex_state = 291, .external_lex_state = 16}, + [3651] = {.lex_state = 304, .external_lex_state = 24}, + [3652] = {.lex_state = 291, .external_lex_state = 16}, + [3653] = {.lex_state = 304, .external_lex_state = 24}, + [3654] = {.lex_state = 291, .external_lex_state = 16}, + [3655] = {.lex_state = 304, .external_lex_state = 24}, + [3656] = {.lex_state = 291, .external_lex_state = 16}, + [3657] = {.lex_state = 260, .external_lex_state = 11}, + [3658] = {.lex_state = 260, .external_lex_state = 11}, + [3659] = {.lex_state = 260, .external_lex_state = 11}, [3660] = {.lex_state = 311, .external_lex_state = 13}, - [3661] = {.lex_state = 291, .external_lex_state = 16}, + [3661] = {.lex_state = 311, .external_lex_state = 13}, [3662] = {.lex_state = 311, .external_lex_state = 13}, - [3663] = {.lex_state = 291, .external_lex_state = 16}, - [3664] = {.lex_state = 311, .external_lex_state = 13}, + [3663] = {.lex_state = 311, .external_lex_state = 13}, + [3664] = {.lex_state = 291, .external_lex_state = 16}, [3665] = {.lex_state = 311, .external_lex_state = 13}, - [3666] = {.lex_state = 182, .external_lex_state = 20}, - [3667] = {.lex_state = 182, .external_lex_state = 20}, - [3668] = {.lex_state = 182, .external_lex_state = 20}, - [3669] = {.lex_state = 313, .external_lex_state = 10}, - [3670] = {.lex_state = 313, .external_lex_state = 10}, - [3671] = {.lex_state = 313, .external_lex_state = 10}, - [3672] = {.lex_state = 313, .external_lex_state = 10}, - [3673] = {.lex_state = 291, .external_lex_state = 16}, + [3666] = {.lex_state = 291, .external_lex_state = 16}, + [3667] = {.lex_state = 311, .external_lex_state = 13}, + [3668] = {.lex_state = 291, .external_lex_state = 16}, + [3669] = {.lex_state = 311, .external_lex_state = 13}, + [3670] = {.lex_state = 311, .external_lex_state = 13}, + [3671] = {.lex_state = 182, .external_lex_state = 20}, + [3672] = {.lex_state = 182, .external_lex_state = 20}, + [3673] = {.lex_state = 182, .external_lex_state = 20}, [3674] = {.lex_state = 313, .external_lex_state = 10}, - [3675] = {.lex_state = 291, .external_lex_state = 16}, + [3675] = {.lex_state = 313, .external_lex_state = 10}, [3676] = {.lex_state = 313, .external_lex_state = 10}, - [3677] = {.lex_state = 291, .external_lex_state = 16}, - [3678] = {.lex_state = 313, .external_lex_state = 10}, + [3677] = {.lex_state = 313, .external_lex_state = 10}, + [3678] = {.lex_state = 291, .external_lex_state = 16}, [3679] = {.lex_state = 313, .external_lex_state = 10}, - [3680] = {.lex_state = 358, .external_lex_state = 8}, - [3681] = {.lex_state = 241}, - [3682] = {.lex_state = 358, .external_lex_state = 20}, - [3683] = {.lex_state = 165}, - [3684] = {.lex_state = 170}, - [3685] = {.lex_state = 358, .external_lex_state = 20}, - [3686] = {.lex_state = 175, .external_lex_state = 6}, - [3687] = {.lex_state = 20, .external_lex_state = 2}, - [3688] = {.lex_state = 20, .external_lex_state = 2}, - [3689] = {.lex_state = 20, .external_lex_state = 2}, - [3690] = {.lex_state = 360, .external_lex_state = 7}, - [3691] = {.lex_state = 103}, - [3692] = {.lex_state = 362, .external_lex_state = 7}, - [3693] = {.lex_state = 360, .external_lex_state = 7}, - [3694] = {.lex_state = 186, .external_lex_state = 9}, - [3695] = {.lex_state = 348, .external_lex_state = 3}, - [3696] = {.lex_state = 141}, - [3697] = {.lex_state = 348, .external_lex_state = 14}, - [3698] = {.lex_state = 348, .external_lex_state = 14}, - [3699] = {.lex_state = 165}, - [3700] = {.lex_state = 348, .external_lex_state = 14}, - [3701] = {.lex_state = 348, .external_lex_state = 14}, + [3680] = {.lex_state = 291, .external_lex_state = 16}, + [3681] = {.lex_state = 313, .external_lex_state = 10}, + [3682] = {.lex_state = 291, .external_lex_state = 16}, + [3683] = {.lex_state = 313, .external_lex_state = 10}, + [3684] = {.lex_state = 313, .external_lex_state = 10}, + [3685] = {.lex_state = 358, .external_lex_state = 8}, + [3686] = {.lex_state = 241}, + [3687] = {.lex_state = 358, .external_lex_state = 20}, + [3688] = {.lex_state = 165}, + [3689] = {.lex_state = 170}, + [3690] = {.lex_state = 358, .external_lex_state = 20}, + [3691] = {.lex_state = 175, .external_lex_state = 6}, + [3692] = {.lex_state = 20, .external_lex_state = 2}, + [3693] = {.lex_state = 20, .external_lex_state = 2}, + [3694] = {.lex_state = 20, .external_lex_state = 2}, + [3695] = {.lex_state = 360, .external_lex_state = 7}, + [3696] = {.lex_state = 103}, + [3697] = {.lex_state = 362, .external_lex_state = 7}, + [3698] = {.lex_state = 360, .external_lex_state = 7}, + [3699] = {.lex_state = 186, .external_lex_state = 9}, + [3700] = {.lex_state = 348, .external_lex_state = 3}, + [3701] = {.lex_state = 141}, [3702] = {.lex_state = 348, .external_lex_state = 14}, - [3703] = {.lex_state = 103}, - [3704] = {.lex_state = 226, .external_lex_state = 16}, - [3705] = {.lex_state = 235, .external_lex_state = 6}, - [3706] = {.lex_state = 226, .external_lex_state = 16}, - [3707] = {.lex_state = 226, .external_lex_state = 16}, + [3703] = {.lex_state = 348, .external_lex_state = 14}, + [3704] = {.lex_state = 165}, + [3705] = {.lex_state = 348, .external_lex_state = 14}, + [3706] = {.lex_state = 348, .external_lex_state = 14}, + [3707] = {.lex_state = 348, .external_lex_state = 14}, [3708] = {.lex_state = 103}, - [3709] = {.lex_state = 241, .external_lex_state = 2}, - [3710] = {.lex_state = 103}, - [3711] = {.lex_state = 249, .external_lex_state = 2}, - [3712] = {.lex_state = 103}, - [3713] = {.lex_state = 241, .external_lex_state = 2}, - [3714] = {.lex_state = 348, .external_lex_state = 3}, - [3715] = {.lex_state = 141}, - [3716] = {.lex_state = 348, .external_lex_state = 10}, - [3717] = {.lex_state = 348, .external_lex_state = 10}, - [3718] = {.lex_state = 165}, - [3719] = {.lex_state = 348, .external_lex_state = 10}, - [3720] = {.lex_state = 348, .external_lex_state = 10}, + [3709] = {.lex_state = 226, .external_lex_state = 16}, + [3710] = {.lex_state = 235, .external_lex_state = 6}, + [3711] = {.lex_state = 226, .external_lex_state = 16}, + [3712] = {.lex_state = 226, .external_lex_state = 16}, + [3713] = {.lex_state = 103}, + [3714] = {.lex_state = 241, .external_lex_state = 2}, + [3715] = {.lex_state = 103}, + [3716] = {.lex_state = 249, .external_lex_state = 2}, + [3717] = {.lex_state = 103}, + [3718] = {.lex_state = 241, .external_lex_state = 2}, + [3719] = {.lex_state = 348, .external_lex_state = 3}, + [3720] = {.lex_state = 141}, [3721] = {.lex_state = 348, .external_lex_state = 10}, - [3722] = {.lex_state = 103}, - [3723] = {.lex_state = 226, .external_lex_state = 16}, - [3724] = {.lex_state = 235, .external_lex_state = 6}, - [3725] = {.lex_state = 226, .external_lex_state = 16}, - [3726] = {.lex_state = 226, .external_lex_state = 16}, + [3722] = {.lex_state = 348, .external_lex_state = 10}, + [3723] = {.lex_state = 165}, + [3724] = {.lex_state = 348, .external_lex_state = 10}, + [3725] = {.lex_state = 348, .external_lex_state = 10}, + [3726] = {.lex_state = 348, .external_lex_state = 10}, [3727] = {.lex_state = 103}, - [3728] = {.lex_state = 241, .external_lex_state = 2}, - [3729] = {.lex_state = 103}, - [3730] = {.lex_state = 249, .external_lex_state = 2}, - [3731] = {.lex_state = 103}, - [3732] = {.lex_state = 241, .external_lex_state = 2}, - [3733] = {.lex_state = 348, .external_lex_state = 4}, - [3734] = {.lex_state = 354, .external_lex_state = 5}, - [3735] = {.lex_state = 354, .external_lex_state = 5}, - [3736] = {.lex_state = 354, .external_lex_state = 5}, - [3737] = {.lex_state = 289, .external_lex_state = 16}, - [3738] = {.lex_state = 354, .external_lex_state = 5}, - [3739] = {.lex_state = 293}, - [3740] = {.lex_state = 291, .external_lex_state = 16}, - [3741] = {.lex_state = 103}, - [3742] = {.lex_state = 226, .external_lex_state = 16}, - [3743] = {.lex_state = 226, .external_lex_state = 16}, - [3744] = {.lex_state = 226, .external_lex_state = 16}, - [3745] = {.lex_state = 354, .external_lex_state = 5}, - [3746] = {.lex_state = 293}, - [3747] = {.lex_state = 291, .external_lex_state = 16}, - [3748] = {.lex_state = 354, .external_lex_state = 5}, - [3749] = {.lex_state = 293}, - [3750] = {.lex_state = 291, .external_lex_state = 16}, - [3751] = {.lex_state = 354, .external_lex_state = 5}, - [3752] = {.lex_state = 354, .external_lex_state = 5}, - [3753] = {.lex_state = 103}, - [3754] = {.lex_state = 358, .external_lex_state = 8}, - [3755] = {.lex_state = 283, .external_lex_state = 4}, - [3756] = {.lex_state = 358, .external_lex_state = 8}, - [3757] = {.lex_state = 141}, - [3758] = {.lex_state = 354, .external_lex_state = 5}, - [3759] = {.lex_state = 354, .external_lex_state = 5}, - [3760] = {.lex_state = 354, .external_lex_state = 7}, - [3761] = {.lex_state = 360, .external_lex_state = 5}, - [3762] = {.lex_state = 165}, - [3763] = {.lex_state = 170}, - [3764] = {.lex_state = 360, .external_lex_state = 5}, - [3765] = {.lex_state = 175, .external_lex_state = 6}, - [3766] = {.lex_state = 20, .external_lex_state = 2}, - [3767] = {.lex_state = 20, .external_lex_state = 2}, - [3768] = {.lex_state = 20, .external_lex_state = 2}, + [3728] = {.lex_state = 226, .external_lex_state = 16}, + [3729] = {.lex_state = 235, .external_lex_state = 6}, + [3730] = {.lex_state = 226, .external_lex_state = 16}, + [3731] = {.lex_state = 226, .external_lex_state = 16}, + [3732] = {.lex_state = 103}, + [3733] = {.lex_state = 241, .external_lex_state = 2}, + [3734] = {.lex_state = 103}, + [3735] = {.lex_state = 249, .external_lex_state = 2}, + [3736] = {.lex_state = 103}, + [3737] = {.lex_state = 241, .external_lex_state = 2}, + [3738] = {.lex_state = 348, .external_lex_state = 4}, + [3739] = {.lex_state = 354, .external_lex_state = 5}, + [3740] = {.lex_state = 354, .external_lex_state = 5}, + [3741] = {.lex_state = 354, .external_lex_state = 5}, + [3742] = {.lex_state = 289, .external_lex_state = 16}, + [3743] = {.lex_state = 354, .external_lex_state = 5}, + [3744] = {.lex_state = 293}, + [3745] = {.lex_state = 291, .external_lex_state = 16}, + [3746] = {.lex_state = 103}, + [3747] = {.lex_state = 226, .external_lex_state = 16}, + [3748] = {.lex_state = 226, .external_lex_state = 16}, + [3749] = {.lex_state = 226, .external_lex_state = 16}, + [3750] = {.lex_state = 354, .external_lex_state = 5}, + [3751] = {.lex_state = 293}, + [3752] = {.lex_state = 291, .external_lex_state = 16}, + [3753] = {.lex_state = 354, .external_lex_state = 5}, + [3754] = {.lex_state = 293}, + [3755] = {.lex_state = 291, .external_lex_state = 16}, + [3756] = {.lex_state = 354, .external_lex_state = 5}, + [3757] = {.lex_state = 354, .external_lex_state = 5}, + [3758] = {.lex_state = 103}, + [3759] = {.lex_state = 358, .external_lex_state = 8}, + [3760] = {.lex_state = 283, .external_lex_state = 4}, + [3761] = {.lex_state = 358, .external_lex_state = 8}, + [3762] = {.lex_state = 141}, + [3763] = {.lex_state = 354, .external_lex_state = 5}, + [3764] = {.lex_state = 354, .external_lex_state = 5}, + [3765] = {.lex_state = 354, .external_lex_state = 7}, + [3766] = {.lex_state = 360, .external_lex_state = 5}, + [3767] = {.lex_state = 165}, + [3768] = {.lex_state = 170}, [3769] = {.lex_state = 360, .external_lex_state = 5}, - [3770] = {.lex_state = 360, .external_lex_state = 5}, - [3771] = {.lex_state = 360, .external_lex_state = 7}, - [3772] = {.lex_state = 360, .external_lex_state = 7}, - [3773] = {.lex_state = 354, .external_lex_state = 7}, - [3774] = {.lex_state = 339, .external_lex_state = 2}, - [3775] = {.lex_state = 153, .external_lex_state = 4}, - [3776] = {.lex_state = 182, .external_lex_state = 8}, - [3777] = {.lex_state = 354, .external_lex_state = 7}, - [3778] = {.lex_state = 317}, - [3779] = {.lex_state = 283, .external_lex_state = 4}, - [3780] = {.lex_state = 358, .external_lex_state = 8}, - [3781] = {.lex_state = 339, .external_lex_state = 2}, - [3782] = {.lex_state = 317}, - [3783] = {.lex_state = 283, .external_lex_state = 4}, - [3784] = {.lex_state = 358, .external_lex_state = 8}, - [3785] = {.lex_state = 333, .external_lex_state = 13}, - [3786] = {.lex_state = 333, .external_lex_state = 13}, - [3787] = {.lex_state = 333, .external_lex_state = 13}, - [3788] = {.lex_state = 291, .external_lex_state = 16}, - [3789] = {.lex_state = 327, .external_lex_state = 22}, - [3790] = {.lex_state = 327, .external_lex_state = 22}, - [3791] = {.lex_state = 103, .external_lex_state = 16}, - [3792] = {.lex_state = 291, .external_lex_state = 16}, - [3793] = {.lex_state = 333, .external_lex_state = 13}, - [3794] = {.lex_state = 291, .external_lex_state = 16}, - [3795] = {.lex_state = 333, .external_lex_state = 13}, - [3796] = {.lex_state = 291, .external_lex_state = 16}, - [3797] = {.lex_state = 333, .external_lex_state = 13}, - [3798] = {.lex_state = 291, .external_lex_state = 16}, - [3799] = {.lex_state = 333, .external_lex_state = 13}, - [3800] = {.lex_state = 291, .external_lex_state = 16}, - [3801] = {.lex_state = 141}, - [3802] = {.lex_state = 153, .external_lex_state = 4}, - [3803] = {.lex_state = 182, .external_lex_state = 8}, - [3804] = {.lex_state = 179, .external_lex_state = 2}, - [3805] = {.lex_state = 179, .external_lex_state = 2}, + [3770] = {.lex_state = 175, .external_lex_state = 6}, + [3771] = {.lex_state = 20, .external_lex_state = 2}, + [3772] = {.lex_state = 20, .external_lex_state = 2}, + [3773] = {.lex_state = 20, .external_lex_state = 2}, + [3774] = {.lex_state = 360, .external_lex_state = 5}, + [3775] = {.lex_state = 360, .external_lex_state = 5}, + [3776] = {.lex_state = 360, .external_lex_state = 7}, + [3777] = {.lex_state = 360, .external_lex_state = 7}, + [3778] = {.lex_state = 354, .external_lex_state = 7}, + [3779] = {.lex_state = 339, .external_lex_state = 2}, + [3780] = {.lex_state = 153, .external_lex_state = 4}, + [3781] = {.lex_state = 182, .external_lex_state = 8}, + [3782] = {.lex_state = 354, .external_lex_state = 7}, + [3783] = {.lex_state = 317}, + [3784] = {.lex_state = 283, .external_lex_state = 4}, + [3785] = {.lex_state = 358, .external_lex_state = 8}, + [3786] = {.lex_state = 339, .external_lex_state = 2}, + [3787] = {.lex_state = 317}, + [3788] = {.lex_state = 283, .external_lex_state = 4}, + [3789] = {.lex_state = 358, .external_lex_state = 8}, + [3790] = {.lex_state = 333, .external_lex_state = 13}, + [3791] = {.lex_state = 333, .external_lex_state = 13}, + [3792] = {.lex_state = 333, .external_lex_state = 13}, + [3793] = {.lex_state = 291, .external_lex_state = 16}, + [3794] = {.lex_state = 327, .external_lex_state = 22}, + [3795] = {.lex_state = 327, .external_lex_state = 22}, + [3796] = {.lex_state = 103, .external_lex_state = 16}, + [3797] = {.lex_state = 291, .external_lex_state = 16}, + [3798] = {.lex_state = 333, .external_lex_state = 13}, + [3799] = {.lex_state = 291, .external_lex_state = 16}, + [3800] = {.lex_state = 333, .external_lex_state = 13}, + [3801] = {.lex_state = 291, .external_lex_state = 16}, + [3802] = {.lex_state = 333, .external_lex_state = 13}, + [3803] = {.lex_state = 291, .external_lex_state = 16}, + [3804] = {.lex_state = 333, .external_lex_state = 13}, + [3805] = {.lex_state = 291, .external_lex_state = 16}, [3806] = {.lex_state = 141}, [3807] = {.lex_state = 153, .external_lex_state = 4}, [3808] = {.lex_state = 182, .external_lex_state = 8}, [3809] = {.lex_state = 179, .external_lex_state = 2}, [3810] = {.lex_state = 179, .external_lex_state = 2}, - [3811] = {.lex_state = 335, .external_lex_state = 10}, - [3812] = {.lex_state = 335, .external_lex_state = 10}, - [3813] = {.lex_state = 335, .external_lex_state = 10}, - [3814] = {.lex_state = 291, .external_lex_state = 16}, - [3815] = {.lex_state = 327, .external_lex_state = 22}, - [3816] = {.lex_state = 327, .external_lex_state = 22}, - [3817] = {.lex_state = 103, .external_lex_state = 16}, - [3818] = {.lex_state = 291, .external_lex_state = 16}, - [3819] = {.lex_state = 335, .external_lex_state = 10}, - [3820] = {.lex_state = 291, .external_lex_state = 16}, - [3821] = {.lex_state = 335, .external_lex_state = 10}, - [3822] = {.lex_state = 291, .external_lex_state = 16}, - [3823] = {.lex_state = 335, .external_lex_state = 10}, - [3824] = {.lex_state = 291, .external_lex_state = 16}, - [3825] = {.lex_state = 335, .external_lex_state = 10}, - [3826] = {.lex_state = 291, .external_lex_state = 16}, - [3827] = {.lex_state = 188, .external_lex_state = 20}, - [3828] = {.lex_state = 188, .external_lex_state = 20}, - [3829] = {.lex_state = 188, .external_lex_state = 20}, - [3830] = {.lex_state = 188, .external_lex_state = 20}, + [3811] = {.lex_state = 141}, + [3812] = {.lex_state = 153, .external_lex_state = 4}, + [3813] = {.lex_state = 182, .external_lex_state = 8}, + [3814] = {.lex_state = 179, .external_lex_state = 2}, + [3815] = {.lex_state = 179, .external_lex_state = 2}, + [3816] = {.lex_state = 335, .external_lex_state = 10}, + [3817] = {.lex_state = 335, .external_lex_state = 10}, + [3818] = {.lex_state = 335, .external_lex_state = 10}, + [3819] = {.lex_state = 291, .external_lex_state = 16}, + [3820] = {.lex_state = 327, .external_lex_state = 22}, + [3821] = {.lex_state = 327, .external_lex_state = 22}, + [3822] = {.lex_state = 103, .external_lex_state = 16}, + [3823] = {.lex_state = 291, .external_lex_state = 16}, + [3824] = {.lex_state = 335, .external_lex_state = 10}, + [3825] = {.lex_state = 291, .external_lex_state = 16}, + [3826] = {.lex_state = 335, .external_lex_state = 10}, + [3827] = {.lex_state = 291, .external_lex_state = 16}, + [3828] = {.lex_state = 335, .external_lex_state = 10}, + [3829] = {.lex_state = 291, .external_lex_state = 16}, + [3830] = {.lex_state = 335, .external_lex_state = 10}, [3831] = {.lex_state = 291, .external_lex_state = 16}, [3832] = {.lex_state = 188, .external_lex_state = 20}, - [3833] = {.lex_state = 291, .external_lex_state = 16}, + [3833] = {.lex_state = 188, .external_lex_state = 20}, [3834] = {.lex_state = 188, .external_lex_state = 20}, - [3835] = {.lex_state = 291, .external_lex_state = 16}, - [3836] = {.lex_state = 188, .external_lex_state = 20}, + [3835] = {.lex_state = 188, .external_lex_state = 20}, + [3836] = {.lex_state = 291, .external_lex_state = 16}, [3837] = {.lex_state = 188, .external_lex_state = 20}, - [3838] = {.lex_state = 342, .external_lex_state = 10}, - [3839] = {.lex_state = 327, .external_lex_state = 22}, - [3840] = {.lex_state = 327, .external_lex_state = 22}, - [3841] = {.lex_state = 103, .external_lex_state = 16}, - [3842] = {.lex_state = 291, .external_lex_state = 16}, + [3838] = {.lex_state = 291, .external_lex_state = 16}, + [3839] = {.lex_state = 188, .external_lex_state = 20}, + [3840] = {.lex_state = 291, .external_lex_state = 16}, + [3841] = {.lex_state = 188, .external_lex_state = 20}, + [3842] = {.lex_state = 188, .external_lex_state = 20}, [3843] = {.lex_state = 342, .external_lex_state = 10}, - [3844] = {.lex_state = 289, .external_lex_state = 16}, - [3845] = {.lex_state = 342, .external_lex_state = 10}, - [3846] = {.lex_state = 293}, + [3844] = {.lex_state = 327, .external_lex_state = 22}, + [3845] = {.lex_state = 327, .external_lex_state = 22}, + [3846] = {.lex_state = 103, .external_lex_state = 16}, [3847] = {.lex_state = 291, .external_lex_state = 16}, [3848] = {.lex_state = 342, .external_lex_state = 10}, - [3849] = {.lex_state = 293}, - [3850] = {.lex_state = 291, .external_lex_state = 16}, + [3849] = {.lex_state = 289, .external_lex_state = 16}, + [3850] = {.lex_state = 342, .external_lex_state = 10}, [3851] = {.lex_state = 293}, [3852] = {.lex_state = 291, .external_lex_state = 16}, - [3853] = {.lex_state = 291, .external_lex_state = 16}, - [3854] = {.lex_state = 342, .external_lex_state = 10}, + [3853] = {.lex_state = 342, .external_lex_state = 10}, + [3854] = {.lex_state = 293}, [3855] = {.lex_state = 291, .external_lex_state = 16}, - [3856] = {.lex_state = 193, .external_lex_state = 14}, - [3857] = {.lex_state = 193, .external_lex_state = 14}, - [3858] = {.lex_state = 193, .external_lex_state = 14}, - [3859] = {.lex_state = 193, .external_lex_state = 10}, - [3860] = {.lex_state = 193, .external_lex_state = 10}, - [3861] = {.lex_state = 193, .external_lex_state = 10}, - [3862] = {.lex_state = 287, .external_lex_state = 5}, - [3863] = {.lex_state = 287, .external_lex_state = 5}, - [3864] = {.lex_state = 287, .external_lex_state = 5}, - [3865] = {.lex_state = 287, .external_lex_state = 5}, - [3866] = {.lex_state = 291, .external_lex_state = 16}, + [3856] = {.lex_state = 293}, + [3857] = {.lex_state = 291, .external_lex_state = 16}, + [3858] = {.lex_state = 291, .external_lex_state = 16}, + [3859] = {.lex_state = 342, .external_lex_state = 10}, + [3860] = {.lex_state = 291, .external_lex_state = 16}, + [3861] = {.lex_state = 193, .external_lex_state = 14}, + [3862] = {.lex_state = 193, .external_lex_state = 14}, + [3863] = {.lex_state = 193, .external_lex_state = 14}, + [3864] = {.lex_state = 193, .external_lex_state = 10}, + [3865] = {.lex_state = 193, .external_lex_state = 10}, + [3866] = {.lex_state = 193, .external_lex_state = 10}, [3867] = {.lex_state = 287, .external_lex_state = 5}, - [3868] = {.lex_state = 291, .external_lex_state = 16}, + [3868] = {.lex_state = 287, .external_lex_state = 5}, [3869] = {.lex_state = 287, .external_lex_state = 5}, - [3870] = {.lex_state = 291, .external_lex_state = 16}, - [3871] = {.lex_state = 287, .external_lex_state = 5}, + [3870] = {.lex_state = 287, .external_lex_state = 5}, + [3871] = {.lex_state = 291, .external_lex_state = 16}, [3872] = {.lex_state = 287, .external_lex_state = 5}, - [3873] = {.lex_state = 327, .external_lex_state = 22}, - [3874] = {.lex_state = 327, .external_lex_state = 22}, - [3875] = {.lex_state = 327, .external_lex_state = 22}, - [3876] = {.lex_state = 327, .external_lex_state = 22}, - [3877] = {.lex_state = 291, .external_lex_state = 16}, + [3873] = {.lex_state = 291, .external_lex_state = 16}, + [3874] = {.lex_state = 287, .external_lex_state = 5}, + [3875] = {.lex_state = 291, .external_lex_state = 16}, + [3876] = {.lex_state = 287, .external_lex_state = 5}, + [3877] = {.lex_state = 287, .external_lex_state = 5}, [3878] = {.lex_state = 327, .external_lex_state = 22}, - [3879] = {.lex_state = 291, .external_lex_state = 16}, + [3879] = {.lex_state = 327, .external_lex_state = 22}, [3880] = {.lex_state = 327, .external_lex_state = 22}, - [3881] = {.lex_state = 291, .external_lex_state = 16}, - [3882] = {.lex_state = 327, .external_lex_state = 22}, + [3881] = {.lex_state = 327, .external_lex_state = 22}, + [3882] = {.lex_state = 291, .external_lex_state = 16}, [3883] = {.lex_state = 327, .external_lex_state = 22}, - [3884] = {.lex_state = 291, .external_lex_state = 22}, - [3885] = {.lex_state = 291, .external_lex_state = 22}, - [3886] = {.lex_state = 291, .external_lex_state = 22}, - [3887] = {.lex_state = 241, .external_lex_state = 15}, - [3888] = {.lex_state = 241, .external_lex_state = 15}, - [3889] = {.lex_state = 241, .external_lex_state = 15}, - [3890] = {.lex_state = 241, .external_lex_state = 15}, - [3891] = {.lex_state = 291, .external_lex_state = 16}, + [3884] = {.lex_state = 291, .external_lex_state = 16}, + [3885] = {.lex_state = 327, .external_lex_state = 22}, + [3886] = {.lex_state = 291, .external_lex_state = 16}, + [3887] = {.lex_state = 327, .external_lex_state = 22}, + [3888] = {.lex_state = 327, .external_lex_state = 22}, + [3889] = {.lex_state = 291, .external_lex_state = 22}, + [3890] = {.lex_state = 291, .external_lex_state = 22}, + [3891] = {.lex_state = 291, .external_lex_state = 22}, [3892] = {.lex_state = 241, .external_lex_state = 15}, - [3893] = {.lex_state = 291, .external_lex_state = 16}, + [3893] = {.lex_state = 241, .external_lex_state = 15}, [3894] = {.lex_state = 241, .external_lex_state = 15}, - [3895] = {.lex_state = 291, .external_lex_state = 16}, - [3896] = {.lex_state = 241, .external_lex_state = 15}, + [3895] = {.lex_state = 241, .external_lex_state = 15}, + [3896] = {.lex_state = 291, .external_lex_state = 16}, [3897] = {.lex_state = 241, .external_lex_state = 15}, - [3898] = {.lex_state = 103}, - [3899] = {.lex_state = 103}, - [3900] = {.lex_state = 103}, - [3901] = {.lex_state = 344, .external_lex_state = 13}, - [3902] = {.lex_state = 327, .external_lex_state = 22}, - [3903] = {.lex_state = 327, .external_lex_state = 22}, - [3904] = {.lex_state = 103, .external_lex_state = 16}, - [3905] = {.lex_state = 291, .external_lex_state = 16}, - [3906] = {.lex_state = 344, .external_lex_state = 13}, - [3907] = {.lex_state = 289, .external_lex_state = 16}, - [3908] = {.lex_state = 344, .external_lex_state = 13}, - [3909] = {.lex_state = 293}, - [3910] = {.lex_state = 291, .external_lex_state = 16}, - [3911] = {.lex_state = 344, .external_lex_state = 13}, - [3912] = {.lex_state = 293}, - [3913] = {.lex_state = 291, .external_lex_state = 16}, - [3914] = {.lex_state = 293}, - [3915] = {.lex_state = 291, .external_lex_state = 16}, - [3916] = {.lex_state = 291, .external_lex_state = 16}, - [3917] = {.lex_state = 344, .external_lex_state = 13}, - [3918] = {.lex_state = 291, .external_lex_state = 16}, - [3919] = {.lex_state = 237, .external_lex_state = 23}, - [3920] = {.lex_state = 237, .external_lex_state = 23}, - [3921] = {.lex_state = 237, .external_lex_state = 23}, - [3922] = {.lex_state = 237, .external_lex_state = 13}, - [3923] = {.lex_state = 237, .external_lex_state = 13}, - [3924] = {.lex_state = 237, .external_lex_state = 13}, - [3925] = {.lex_state = 300, .external_lex_state = 17}, - [3926] = {.lex_state = 300, .external_lex_state = 17}, - [3927] = {.lex_state = 300, .external_lex_state = 17}, - [3928] = {.lex_state = 300, .external_lex_state = 17}, - [3929] = {.lex_state = 291, .external_lex_state = 16}, + [3898] = {.lex_state = 291, .external_lex_state = 16}, + [3899] = {.lex_state = 241, .external_lex_state = 15}, + [3900] = {.lex_state = 291, .external_lex_state = 16}, + [3901] = {.lex_state = 241, .external_lex_state = 15}, + [3902] = {.lex_state = 241, .external_lex_state = 15}, + [3903] = {.lex_state = 103}, + [3904] = {.lex_state = 103}, + [3905] = {.lex_state = 344, .external_lex_state = 13}, + [3906] = {.lex_state = 327, .external_lex_state = 22}, + [3907] = {.lex_state = 327, .external_lex_state = 22}, + [3908] = {.lex_state = 103, .external_lex_state = 16}, + [3909] = {.lex_state = 291, .external_lex_state = 16}, + [3910] = {.lex_state = 344, .external_lex_state = 13}, + [3911] = {.lex_state = 289, .external_lex_state = 16}, + [3912] = {.lex_state = 344, .external_lex_state = 13}, + [3913] = {.lex_state = 293}, + [3914] = {.lex_state = 291, .external_lex_state = 16}, + [3915] = {.lex_state = 344, .external_lex_state = 13}, + [3916] = {.lex_state = 293}, + [3917] = {.lex_state = 291, .external_lex_state = 16}, + [3918] = {.lex_state = 293}, + [3919] = {.lex_state = 291, .external_lex_state = 16}, + [3920] = {.lex_state = 291, .external_lex_state = 16}, + [3921] = {.lex_state = 344, .external_lex_state = 13}, + [3922] = {.lex_state = 291, .external_lex_state = 16}, + [3923] = {.lex_state = 237, .external_lex_state = 23}, + [3924] = {.lex_state = 237, .external_lex_state = 23}, + [3925] = {.lex_state = 237, .external_lex_state = 23}, + [3926] = {.lex_state = 237, .external_lex_state = 13}, + [3927] = {.lex_state = 237, .external_lex_state = 13}, + [3928] = {.lex_state = 237, .external_lex_state = 13}, + [3929] = {.lex_state = 300, .external_lex_state = 17}, [3930] = {.lex_state = 300, .external_lex_state = 17}, - [3931] = {.lex_state = 291, .external_lex_state = 16}, + [3931] = {.lex_state = 300, .external_lex_state = 17}, [3932] = {.lex_state = 300, .external_lex_state = 17}, [3933] = {.lex_state = 291, .external_lex_state = 16}, [3934] = {.lex_state = 300, .external_lex_state = 17}, - [3935] = {.lex_state = 300, .external_lex_state = 17}, - [3936] = {.lex_state = 249, .external_lex_state = 15}, - [3937] = {.lex_state = 249, .external_lex_state = 15}, - [3938] = {.lex_state = 249, .external_lex_state = 15}, - [3939] = {.lex_state = 249, .external_lex_state = 15}, - [3940] = {.lex_state = 291, .external_lex_state = 16}, + [3935] = {.lex_state = 291, .external_lex_state = 16}, + [3936] = {.lex_state = 300, .external_lex_state = 17}, + [3937] = {.lex_state = 291, .external_lex_state = 16}, + [3938] = {.lex_state = 300, .external_lex_state = 17}, + [3939] = {.lex_state = 300, .external_lex_state = 17}, + [3940] = {.lex_state = 249, .external_lex_state = 15}, [3941] = {.lex_state = 249, .external_lex_state = 15}, - [3942] = {.lex_state = 291, .external_lex_state = 16}, + [3942] = {.lex_state = 249, .external_lex_state = 15}, [3943] = {.lex_state = 249, .external_lex_state = 15}, [3944] = {.lex_state = 291, .external_lex_state = 16}, [3945] = {.lex_state = 249, .external_lex_state = 15}, - [3946] = {.lex_state = 249, .external_lex_state = 15}, - [3947] = {.lex_state = 346, .external_lex_state = 13}, - [3948] = {.lex_state = 327, .external_lex_state = 22}, - [3949] = {.lex_state = 327, .external_lex_state = 22}, - [3950] = {.lex_state = 103, .external_lex_state = 16}, - [3951] = {.lex_state = 291, .external_lex_state = 16}, - [3952] = {.lex_state = 346, .external_lex_state = 13}, - [3953] = {.lex_state = 289, .external_lex_state = 16}, - [3954] = {.lex_state = 346, .external_lex_state = 13}, - [3955] = {.lex_state = 293}, - [3956] = {.lex_state = 291, .external_lex_state = 16}, - [3957] = {.lex_state = 346, .external_lex_state = 13}, - [3958] = {.lex_state = 293}, - [3959] = {.lex_state = 291, .external_lex_state = 16}, - [3960] = {.lex_state = 293}, - [3961] = {.lex_state = 291, .external_lex_state = 16}, - [3962] = {.lex_state = 291, .external_lex_state = 16}, - [3963] = {.lex_state = 346, .external_lex_state = 13}, - [3964] = {.lex_state = 291, .external_lex_state = 16}, - [3965] = {.lex_state = 243, .external_lex_state = 23}, - [3966] = {.lex_state = 243, .external_lex_state = 23}, - [3967] = {.lex_state = 243, .external_lex_state = 23}, - [3968] = {.lex_state = 243, .external_lex_state = 13}, - [3969] = {.lex_state = 243, .external_lex_state = 13}, - [3970] = {.lex_state = 243, .external_lex_state = 13}, - [3971] = {.lex_state = 302, .external_lex_state = 17}, - [3972] = {.lex_state = 302, .external_lex_state = 17}, - [3973] = {.lex_state = 302, .external_lex_state = 17}, - [3974] = {.lex_state = 302, .external_lex_state = 17}, - [3975] = {.lex_state = 291, .external_lex_state = 16}, + [3946] = {.lex_state = 291, .external_lex_state = 16}, + [3947] = {.lex_state = 249, .external_lex_state = 15}, + [3948] = {.lex_state = 291, .external_lex_state = 16}, + [3949] = {.lex_state = 249, .external_lex_state = 15}, + [3950] = {.lex_state = 249, .external_lex_state = 15}, + [3951] = {.lex_state = 346, .external_lex_state = 13}, + [3952] = {.lex_state = 327, .external_lex_state = 22}, + [3953] = {.lex_state = 327, .external_lex_state = 22}, + [3954] = {.lex_state = 103, .external_lex_state = 16}, + [3955] = {.lex_state = 291, .external_lex_state = 16}, + [3956] = {.lex_state = 346, .external_lex_state = 13}, + [3957] = {.lex_state = 289, .external_lex_state = 16}, + [3958] = {.lex_state = 346, .external_lex_state = 13}, + [3959] = {.lex_state = 293}, + [3960] = {.lex_state = 291, .external_lex_state = 16}, + [3961] = {.lex_state = 346, .external_lex_state = 13}, + [3962] = {.lex_state = 293}, + [3963] = {.lex_state = 291, .external_lex_state = 16}, + [3964] = {.lex_state = 293}, + [3965] = {.lex_state = 291, .external_lex_state = 16}, + [3966] = {.lex_state = 291, .external_lex_state = 16}, + [3967] = {.lex_state = 346, .external_lex_state = 13}, + [3968] = {.lex_state = 291, .external_lex_state = 16}, + [3969] = {.lex_state = 243, .external_lex_state = 23}, + [3970] = {.lex_state = 243, .external_lex_state = 23}, + [3971] = {.lex_state = 243, .external_lex_state = 23}, + [3972] = {.lex_state = 243, .external_lex_state = 13}, + [3973] = {.lex_state = 243, .external_lex_state = 13}, + [3974] = {.lex_state = 243, .external_lex_state = 13}, + [3975] = {.lex_state = 302, .external_lex_state = 17}, [3976] = {.lex_state = 302, .external_lex_state = 17}, - [3977] = {.lex_state = 291, .external_lex_state = 16}, + [3977] = {.lex_state = 302, .external_lex_state = 17}, [3978] = {.lex_state = 302, .external_lex_state = 17}, [3979] = {.lex_state = 291, .external_lex_state = 16}, [3980] = {.lex_state = 302, .external_lex_state = 17}, - [3981] = {.lex_state = 302, .external_lex_state = 17}, - [3982] = {.lex_state = 258, .external_lex_state = 5}, - [3983] = {.lex_state = 258, .external_lex_state = 5}, - [3984] = {.lex_state = 258, .external_lex_state = 5}, - [3985] = {.lex_state = 304, .external_lex_state = 24}, - [3986] = {.lex_state = 304, .external_lex_state = 24}, - [3987] = {.lex_state = 304, .external_lex_state = 24}, - [3988] = {.lex_state = 304, .external_lex_state = 24}, - [3989] = {.lex_state = 291, .external_lex_state = 16}, + [3981] = {.lex_state = 291, .external_lex_state = 16}, + [3982] = {.lex_state = 302, .external_lex_state = 17}, + [3983] = {.lex_state = 291, .external_lex_state = 16}, + [3984] = {.lex_state = 302, .external_lex_state = 17}, + [3985] = {.lex_state = 302, .external_lex_state = 17}, + [3986] = {.lex_state = 258, .external_lex_state = 5}, + [3987] = {.lex_state = 258, .external_lex_state = 5}, + [3988] = {.lex_state = 258, .external_lex_state = 5}, + [3989] = {.lex_state = 304, .external_lex_state = 24}, [3990] = {.lex_state = 304, .external_lex_state = 24}, - [3991] = {.lex_state = 291, .external_lex_state = 16}, + [3991] = {.lex_state = 304, .external_lex_state = 24}, [3992] = {.lex_state = 304, .external_lex_state = 24}, [3993] = {.lex_state = 291, .external_lex_state = 16}, [3994] = {.lex_state = 304, .external_lex_state = 24}, - [3995] = {.lex_state = 304, .external_lex_state = 24}, - [3996] = {.lex_state = 311, .external_lex_state = 13}, - [3997] = {.lex_state = 311, .external_lex_state = 13}, - [3998] = {.lex_state = 311, .external_lex_state = 13}, - [3999] = {.lex_state = 313, .external_lex_state = 10}, - [4000] = {.lex_state = 313, .external_lex_state = 10}, - [4001] = {.lex_state = 313, .external_lex_state = 10}, - [4002] = {.lex_state = 358, .external_lex_state = 8}, - [4003] = {.lex_state = 241}, - [4004] = {.lex_state = 141}, - [4005] = {.lex_state = 358, .external_lex_state = 20}, - [4006] = {.lex_state = 358, .external_lex_state = 20}, - [4007] = {.lex_state = 165}, - [4008] = {.lex_state = 358, .external_lex_state = 20}, + [3995] = {.lex_state = 291, .external_lex_state = 16}, + [3996] = {.lex_state = 304, .external_lex_state = 24}, + [3997] = {.lex_state = 291, .external_lex_state = 16}, + [3998] = {.lex_state = 304, .external_lex_state = 24}, + [3999] = {.lex_state = 304, .external_lex_state = 24}, + [4000] = {.lex_state = 311, .external_lex_state = 13}, + [4001] = {.lex_state = 311, .external_lex_state = 13}, + [4002] = {.lex_state = 311, .external_lex_state = 13}, + [4003] = {.lex_state = 313, .external_lex_state = 10}, + [4004] = {.lex_state = 313, .external_lex_state = 10}, + [4005] = {.lex_state = 313, .external_lex_state = 10}, + [4006] = {.lex_state = 358, .external_lex_state = 8}, + [4007] = {.lex_state = 241}, + [4008] = {.lex_state = 141}, [4009] = {.lex_state = 358, .external_lex_state = 20}, [4010] = {.lex_state = 358, .external_lex_state = 20}, - [4011] = {.lex_state = 103}, - [4012] = {.lex_state = 226, .external_lex_state = 16}, - [4013] = {.lex_state = 235, .external_lex_state = 6}, - [4014] = {.lex_state = 226, .external_lex_state = 16}, - [4015] = {.lex_state = 226, .external_lex_state = 16}, - [4016] = {.lex_state = 103}, - [4017] = {.lex_state = 241, .external_lex_state = 2}, - [4018] = {.lex_state = 103}, - [4019] = {.lex_state = 249, .external_lex_state = 2}, + [4011] = {.lex_state = 165}, + [4012] = {.lex_state = 358, .external_lex_state = 20}, + [4013] = {.lex_state = 358, .external_lex_state = 20}, + [4014] = {.lex_state = 358, .external_lex_state = 20}, + [4015] = {.lex_state = 103}, + [4016] = {.lex_state = 226, .external_lex_state = 16}, + [4017] = {.lex_state = 235, .external_lex_state = 6}, + [4018] = {.lex_state = 226, .external_lex_state = 16}, + [4019] = {.lex_state = 226, .external_lex_state = 16}, [4020] = {.lex_state = 103}, [4021] = {.lex_state = 241, .external_lex_state = 2}, - [4022] = {.lex_state = 360, .external_lex_state = 7}, - [4023] = {.lex_state = 103}, - [4024] = {.lex_state = 20}, - [4025] = {.lex_state = 141}, + [4022] = {.lex_state = 103}, + [4023] = {.lex_state = 249, .external_lex_state = 2}, + [4024] = {.lex_state = 103}, + [4025] = {.lex_state = 241, .external_lex_state = 2}, [4026] = {.lex_state = 360, .external_lex_state = 7}, - [4027] = {.lex_state = 348, .external_lex_state = 3}, - [4028] = {.lex_state = 241}, - [4029] = {.lex_state = 348, .external_lex_state = 14}, - [4030] = {.lex_state = 348, .external_lex_state = 14}, - [4031] = {.lex_state = 348, .external_lex_state = 14}, - [4032] = {.lex_state = 348, .external_lex_state = 14}, + [4027] = {.lex_state = 103}, + [4028] = {.lex_state = 20}, + [4029] = {.lex_state = 141}, + [4030] = {.lex_state = 360, .external_lex_state = 7}, + [4031] = {.lex_state = 348, .external_lex_state = 3}, + [4032] = {.lex_state = 241}, [4033] = {.lex_state = 348, .external_lex_state = 14}, - [4034] = {.lex_state = 289, .external_lex_state = 16}, + [4034] = {.lex_state = 348, .external_lex_state = 14}, [4035] = {.lex_state = 348, .external_lex_state = 14}, - [4036] = {.lex_state = 293}, - [4037] = {.lex_state = 291, .external_lex_state = 16}, - [4038] = {.lex_state = 103}, - [4039] = {.lex_state = 226, .external_lex_state = 16}, - [4040] = {.lex_state = 226, .external_lex_state = 16}, - [4041] = {.lex_state = 226, .external_lex_state = 16}, - [4042] = {.lex_state = 348, .external_lex_state = 14}, - [4043] = {.lex_state = 293}, - [4044] = {.lex_state = 291, .external_lex_state = 16}, - [4045] = {.lex_state = 348, .external_lex_state = 14}, - [4046] = {.lex_state = 293}, - [4047] = {.lex_state = 291, .external_lex_state = 16}, - [4048] = {.lex_state = 348, .external_lex_state = 14}, + [4036] = {.lex_state = 348, .external_lex_state = 14}, + [4037] = {.lex_state = 348, .external_lex_state = 14}, + [4038] = {.lex_state = 289, .external_lex_state = 16}, + [4039] = {.lex_state = 348, .external_lex_state = 14}, + [4040] = {.lex_state = 293}, + [4041] = {.lex_state = 291, .external_lex_state = 16}, + [4042] = {.lex_state = 103}, + [4043] = {.lex_state = 226, .external_lex_state = 16}, + [4044] = {.lex_state = 226, .external_lex_state = 16}, + [4045] = {.lex_state = 226, .external_lex_state = 16}, + [4046] = {.lex_state = 348, .external_lex_state = 14}, + [4047] = {.lex_state = 293}, + [4048] = {.lex_state = 291, .external_lex_state = 16}, [4049] = {.lex_state = 348, .external_lex_state = 14}, - [4050] = {.lex_state = 348, .external_lex_state = 10}, - [4051] = {.lex_state = 348, .external_lex_state = 10}, - [4052] = {.lex_state = 348, .external_lex_state = 10}, - [4053] = {.lex_state = 289, .external_lex_state = 16}, + [4050] = {.lex_state = 293}, + [4051] = {.lex_state = 291, .external_lex_state = 16}, + [4052] = {.lex_state = 348, .external_lex_state = 14}, + [4053] = {.lex_state = 348, .external_lex_state = 14}, [4054] = {.lex_state = 348, .external_lex_state = 10}, - [4055] = {.lex_state = 293}, - [4056] = {.lex_state = 291, .external_lex_state = 16}, - [4057] = {.lex_state = 103}, - [4058] = {.lex_state = 226, .external_lex_state = 16}, - [4059] = {.lex_state = 226, .external_lex_state = 16}, - [4060] = {.lex_state = 226, .external_lex_state = 16}, - [4061] = {.lex_state = 348, .external_lex_state = 10}, - [4062] = {.lex_state = 293}, - [4063] = {.lex_state = 291, .external_lex_state = 16}, - [4064] = {.lex_state = 348, .external_lex_state = 10}, - [4065] = {.lex_state = 293}, - [4066] = {.lex_state = 291, .external_lex_state = 16}, - [4067] = {.lex_state = 348, .external_lex_state = 10}, + [4055] = {.lex_state = 348, .external_lex_state = 10}, + [4056] = {.lex_state = 348, .external_lex_state = 10}, + [4057] = {.lex_state = 289, .external_lex_state = 16}, + [4058] = {.lex_state = 348, .external_lex_state = 10}, + [4059] = {.lex_state = 293}, + [4060] = {.lex_state = 291, .external_lex_state = 16}, + [4061] = {.lex_state = 103}, + [4062] = {.lex_state = 226, .external_lex_state = 16}, + [4063] = {.lex_state = 226, .external_lex_state = 16}, + [4064] = {.lex_state = 226, .external_lex_state = 16}, + [4065] = {.lex_state = 348, .external_lex_state = 10}, + [4066] = {.lex_state = 293}, + [4067] = {.lex_state = 291, .external_lex_state = 16}, [4068] = {.lex_state = 348, .external_lex_state = 10}, - [4069] = {.lex_state = 354, .external_lex_state = 5}, - [4070] = {.lex_state = 327, .external_lex_state = 22}, - [4071] = {.lex_state = 327, .external_lex_state = 22}, - [4072] = {.lex_state = 103, .external_lex_state = 16}, - [4073] = {.lex_state = 291, .external_lex_state = 16}, - [4074] = {.lex_state = 354, .external_lex_state = 5}, - [4075] = {.lex_state = 289, .external_lex_state = 16}, - [4076] = {.lex_state = 354, .external_lex_state = 5}, - [4077] = {.lex_state = 293}, - [4078] = {.lex_state = 291, .external_lex_state = 16}, - [4079] = {.lex_state = 354, .external_lex_state = 5}, - [4080] = {.lex_state = 293}, - [4081] = {.lex_state = 291, .external_lex_state = 16}, - [4082] = {.lex_state = 293}, - [4083] = {.lex_state = 291, .external_lex_state = 16}, - [4084] = {.lex_state = 291, .external_lex_state = 16}, - [4085] = {.lex_state = 354, .external_lex_state = 5}, - [4086] = {.lex_state = 291, .external_lex_state = 16}, - [4087] = {.lex_state = 362, .external_lex_state = 7}, - [4088] = {.lex_state = 360, .external_lex_state = 5}, - [4089] = {.lex_state = 360, .external_lex_state = 5}, - [4090] = {.lex_state = 141}, - [4091] = {.lex_state = 360, .external_lex_state = 5}, + [4069] = {.lex_state = 293}, + [4070] = {.lex_state = 291, .external_lex_state = 16}, + [4071] = {.lex_state = 348, .external_lex_state = 10}, + [4072] = {.lex_state = 348, .external_lex_state = 10}, + [4073] = {.lex_state = 354, .external_lex_state = 5}, + [4074] = {.lex_state = 327, .external_lex_state = 22}, + [4075] = {.lex_state = 327, .external_lex_state = 22}, + [4076] = {.lex_state = 103, .external_lex_state = 16}, + [4077] = {.lex_state = 291, .external_lex_state = 16}, + [4078] = {.lex_state = 354, .external_lex_state = 5}, + [4079] = {.lex_state = 289, .external_lex_state = 16}, + [4080] = {.lex_state = 354, .external_lex_state = 5}, + [4081] = {.lex_state = 293}, + [4082] = {.lex_state = 291, .external_lex_state = 16}, + [4083] = {.lex_state = 354, .external_lex_state = 5}, + [4084] = {.lex_state = 293}, + [4085] = {.lex_state = 291, .external_lex_state = 16}, + [4086] = {.lex_state = 293}, + [4087] = {.lex_state = 291, .external_lex_state = 16}, + [4088] = {.lex_state = 291, .external_lex_state = 16}, + [4089] = {.lex_state = 354, .external_lex_state = 5}, + [4090] = {.lex_state = 291, .external_lex_state = 16}, + [4091] = {.lex_state = 362, .external_lex_state = 7}, [4092] = {.lex_state = 360, .external_lex_state = 5}, - [4093] = {.lex_state = 165}, - [4094] = {.lex_state = 360, .external_lex_state = 5}, + [4093] = {.lex_state = 360, .external_lex_state = 5}, + [4094] = {.lex_state = 141}, [4095] = {.lex_state = 360, .external_lex_state = 5}, [4096] = {.lex_state = 360, .external_lex_state = 5}, - [4097] = {.lex_state = 103}, - [4098] = {.lex_state = 226, .external_lex_state = 16}, - [4099] = {.lex_state = 235, .external_lex_state = 6}, - [4100] = {.lex_state = 226, .external_lex_state = 16}, - [4101] = {.lex_state = 226, .external_lex_state = 16}, - [4102] = {.lex_state = 103}, - [4103] = {.lex_state = 241, .external_lex_state = 2}, - [4104] = {.lex_state = 103}, - [4105] = {.lex_state = 249, .external_lex_state = 2}, + [4097] = {.lex_state = 165}, + [4098] = {.lex_state = 360, .external_lex_state = 5}, + [4099] = {.lex_state = 360, .external_lex_state = 5}, + [4100] = {.lex_state = 360, .external_lex_state = 5}, + [4101] = {.lex_state = 103}, + [4102] = {.lex_state = 226, .external_lex_state = 16}, + [4103] = {.lex_state = 235, .external_lex_state = 6}, + [4104] = {.lex_state = 226, .external_lex_state = 16}, + [4105] = {.lex_state = 226, .external_lex_state = 16}, [4106] = {.lex_state = 103}, [4107] = {.lex_state = 241, .external_lex_state = 2}, - [4108] = {.lex_state = 360, .external_lex_state = 7}, - [4109] = {.lex_state = 339, .external_lex_state = 2}, - [4110] = {.lex_state = 339, .external_lex_state = 2}, - [4111] = {.lex_state = 333, .external_lex_state = 13}, - [4112] = {.lex_state = 333, .external_lex_state = 13}, - [4113] = {.lex_state = 333, .external_lex_state = 13}, - [4114] = {.lex_state = 333, .external_lex_state = 13}, - [4115] = {.lex_state = 291, .external_lex_state = 16}, + [4108] = {.lex_state = 103}, + [4109] = {.lex_state = 249, .external_lex_state = 2}, + [4110] = {.lex_state = 103}, + [4111] = {.lex_state = 241, .external_lex_state = 2}, + [4112] = {.lex_state = 360, .external_lex_state = 7}, + [4113] = {.lex_state = 339, .external_lex_state = 2}, + [4114] = {.lex_state = 339, .external_lex_state = 2}, + [4115] = {.lex_state = 333, .external_lex_state = 13}, [4116] = {.lex_state = 333, .external_lex_state = 13}, - [4117] = {.lex_state = 291, .external_lex_state = 16}, + [4117] = {.lex_state = 333, .external_lex_state = 13}, [4118] = {.lex_state = 333, .external_lex_state = 13}, [4119] = {.lex_state = 291, .external_lex_state = 16}, [4120] = {.lex_state = 333, .external_lex_state = 13}, - [4121] = {.lex_state = 333, .external_lex_state = 13}, - [4122] = {.lex_state = 179, .external_lex_state = 2}, - [4123] = {.lex_state = 141}, - [4124] = {.lex_state = 153, .external_lex_state = 4}, - [4125] = {.lex_state = 182, .external_lex_state = 8}, + [4121] = {.lex_state = 291, .external_lex_state = 16}, + [4122] = {.lex_state = 333, .external_lex_state = 13}, + [4123] = {.lex_state = 291, .external_lex_state = 16}, + [4124] = {.lex_state = 333, .external_lex_state = 13}, + [4125] = {.lex_state = 333, .external_lex_state = 13}, [4126] = {.lex_state = 179, .external_lex_state = 2}, - [4127] = {.lex_state = 179, .external_lex_state = 2}, - [4128] = {.lex_state = 179, .external_lex_state = 2}, - [4129] = {.lex_state = 141}, - [4130] = {.lex_state = 153, .external_lex_state = 4}, - [4131] = {.lex_state = 182, .external_lex_state = 8}, + [4127] = {.lex_state = 141}, + [4128] = {.lex_state = 153, .external_lex_state = 4}, + [4129] = {.lex_state = 182, .external_lex_state = 8}, + [4130] = {.lex_state = 179, .external_lex_state = 2}, + [4131] = {.lex_state = 179, .external_lex_state = 2}, [4132] = {.lex_state = 179, .external_lex_state = 2}, - [4133] = {.lex_state = 335, .external_lex_state = 10}, - [4134] = {.lex_state = 335, .external_lex_state = 10}, - [4135] = {.lex_state = 335, .external_lex_state = 10}, - [4136] = {.lex_state = 335, .external_lex_state = 10}, - [4137] = {.lex_state = 291, .external_lex_state = 16}, + [4133] = {.lex_state = 141}, + [4134] = {.lex_state = 153, .external_lex_state = 4}, + [4135] = {.lex_state = 182, .external_lex_state = 8}, + [4136] = {.lex_state = 179, .external_lex_state = 2}, + [4137] = {.lex_state = 335, .external_lex_state = 10}, [4138] = {.lex_state = 335, .external_lex_state = 10}, - [4139] = {.lex_state = 291, .external_lex_state = 16}, + [4139] = {.lex_state = 335, .external_lex_state = 10}, [4140] = {.lex_state = 335, .external_lex_state = 10}, [4141] = {.lex_state = 291, .external_lex_state = 16}, [4142] = {.lex_state = 335, .external_lex_state = 10}, - [4143] = {.lex_state = 335, .external_lex_state = 10}, - [4144] = {.lex_state = 188, .external_lex_state = 20}, - [4145] = {.lex_state = 188, .external_lex_state = 20}, - [4146] = {.lex_state = 188, .external_lex_state = 20}, - [4147] = {.lex_state = 342, .external_lex_state = 10}, - [4148] = {.lex_state = 342, .external_lex_state = 10}, - [4149] = {.lex_state = 342, .external_lex_state = 10}, - [4150] = {.lex_state = 291, .external_lex_state = 16}, - [4151] = {.lex_state = 327, .external_lex_state = 22}, - [4152] = {.lex_state = 327, .external_lex_state = 22}, - [4153] = {.lex_state = 103, .external_lex_state = 16}, + [4143] = {.lex_state = 291, .external_lex_state = 16}, + [4144] = {.lex_state = 335, .external_lex_state = 10}, + [4145] = {.lex_state = 291, .external_lex_state = 16}, + [4146] = {.lex_state = 335, .external_lex_state = 10}, + [4147] = {.lex_state = 335, .external_lex_state = 10}, + [4148] = {.lex_state = 188, .external_lex_state = 20}, + [4149] = {.lex_state = 188, .external_lex_state = 20}, + [4150] = {.lex_state = 188, .external_lex_state = 20}, + [4151] = {.lex_state = 342, .external_lex_state = 10}, + [4152] = {.lex_state = 342, .external_lex_state = 10}, + [4153] = {.lex_state = 342, .external_lex_state = 10}, [4154] = {.lex_state = 291, .external_lex_state = 16}, - [4155] = {.lex_state = 342, .external_lex_state = 10}, - [4156] = {.lex_state = 291, .external_lex_state = 16}, - [4157] = {.lex_state = 342, .external_lex_state = 10}, + [4155] = {.lex_state = 327, .external_lex_state = 22}, + [4156] = {.lex_state = 327, .external_lex_state = 22}, + [4157] = {.lex_state = 103, .external_lex_state = 16}, [4158] = {.lex_state = 291, .external_lex_state = 16}, [4159] = {.lex_state = 342, .external_lex_state = 10}, [4160] = {.lex_state = 291, .external_lex_state = 16}, [4161] = {.lex_state = 342, .external_lex_state = 10}, [4162] = {.lex_state = 291, .external_lex_state = 16}, - [4163] = {.lex_state = 287, .external_lex_state = 5}, - [4164] = {.lex_state = 287, .external_lex_state = 5}, - [4165] = {.lex_state = 287, .external_lex_state = 5}, - [4166] = {.lex_state = 327, .external_lex_state = 22}, - [4167] = {.lex_state = 327, .external_lex_state = 22}, - [4168] = {.lex_state = 327, .external_lex_state = 22}, - [4169] = {.lex_state = 241, .external_lex_state = 15}, - [4170] = {.lex_state = 241, .external_lex_state = 15}, - [4171] = {.lex_state = 241, .external_lex_state = 15}, - [4172] = {.lex_state = 344, .external_lex_state = 13}, - [4173] = {.lex_state = 344, .external_lex_state = 13}, - [4174] = {.lex_state = 344, .external_lex_state = 13}, - [4175] = {.lex_state = 291, .external_lex_state = 16}, - [4176] = {.lex_state = 327, .external_lex_state = 22}, - [4177] = {.lex_state = 327, .external_lex_state = 22}, - [4178] = {.lex_state = 103, .external_lex_state = 16}, + [4163] = {.lex_state = 342, .external_lex_state = 10}, + [4164] = {.lex_state = 291, .external_lex_state = 16}, + [4165] = {.lex_state = 342, .external_lex_state = 10}, + [4166] = {.lex_state = 291, .external_lex_state = 16}, + [4167] = {.lex_state = 287, .external_lex_state = 5}, + [4168] = {.lex_state = 287, .external_lex_state = 5}, + [4169] = {.lex_state = 287, .external_lex_state = 5}, + [4170] = {.lex_state = 327, .external_lex_state = 22}, + [4171] = {.lex_state = 327, .external_lex_state = 22}, + [4172] = {.lex_state = 327, .external_lex_state = 22}, + [4173] = {.lex_state = 241, .external_lex_state = 15}, + [4174] = {.lex_state = 241, .external_lex_state = 15}, + [4175] = {.lex_state = 241, .external_lex_state = 15}, + [4176] = {.lex_state = 344, .external_lex_state = 13}, + [4177] = {.lex_state = 344, .external_lex_state = 13}, + [4178] = {.lex_state = 344, .external_lex_state = 13}, [4179] = {.lex_state = 291, .external_lex_state = 16}, - [4180] = {.lex_state = 344, .external_lex_state = 13}, - [4181] = {.lex_state = 291, .external_lex_state = 16}, - [4182] = {.lex_state = 344, .external_lex_state = 13}, + [4180] = {.lex_state = 327, .external_lex_state = 22}, + [4181] = {.lex_state = 327, .external_lex_state = 22}, + [4182] = {.lex_state = 103, .external_lex_state = 16}, [4183] = {.lex_state = 291, .external_lex_state = 16}, [4184] = {.lex_state = 344, .external_lex_state = 13}, [4185] = {.lex_state = 291, .external_lex_state = 16}, [4186] = {.lex_state = 344, .external_lex_state = 13}, [4187] = {.lex_state = 291, .external_lex_state = 16}, - [4188] = {.lex_state = 300, .external_lex_state = 17}, - [4189] = {.lex_state = 300, .external_lex_state = 17}, - [4190] = {.lex_state = 300, .external_lex_state = 17}, - [4191] = {.lex_state = 249, .external_lex_state = 15}, - [4192] = {.lex_state = 249, .external_lex_state = 15}, - [4193] = {.lex_state = 249, .external_lex_state = 15}, - [4194] = {.lex_state = 346, .external_lex_state = 13}, - [4195] = {.lex_state = 346, .external_lex_state = 13}, - [4196] = {.lex_state = 346, .external_lex_state = 13}, - [4197] = {.lex_state = 291, .external_lex_state = 16}, - [4198] = {.lex_state = 327, .external_lex_state = 22}, - [4199] = {.lex_state = 327, .external_lex_state = 22}, - [4200] = {.lex_state = 103, .external_lex_state = 16}, + [4188] = {.lex_state = 344, .external_lex_state = 13}, + [4189] = {.lex_state = 291, .external_lex_state = 16}, + [4190] = {.lex_state = 344, .external_lex_state = 13}, + [4191] = {.lex_state = 291, .external_lex_state = 16}, + [4192] = {.lex_state = 300, .external_lex_state = 17}, + [4193] = {.lex_state = 300, .external_lex_state = 17}, + [4194] = {.lex_state = 300, .external_lex_state = 17}, + [4195] = {.lex_state = 249, .external_lex_state = 15}, + [4196] = {.lex_state = 249, .external_lex_state = 15}, + [4197] = {.lex_state = 249, .external_lex_state = 15}, + [4198] = {.lex_state = 346, .external_lex_state = 13}, + [4199] = {.lex_state = 346, .external_lex_state = 13}, + [4200] = {.lex_state = 346, .external_lex_state = 13}, [4201] = {.lex_state = 291, .external_lex_state = 16}, - [4202] = {.lex_state = 346, .external_lex_state = 13}, - [4203] = {.lex_state = 291, .external_lex_state = 16}, - [4204] = {.lex_state = 346, .external_lex_state = 13}, + [4202] = {.lex_state = 327, .external_lex_state = 22}, + [4203] = {.lex_state = 327, .external_lex_state = 22}, + [4204] = {.lex_state = 103, .external_lex_state = 16}, [4205] = {.lex_state = 291, .external_lex_state = 16}, [4206] = {.lex_state = 346, .external_lex_state = 13}, [4207] = {.lex_state = 291, .external_lex_state = 16}, [4208] = {.lex_state = 346, .external_lex_state = 13}, [4209] = {.lex_state = 291, .external_lex_state = 16}, - [4210] = {.lex_state = 302, .external_lex_state = 17}, - [4211] = {.lex_state = 302, .external_lex_state = 17}, - [4212] = {.lex_state = 302, .external_lex_state = 17}, - [4213] = {.lex_state = 304, .external_lex_state = 24}, - [4214] = {.lex_state = 304, .external_lex_state = 24}, - [4215] = {.lex_state = 304, .external_lex_state = 24}, - [4216] = {.lex_state = 358, .external_lex_state = 8}, - [4217] = {.lex_state = 358, .external_lex_state = 20}, - [4218] = {.lex_state = 358, .external_lex_state = 20}, - [4219] = {.lex_state = 358, .external_lex_state = 20}, - [4220] = {.lex_state = 289, .external_lex_state = 16}, + [4210] = {.lex_state = 346, .external_lex_state = 13}, + [4211] = {.lex_state = 291, .external_lex_state = 16}, + [4212] = {.lex_state = 346, .external_lex_state = 13}, + [4213] = {.lex_state = 291, .external_lex_state = 16}, + [4214] = {.lex_state = 302, .external_lex_state = 17}, + [4215] = {.lex_state = 302, .external_lex_state = 17}, + [4216] = {.lex_state = 302, .external_lex_state = 17}, + [4217] = {.lex_state = 304, .external_lex_state = 24}, + [4218] = {.lex_state = 304, .external_lex_state = 24}, + [4219] = {.lex_state = 304, .external_lex_state = 24}, + [4220] = {.lex_state = 358, .external_lex_state = 8}, [4221] = {.lex_state = 358, .external_lex_state = 20}, - [4222] = {.lex_state = 293}, - [4223] = {.lex_state = 291, .external_lex_state = 16}, - [4224] = {.lex_state = 103}, - [4225] = {.lex_state = 226, .external_lex_state = 16}, - [4226] = {.lex_state = 226, .external_lex_state = 16}, - [4227] = {.lex_state = 226, .external_lex_state = 16}, - [4228] = {.lex_state = 358, .external_lex_state = 20}, - [4229] = {.lex_state = 293}, - [4230] = {.lex_state = 291, .external_lex_state = 16}, - [4231] = {.lex_state = 358, .external_lex_state = 20}, - [4232] = {.lex_state = 293}, - [4233] = {.lex_state = 291, .external_lex_state = 16}, - [4234] = {.lex_state = 358, .external_lex_state = 20}, + [4222] = {.lex_state = 358, .external_lex_state = 20}, + [4223] = {.lex_state = 358, .external_lex_state = 20}, + [4224] = {.lex_state = 289, .external_lex_state = 16}, + [4225] = {.lex_state = 358, .external_lex_state = 20}, + [4226] = {.lex_state = 293}, + [4227] = {.lex_state = 291, .external_lex_state = 16}, + [4228] = {.lex_state = 103}, + [4229] = {.lex_state = 226, .external_lex_state = 16}, + [4230] = {.lex_state = 226, .external_lex_state = 16}, + [4231] = {.lex_state = 226, .external_lex_state = 16}, + [4232] = {.lex_state = 358, .external_lex_state = 20}, + [4233] = {.lex_state = 293}, + [4234] = {.lex_state = 291, .external_lex_state = 16}, [4235] = {.lex_state = 358, .external_lex_state = 20}, - [4236] = {.lex_state = 362, .external_lex_state = 7}, - [4237] = {.lex_state = 141}, - [4238] = {.lex_state = 364, .external_lex_state = 10}, - [4239] = {.lex_state = 165}, - [4240] = {.lex_state = 170}, - [4241] = {.lex_state = 364, .external_lex_state = 10}, - [4242] = {.lex_state = 175, .external_lex_state = 6}, - [4243] = {.lex_state = 20, .external_lex_state = 2}, - [4244] = {.lex_state = 20, .external_lex_state = 2}, - [4245] = {.lex_state = 20, .external_lex_state = 2}, - [4246] = {.lex_state = 348, .external_lex_state = 3}, - [4247] = {.lex_state = 241}, - [4248] = {.lex_state = 348, .external_lex_state = 14}, - [4249] = {.lex_state = 327, .external_lex_state = 22}, - [4250] = {.lex_state = 327, .external_lex_state = 22}, - [4251] = {.lex_state = 103, .external_lex_state = 16}, - [4252] = {.lex_state = 291, .external_lex_state = 16}, - [4253] = {.lex_state = 348, .external_lex_state = 14}, - [4254] = {.lex_state = 289, .external_lex_state = 16}, - [4255] = {.lex_state = 348, .external_lex_state = 14}, - [4256] = {.lex_state = 293}, - [4257] = {.lex_state = 291, .external_lex_state = 16}, - [4258] = {.lex_state = 348, .external_lex_state = 14}, - [4259] = {.lex_state = 293}, - [4260] = {.lex_state = 291, .external_lex_state = 16}, - [4261] = {.lex_state = 293}, - [4262] = {.lex_state = 291, .external_lex_state = 16}, - [4263] = {.lex_state = 291, .external_lex_state = 16}, - [4264] = {.lex_state = 348, .external_lex_state = 14}, - [4265] = {.lex_state = 291, .external_lex_state = 16}, - [4266] = {.lex_state = 348, .external_lex_state = 10}, - [4267] = {.lex_state = 327, .external_lex_state = 22}, - [4268] = {.lex_state = 327, .external_lex_state = 22}, - [4269] = {.lex_state = 103, .external_lex_state = 16}, - [4270] = {.lex_state = 291, .external_lex_state = 16}, - [4271] = {.lex_state = 348, .external_lex_state = 10}, - [4272] = {.lex_state = 289, .external_lex_state = 16}, - [4273] = {.lex_state = 348, .external_lex_state = 10}, - [4274] = {.lex_state = 293}, - [4275] = {.lex_state = 291, .external_lex_state = 16}, - [4276] = {.lex_state = 348, .external_lex_state = 10}, - [4277] = {.lex_state = 293}, - [4278] = {.lex_state = 291, .external_lex_state = 16}, - [4279] = {.lex_state = 293}, - [4280] = {.lex_state = 291, .external_lex_state = 16}, - [4281] = {.lex_state = 291, .external_lex_state = 16}, - [4282] = {.lex_state = 348, .external_lex_state = 10}, - [4283] = {.lex_state = 291, .external_lex_state = 16}, - [4284] = {.lex_state = 354, .external_lex_state = 5}, - [4285] = {.lex_state = 354, .external_lex_state = 5}, - [4286] = {.lex_state = 354, .external_lex_state = 5}, + [4236] = {.lex_state = 293}, + [4237] = {.lex_state = 291, .external_lex_state = 16}, + [4238] = {.lex_state = 358, .external_lex_state = 20}, + [4239] = {.lex_state = 358, .external_lex_state = 20}, + [4240] = {.lex_state = 362, .external_lex_state = 7}, + [4241] = {.lex_state = 141}, + [4242] = {.lex_state = 364, .external_lex_state = 10}, + [4243] = {.lex_state = 165}, + [4244] = {.lex_state = 170}, + [4245] = {.lex_state = 364, .external_lex_state = 10}, + [4246] = {.lex_state = 175, .external_lex_state = 6}, + [4247] = {.lex_state = 20, .external_lex_state = 2}, + [4248] = {.lex_state = 20, .external_lex_state = 2}, + [4249] = {.lex_state = 20, .external_lex_state = 2}, + [4250] = {.lex_state = 348, .external_lex_state = 3}, + [4251] = {.lex_state = 241}, + [4252] = {.lex_state = 348, .external_lex_state = 14}, + [4253] = {.lex_state = 327, .external_lex_state = 22}, + [4254] = {.lex_state = 327, .external_lex_state = 22}, + [4255] = {.lex_state = 103, .external_lex_state = 16}, + [4256] = {.lex_state = 291, .external_lex_state = 16}, + [4257] = {.lex_state = 348, .external_lex_state = 14}, + [4258] = {.lex_state = 289, .external_lex_state = 16}, + [4259] = {.lex_state = 348, .external_lex_state = 14}, + [4260] = {.lex_state = 293}, + [4261] = {.lex_state = 291, .external_lex_state = 16}, + [4262] = {.lex_state = 348, .external_lex_state = 14}, + [4263] = {.lex_state = 293}, + [4264] = {.lex_state = 291, .external_lex_state = 16}, + [4265] = {.lex_state = 293}, + [4266] = {.lex_state = 291, .external_lex_state = 16}, + [4267] = {.lex_state = 291, .external_lex_state = 16}, + [4268] = {.lex_state = 348, .external_lex_state = 14}, + [4269] = {.lex_state = 291, .external_lex_state = 16}, + [4270] = {.lex_state = 348, .external_lex_state = 10}, + [4271] = {.lex_state = 327, .external_lex_state = 22}, + [4272] = {.lex_state = 327, .external_lex_state = 22}, + [4273] = {.lex_state = 103, .external_lex_state = 16}, + [4274] = {.lex_state = 291, .external_lex_state = 16}, + [4275] = {.lex_state = 348, .external_lex_state = 10}, + [4276] = {.lex_state = 289, .external_lex_state = 16}, + [4277] = {.lex_state = 348, .external_lex_state = 10}, + [4278] = {.lex_state = 293}, + [4279] = {.lex_state = 291, .external_lex_state = 16}, + [4280] = {.lex_state = 348, .external_lex_state = 10}, + [4281] = {.lex_state = 293}, + [4282] = {.lex_state = 291, .external_lex_state = 16}, + [4283] = {.lex_state = 293}, + [4284] = {.lex_state = 291, .external_lex_state = 16}, + [4285] = {.lex_state = 291, .external_lex_state = 16}, + [4286] = {.lex_state = 348, .external_lex_state = 10}, [4287] = {.lex_state = 291, .external_lex_state = 16}, - [4288] = {.lex_state = 327, .external_lex_state = 22}, - [4289] = {.lex_state = 327, .external_lex_state = 22}, - [4290] = {.lex_state = 103, .external_lex_state = 16}, + [4288] = {.lex_state = 354, .external_lex_state = 5}, + [4289] = {.lex_state = 354, .external_lex_state = 5}, + [4290] = {.lex_state = 354, .external_lex_state = 5}, [4291] = {.lex_state = 291, .external_lex_state = 16}, - [4292] = {.lex_state = 354, .external_lex_state = 5}, - [4293] = {.lex_state = 291, .external_lex_state = 16}, - [4294] = {.lex_state = 354, .external_lex_state = 5}, + [4292] = {.lex_state = 327, .external_lex_state = 22}, + [4293] = {.lex_state = 327, .external_lex_state = 22}, + [4294] = {.lex_state = 103, .external_lex_state = 16}, [4295] = {.lex_state = 291, .external_lex_state = 16}, [4296] = {.lex_state = 354, .external_lex_state = 5}, [4297] = {.lex_state = 291, .external_lex_state = 16}, [4298] = {.lex_state = 354, .external_lex_state = 5}, [4299] = {.lex_state = 291, .external_lex_state = 16}, - [4300] = {.lex_state = 360, .external_lex_state = 5}, - [4301] = {.lex_state = 360, .external_lex_state = 5}, - [4302] = {.lex_state = 360, .external_lex_state = 5}, - [4303] = {.lex_state = 289, .external_lex_state = 16}, + [4300] = {.lex_state = 354, .external_lex_state = 5}, + [4301] = {.lex_state = 291, .external_lex_state = 16}, + [4302] = {.lex_state = 354, .external_lex_state = 5}, + [4303] = {.lex_state = 291, .external_lex_state = 16}, [4304] = {.lex_state = 360, .external_lex_state = 5}, - [4305] = {.lex_state = 293}, - [4306] = {.lex_state = 291, .external_lex_state = 16}, - [4307] = {.lex_state = 103}, - [4308] = {.lex_state = 226, .external_lex_state = 16}, - [4309] = {.lex_state = 226, .external_lex_state = 16}, - [4310] = {.lex_state = 226, .external_lex_state = 16}, - [4311] = {.lex_state = 360, .external_lex_state = 5}, - [4312] = {.lex_state = 293}, - [4313] = {.lex_state = 291, .external_lex_state = 16}, - [4314] = {.lex_state = 360, .external_lex_state = 5}, - [4315] = {.lex_state = 293}, - [4316] = {.lex_state = 291, .external_lex_state = 16}, - [4317] = {.lex_state = 360, .external_lex_state = 5}, + [4305] = {.lex_state = 360, .external_lex_state = 5}, + [4306] = {.lex_state = 360, .external_lex_state = 5}, + [4307] = {.lex_state = 289, .external_lex_state = 16}, + [4308] = {.lex_state = 360, .external_lex_state = 5}, + [4309] = {.lex_state = 293}, + [4310] = {.lex_state = 291, .external_lex_state = 16}, + [4311] = {.lex_state = 103}, + [4312] = {.lex_state = 226, .external_lex_state = 16}, + [4313] = {.lex_state = 226, .external_lex_state = 16}, + [4314] = {.lex_state = 226, .external_lex_state = 16}, + [4315] = {.lex_state = 360, .external_lex_state = 5}, + [4316] = {.lex_state = 293}, + [4317] = {.lex_state = 291, .external_lex_state = 16}, [4318] = {.lex_state = 360, .external_lex_state = 5}, - [4319] = {.lex_state = 333, .external_lex_state = 13}, - [4320] = {.lex_state = 333, .external_lex_state = 13}, - [4321] = {.lex_state = 333, .external_lex_state = 13}, - [4322] = {.lex_state = 179, .external_lex_state = 2}, - [4323] = {.lex_state = 141}, - [4324] = {.lex_state = 153, .external_lex_state = 4}, - [4325] = {.lex_state = 182, .external_lex_state = 8}, + [4319] = {.lex_state = 293}, + [4320] = {.lex_state = 291, .external_lex_state = 16}, + [4321] = {.lex_state = 360, .external_lex_state = 5}, + [4322] = {.lex_state = 360, .external_lex_state = 5}, + [4323] = {.lex_state = 333, .external_lex_state = 13}, + [4324] = {.lex_state = 333, .external_lex_state = 13}, + [4325] = {.lex_state = 333, .external_lex_state = 13}, [4326] = {.lex_state = 179, .external_lex_state = 2}, [4327] = {.lex_state = 141}, [4328] = {.lex_state = 153, .external_lex_state = 4}, [4329] = {.lex_state = 182, .external_lex_state = 8}, - [4330] = {.lex_state = 335, .external_lex_state = 10}, - [4331] = {.lex_state = 335, .external_lex_state = 10}, - [4332] = {.lex_state = 335, .external_lex_state = 10}, - [4333] = {.lex_state = 342, .external_lex_state = 10}, - [4334] = {.lex_state = 342, .external_lex_state = 10}, - [4335] = {.lex_state = 342, .external_lex_state = 10}, - [4336] = {.lex_state = 342, .external_lex_state = 10}, - [4337] = {.lex_state = 291, .external_lex_state = 16}, + [4330] = {.lex_state = 179, .external_lex_state = 2}, + [4331] = {.lex_state = 141}, + [4332] = {.lex_state = 153, .external_lex_state = 4}, + [4333] = {.lex_state = 182, .external_lex_state = 8}, + [4334] = {.lex_state = 335, .external_lex_state = 10}, + [4335] = {.lex_state = 335, .external_lex_state = 10}, + [4336] = {.lex_state = 335, .external_lex_state = 10}, + [4337] = {.lex_state = 342, .external_lex_state = 10}, [4338] = {.lex_state = 342, .external_lex_state = 10}, - [4339] = {.lex_state = 291, .external_lex_state = 16}, + [4339] = {.lex_state = 342, .external_lex_state = 10}, [4340] = {.lex_state = 342, .external_lex_state = 10}, [4341] = {.lex_state = 291, .external_lex_state = 16}, [4342] = {.lex_state = 342, .external_lex_state = 10}, - [4343] = {.lex_state = 342, .external_lex_state = 10}, - [4344] = {.lex_state = 344, .external_lex_state = 13}, - [4345] = {.lex_state = 344, .external_lex_state = 13}, - [4346] = {.lex_state = 344, .external_lex_state = 13}, - [4347] = {.lex_state = 344, .external_lex_state = 13}, - [4348] = {.lex_state = 291, .external_lex_state = 16}, + [4343] = {.lex_state = 291, .external_lex_state = 16}, + [4344] = {.lex_state = 342, .external_lex_state = 10}, + [4345] = {.lex_state = 291, .external_lex_state = 16}, + [4346] = {.lex_state = 342, .external_lex_state = 10}, + [4347] = {.lex_state = 342, .external_lex_state = 10}, + [4348] = {.lex_state = 344, .external_lex_state = 13}, [4349] = {.lex_state = 344, .external_lex_state = 13}, - [4350] = {.lex_state = 291, .external_lex_state = 16}, + [4350] = {.lex_state = 344, .external_lex_state = 13}, [4351] = {.lex_state = 344, .external_lex_state = 13}, [4352] = {.lex_state = 291, .external_lex_state = 16}, [4353] = {.lex_state = 344, .external_lex_state = 13}, - [4354] = {.lex_state = 344, .external_lex_state = 13}, - [4355] = {.lex_state = 346, .external_lex_state = 13}, - [4356] = {.lex_state = 346, .external_lex_state = 13}, - [4357] = {.lex_state = 346, .external_lex_state = 13}, - [4358] = {.lex_state = 346, .external_lex_state = 13}, - [4359] = {.lex_state = 291, .external_lex_state = 16}, + [4354] = {.lex_state = 291, .external_lex_state = 16}, + [4355] = {.lex_state = 344, .external_lex_state = 13}, + [4356] = {.lex_state = 291, .external_lex_state = 16}, + [4357] = {.lex_state = 344, .external_lex_state = 13}, + [4358] = {.lex_state = 344, .external_lex_state = 13}, + [4359] = {.lex_state = 346, .external_lex_state = 13}, [4360] = {.lex_state = 346, .external_lex_state = 13}, - [4361] = {.lex_state = 291, .external_lex_state = 16}, + [4361] = {.lex_state = 346, .external_lex_state = 13}, [4362] = {.lex_state = 346, .external_lex_state = 13}, [4363] = {.lex_state = 291, .external_lex_state = 16}, [4364] = {.lex_state = 346, .external_lex_state = 13}, - [4365] = {.lex_state = 346, .external_lex_state = 13}, - [4366] = {.lex_state = 358, .external_lex_state = 20}, - [4367] = {.lex_state = 327, .external_lex_state = 22}, - [4368] = {.lex_state = 327, .external_lex_state = 22}, - [4369] = {.lex_state = 103, .external_lex_state = 16}, - [4370] = {.lex_state = 291, .external_lex_state = 16}, - [4371] = {.lex_state = 358, .external_lex_state = 20}, - [4372] = {.lex_state = 289, .external_lex_state = 16}, - [4373] = {.lex_state = 358, .external_lex_state = 20}, - [4374] = {.lex_state = 293}, - [4375] = {.lex_state = 291, .external_lex_state = 16}, - [4376] = {.lex_state = 358, .external_lex_state = 20}, - [4377] = {.lex_state = 293}, - [4378] = {.lex_state = 291, .external_lex_state = 16}, - [4379] = {.lex_state = 293}, - [4380] = {.lex_state = 291, .external_lex_state = 16}, - [4381] = {.lex_state = 291, .external_lex_state = 16}, - [4382] = {.lex_state = 358, .external_lex_state = 20}, - [4383] = {.lex_state = 291, .external_lex_state = 16}, - [4384] = {.lex_state = 364, .external_lex_state = 10}, - [4385] = {.lex_state = 364, .external_lex_state = 10}, - [4386] = {.lex_state = 141}, - [4387] = {.lex_state = 364, .external_lex_state = 10}, + [4365] = {.lex_state = 291, .external_lex_state = 16}, + [4366] = {.lex_state = 346, .external_lex_state = 13}, + [4367] = {.lex_state = 291, .external_lex_state = 16}, + [4368] = {.lex_state = 346, .external_lex_state = 13}, + [4369] = {.lex_state = 346, .external_lex_state = 13}, + [4370] = {.lex_state = 358, .external_lex_state = 20}, + [4371] = {.lex_state = 327, .external_lex_state = 22}, + [4372] = {.lex_state = 327, .external_lex_state = 22}, + [4373] = {.lex_state = 103, .external_lex_state = 16}, + [4374] = {.lex_state = 291, .external_lex_state = 16}, + [4375] = {.lex_state = 358, .external_lex_state = 20}, + [4376] = {.lex_state = 289, .external_lex_state = 16}, + [4377] = {.lex_state = 358, .external_lex_state = 20}, + [4378] = {.lex_state = 293}, + [4379] = {.lex_state = 291, .external_lex_state = 16}, + [4380] = {.lex_state = 358, .external_lex_state = 20}, + [4381] = {.lex_state = 293}, + [4382] = {.lex_state = 291, .external_lex_state = 16}, + [4383] = {.lex_state = 293}, + [4384] = {.lex_state = 291, .external_lex_state = 16}, + [4385] = {.lex_state = 291, .external_lex_state = 16}, + [4386] = {.lex_state = 358, .external_lex_state = 20}, + [4387] = {.lex_state = 291, .external_lex_state = 16}, [4388] = {.lex_state = 364, .external_lex_state = 10}, - [4389] = {.lex_state = 165}, - [4390] = {.lex_state = 364, .external_lex_state = 10}, + [4389] = {.lex_state = 364, .external_lex_state = 10}, + [4390] = {.lex_state = 141}, [4391] = {.lex_state = 364, .external_lex_state = 10}, [4392] = {.lex_state = 364, .external_lex_state = 10}, - [4393] = {.lex_state = 103}, - [4394] = {.lex_state = 226, .external_lex_state = 16}, - [4395] = {.lex_state = 235, .external_lex_state = 6}, - [4396] = {.lex_state = 226, .external_lex_state = 16}, - [4397] = {.lex_state = 226, .external_lex_state = 16}, - [4398] = {.lex_state = 103}, - [4399] = {.lex_state = 241, .external_lex_state = 2}, - [4400] = {.lex_state = 103}, - [4401] = {.lex_state = 249, .external_lex_state = 2}, + [4393] = {.lex_state = 165}, + [4394] = {.lex_state = 364, .external_lex_state = 10}, + [4395] = {.lex_state = 364, .external_lex_state = 10}, + [4396] = {.lex_state = 364, .external_lex_state = 10}, + [4397] = {.lex_state = 103}, + [4398] = {.lex_state = 226, .external_lex_state = 16}, + [4399] = {.lex_state = 235, .external_lex_state = 6}, + [4400] = {.lex_state = 226, .external_lex_state = 16}, + [4401] = {.lex_state = 226, .external_lex_state = 16}, [4402] = {.lex_state = 103}, [4403] = {.lex_state = 241, .external_lex_state = 2}, - [4404] = {.lex_state = 348, .external_lex_state = 3}, - [4405] = {.lex_state = 348, .external_lex_state = 14}, - [4406] = {.lex_state = 348, .external_lex_state = 14}, - [4407] = {.lex_state = 348, .external_lex_state = 14}, - [4408] = {.lex_state = 291, .external_lex_state = 16}, - [4409] = {.lex_state = 327, .external_lex_state = 22}, - [4410] = {.lex_state = 327, .external_lex_state = 22}, - [4411] = {.lex_state = 103, .external_lex_state = 16}, + [4404] = {.lex_state = 103}, + [4405] = {.lex_state = 249, .external_lex_state = 2}, + [4406] = {.lex_state = 103}, + [4407] = {.lex_state = 241, .external_lex_state = 2}, + [4408] = {.lex_state = 348, .external_lex_state = 3}, + [4409] = {.lex_state = 348, .external_lex_state = 14}, + [4410] = {.lex_state = 348, .external_lex_state = 14}, + [4411] = {.lex_state = 348, .external_lex_state = 14}, [4412] = {.lex_state = 291, .external_lex_state = 16}, - [4413] = {.lex_state = 348, .external_lex_state = 14}, - [4414] = {.lex_state = 291, .external_lex_state = 16}, - [4415] = {.lex_state = 348, .external_lex_state = 14}, + [4413] = {.lex_state = 327, .external_lex_state = 22}, + [4414] = {.lex_state = 327, .external_lex_state = 22}, + [4415] = {.lex_state = 103, .external_lex_state = 16}, [4416] = {.lex_state = 291, .external_lex_state = 16}, [4417] = {.lex_state = 348, .external_lex_state = 14}, [4418] = {.lex_state = 291, .external_lex_state = 16}, [4419] = {.lex_state = 348, .external_lex_state = 14}, [4420] = {.lex_state = 291, .external_lex_state = 16}, - [4421] = {.lex_state = 348, .external_lex_state = 10}, - [4422] = {.lex_state = 348, .external_lex_state = 10}, - [4423] = {.lex_state = 348, .external_lex_state = 10}, + [4421] = {.lex_state = 348, .external_lex_state = 14}, + [4422] = {.lex_state = 291, .external_lex_state = 16}, + [4423] = {.lex_state = 348, .external_lex_state = 14}, [4424] = {.lex_state = 291, .external_lex_state = 16}, - [4425] = {.lex_state = 327, .external_lex_state = 22}, - [4426] = {.lex_state = 327, .external_lex_state = 22}, - [4427] = {.lex_state = 103, .external_lex_state = 16}, + [4425] = {.lex_state = 348, .external_lex_state = 10}, + [4426] = {.lex_state = 348, .external_lex_state = 10}, + [4427] = {.lex_state = 348, .external_lex_state = 10}, [4428] = {.lex_state = 291, .external_lex_state = 16}, - [4429] = {.lex_state = 348, .external_lex_state = 10}, - [4430] = {.lex_state = 291, .external_lex_state = 16}, - [4431] = {.lex_state = 348, .external_lex_state = 10}, + [4429] = {.lex_state = 327, .external_lex_state = 22}, + [4430] = {.lex_state = 327, .external_lex_state = 22}, + [4431] = {.lex_state = 103, .external_lex_state = 16}, [4432] = {.lex_state = 291, .external_lex_state = 16}, [4433] = {.lex_state = 348, .external_lex_state = 10}, [4434] = {.lex_state = 291, .external_lex_state = 16}, [4435] = {.lex_state = 348, .external_lex_state = 10}, [4436] = {.lex_state = 291, .external_lex_state = 16}, - [4437] = {.lex_state = 354, .external_lex_state = 5}, - [4438] = {.lex_state = 354, .external_lex_state = 5}, - [4439] = {.lex_state = 354, .external_lex_state = 5}, - [4440] = {.lex_state = 354, .external_lex_state = 5}, - [4441] = {.lex_state = 291, .external_lex_state = 16}, + [4437] = {.lex_state = 348, .external_lex_state = 10}, + [4438] = {.lex_state = 291, .external_lex_state = 16}, + [4439] = {.lex_state = 348, .external_lex_state = 10}, + [4440] = {.lex_state = 291, .external_lex_state = 16}, + [4441] = {.lex_state = 354, .external_lex_state = 5}, [4442] = {.lex_state = 354, .external_lex_state = 5}, - [4443] = {.lex_state = 291, .external_lex_state = 16}, + [4443] = {.lex_state = 354, .external_lex_state = 5}, [4444] = {.lex_state = 354, .external_lex_state = 5}, [4445] = {.lex_state = 291, .external_lex_state = 16}, [4446] = {.lex_state = 354, .external_lex_state = 5}, - [4447] = {.lex_state = 354, .external_lex_state = 5}, - [4448] = {.lex_state = 360, .external_lex_state = 5}, - [4449] = {.lex_state = 327, .external_lex_state = 22}, - [4450] = {.lex_state = 327, .external_lex_state = 22}, - [4451] = {.lex_state = 103, .external_lex_state = 16}, - [4452] = {.lex_state = 291, .external_lex_state = 16}, - [4453] = {.lex_state = 360, .external_lex_state = 5}, - [4454] = {.lex_state = 289, .external_lex_state = 16}, - [4455] = {.lex_state = 360, .external_lex_state = 5}, - [4456] = {.lex_state = 293}, - [4457] = {.lex_state = 291, .external_lex_state = 16}, - [4458] = {.lex_state = 360, .external_lex_state = 5}, - [4459] = {.lex_state = 293}, - [4460] = {.lex_state = 291, .external_lex_state = 16}, - [4461] = {.lex_state = 293}, - [4462] = {.lex_state = 291, .external_lex_state = 16}, - [4463] = {.lex_state = 291, .external_lex_state = 16}, - [4464] = {.lex_state = 360, .external_lex_state = 5}, - [4465] = {.lex_state = 291, .external_lex_state = 16}, - [4466] = {.lex_state = 179, .external_lex_state = 2}, - [4467] = {.lex_state = 179, .external_lex_state = 2}, - [4468] = {.lex_state = 342, .external_lex_state = 10}, - [4469] = {.lex_state = 342, .external_lex_state = 10}, - [4470] = {.lex_state = 342, .external_lex_state = 10}, - [4471] = {.lex_state = 344, .external_lex_state = 13}, - [4472] = {.lex_state = 344, .external_lex_state = 13}, - [4473] = {.lex_state = 344, .external_lex_state = 13}, - [4474] = {.lex_state = 346, .external_lex_state = 13}, - [4475] = {.lex_state = 346, .external_lex_state = 13}, - [4476] = {.lex_state = 346, .external_lex_state = 13}, - [4477] = {.lex_state = 358, .external_lex_state = 20}, - [4478] = {.lex_state = 358, .external_lex_state = 20}, - [4479] = {.lex_state = 358, .external_lex_state = 20}, - [4480] = {.lex_state = 291, .external_lex_state = 16}, - [4481] = {.lex_state = 327, .external_lex_state = 22}, - [4482] = {.lex_state = 327, .external_lex_state = 22}, - [4483] = {.lex_state = 103, .external_lex_state = 16}, + [4447] = {.lex_state = 291, .external_lex_state = 16}, + [4448] = {.lex_state = 354, .external_lex_state = 5}, + [4449] = {.lex_state = 291, .external_lex_state = 16}, + [4450] = {.lex_state = 354, .external_lex_state = 5}, + [4451] = {.lex_state = 354, .external_lex_state = 5}, + [4452] = {.lex_state = 360, .external_lex_state = 5}, + [4453] = {.lex_state = 327, .external_lex_state = 22}, + [4454] = {.lex_state = 327, .external_lex_state = 22}, + [4455] = {.lex_state = 103, .external_lex_state = 16}, + [4456] = {.lex_state = 291, .external_lex_state = 16}, + [4457] = {.lex_state = 360, .external_lex_state = 5}, + [4458] = {.lex_state = 289, .external_lex_state = 16}, + [4459] = {.lex_state = 360, .external_lex_state = 5}, + [4460] = {.lex_state = 293}, + [4461] = {.lex_state = 291, .external_lex_state = 16}, + [4462] = {.lex_state = 360, .external_lex_state = 5}, + [4463] = {.lex_state = 293}, + [4464] = {.lex_state = 291, .external_lex_state = 16}, + [4465] = {.lex_state = 293}, + [4466] = {.lex_state = 291, .external_lex_state = 16}, + [4467] = {.lex_state = 291, .external_lex_state = 16}, + [4468] = {.lex_state = 360, .external_lex_state = 5}, + [4469] = {.lex_state = 291, .external_lex_state = 16}, + [4470] = {.lex_state = 179, .external_lex_state = 2}, + [4471] = {.lex_state = 179, .external_lex_state = 2}, + [4472] = {.lex_state = 342, .external_lex_state = 10}, + [4473] = {.lex_state = 342, .external_lex_state = 10}, + [4474] = {.lex_state = 342, .external_lex_state = 10}, + [4475] = {.lex_state = 344, .external_lex_state = 13}, + [4476] = {.lex_state = 344, .external_lex_state = 13}, + [4477] = {.lex_state = 344, .external_lex_state = 13}, + [4478] = {.lex_state = 346, .external_lex_state = 13}, + [4479] = {.lex_state = 346, .external_lex_state = 13}, + [4480] = {.lex_state = 346, .external_lex_state = 13}, + [4481] = {.lex_state = 358, .external_lex_state = 20}, + [4482] = {.lex_state = 358, .external_lex_state = 20}, + [4483] = {.lex_state = 358, .external_lex_state = 20}, [4484] = {.lex_state = 291, .external_lex_state = 16}, - [4485] = {.lex_state = 358, .external_lex_state = 20}, - [4486] = {.lex_state = 291, .external_lex_state = 16}, - [4487] = {.lex_state = 358, .external_lex_state = 20}, + [4485] = {.lex_state = 327, .external_lex_state = 22}, + [4486] = {.lex_state = 327, .external_lex_state = 22}, + [4487] = {.lex_state = 103, .external_lex_state = 16}, [4488] = {.lex_state = 291, .external_lex_state = 16}, [4489] = {.lex_state = 358, .external_lex_state = 20}, [4490] = {.lex_state = 291, .external_lex_state = 16}, [4491] = {.lex_state = 358, .external_lex_state = 20}, [4492] = {.lex_state = 291, .external_lex_state = 16}, - [4493] = {.lex_state = 364, .external_lex_state = 10}, - [4494] = {.lex_state = 364, .external_lex_state = 10}, - [4495] = {.lex_state = 364, .external_lex_state = 10}, - [4496] = {.lex_state = 289, .external_lex_state = 16}, + [4493] = {.lex_state = 358, .external_lex_state = 20}, + [4494] = {.lex_state = 291, .external_lex_state = 16}, + [4495] = {.lex_state = 358, .external_lex_state = 20}, + [4496] = {.lex_state = 291, .external_lex_state = 16}, [4497] = {.lex_state = 364, .external_lex_state = 10}, - [4498] = {.lex_state = 293}, - [4499] = {.lex_state = 291, .external_lex_state = 16}, - [4500] = {.lex_state = 103}, - [4501] = {.lex_state = 226, .external_lex_state = 16}, - [4502] = {.lex_state = 226, .external_lex_state = 16}, - [4503] = {.lex_state = 226, .external_lex_state = 16}, - [4504] = {.lex_state = 364, .external_lex_state = 10}, - [4505] = {.lex_state = 293}, - [4506] = {.lex_state = 291, .external_lex_state = 16}, - [4507] = {.lex_state = 364, .external_lex_state = 10}, - [4508] = {.lex_state = 293}, - [4509] = {.lex_state = 291, .external_lex_state = 16}, - [4510] = {.lex_state = 364, .external_lex_state = 10}, + [4498] = {.lex_state = 364, .external_lex_state = 10}, + [4499] = {.lex_state = 364, .external_lex_state = 10}, + [4500] = {.lex_state = 289, .external_lex_state = 16}, + [4501] = {.lex_state = 364, .external_lex_state = 10}, + [4502] = {.lex_state = 293}, + [4503] = {.lex_state = 291, .external_lex_state = 16}, + [4504] = {.lex_state = 103}, + [4505] = {.lex_state = 226, .external_lex_state = 16}, + [4506] = {.lex_state = 226, .external_lex_state = 16}, + [4507] = {.lex_state = 226, .external_lex_state = 16}, + [4508] = {.lex_state = 364, .external_lex_state = 10}, + [4509] = {.lex_state = 293}, + [4510] = {.lex_state = 291, .external_lex_state = 16}, [4511] = {.lex_state = 364, .external_lex_state = 10}, - [4512] = {.lex_state = 348, .external_lex_state = 14}, - [4513] = {.lex_state = 348, .external_lex_state = 14}, - [4514] = {.lex_state = 348, .external_lex_state = 14}, - [4515] = {.lex_state = 348, .external_lex_state = 14}, - [4516] = {.lex_state = 291, .external_lex_state = 16}, + [4512] = {.lex_state = 293}, + [4513] = {.lex_state = 291, .external_lex_state = 16}, + [4514] = {.lex_state = 364, .external_lex_state = 10}, + [4515] = {.lex_state = 364, .external_lex_state = 10}, + [4516] = {.lex_state = 348, .external_lex_state = 14}, [4517] = {.lex_state = 348, .external_lex_state = 14}, - [4518] = {.lex_state = 291, .external_lex_state = 16}, + [4518] = {.lex_state = 348, .external_lex_state = 14}, [4519] = {.lex_state = 348, .external_lex_state = 14}, [4520] = {.lex_state = 291, .external_lex_state = 16}, [4521] = {.lex_state = 348, .external_lex_state = 14}, - [4522] = {.lex_state = 348, .external_lex_state = 14}, - [4523] = {.lex_state = 348, .external_lex_state = 10}, - [4524] = {.lex_state = 348, .external_lex_state = 10}, - [4525] = {.lex_state = 348, .external_lex_state = 10}, - [4526] = {.lex_state = 348, .external_lex_state = 10}, - [4527] = {.lex_state = 291, .external_lex_state = 16}, + [4522] = {.lex_state = 291, .external_lex_state = 16}, + [4523] = {.lex_state = 348, .external_lex_state = 14}, + [4524] = {.lex_state = 291, .external_lex_state = 16}, + [4525] = {.lex_state = 348, .external_lex_state = 14}, + [4526] = {.lex_state = 348, .external_lex_state = 14}, + [4527] = {.lex_state = 348, .external_lex_state = 10}, [4528] = {.lex_state = 348, .external_lex_state = 10}, - [4529] = {.lex_state = 291, .external_lex_state = 16}, + [4529] = {.lex_state = 348, .external_lex_state = 10}, [4530] = {.lex_state = 348, .external_lex_state = 10}, [4531] = {.lex_state = 291, .external_lex_state = 16}, [4532] = {.lex_state = 348, .external_lex_state = 10}, - [4533] = {.lex_state = 348, .external_lex_state = 10}, - [4534] = {.lex_state = 354, .external_lex_state = 5}, - [4535] = {.lex_state = 354, .external_lex_state = 5}, - [4536] = {.lex_state = 354, .external_lex_state = 5}, - [4537] = {.lex_state = 360, .external_lex_state = 5}, - [4538] = {.lex_state = 360, .external_lex_state = 5}, - [4539] = {.lex_state = 360, .external_lex_state = 5}, - [4540] = {.lex_state = 291, .external_lex_state = 16}, - [4541] = {.lex_state = 327, .external_lex_state = 22}, - [4542] = {.lex_state = 327, .external_lex_state = 22}, - [4543] = {.lex_state = 103, .external_lex_state = 16}, + [4533] = {.lex_state = 291, .external_lex_state = 16}, + [4534] = {.lex_state = 348, .external_lex_state = 10}, + [4535] = {.lex_state = 291, .external_lex_state = 16}, + [4536] = {.lex_state = 348, .external_lex_state = 10}, + [4537] = {.lex_state = 348, .external_lex_state = 10}, + [4538] = {.lex_state = 354, .external_lex_state = 5}, + [4539] = {.lex_state = 354, .external_lex_state = 5}, + [4540] = {.lex_state = 354, .external_lex_state = 5}, + [4541] = {.lex_state = 360, .external_lex_state = 5}, + [4542] = {.lex_state = 360, .external_lex_state = 5}, + [4543] = {.lex_state = 360, .external_lex_state = 5}, [4544] = {.lex_state = 291, .external_lex_state = 16}, - [4545] = {.lex_state = 360, .external_lex_state = 5}, - [4546] = {.lex_state = 291, .external_lex_state = 16}, - [4547] = {.lex_state = 360, .external_lex_state = 5}, + [4545] = {.lex_state = 327, .external_lex_state = 22}, + [4546] = {.lex_state = 327, .external_lex_state = 22}, + [4547] = {.lex_state = 103, .external_lex_state = 16}, [4548] = {.lex_state = 291, .external_lex_state = 16}, [4549] = {.lex_state = 360, .external_lex_state = 5}, [4550] = {.lex_state = 291, .external_lex_state = 16}, [4551] = {.lex_state = 360, .external_lex_state = 5}, [4552] = {.lex_state = 291, .external_lex_state = 16}, - [4553] = {.lex_state = 358, .external_lex_state = 20}, - [4554] = {.lex_state = 358, .external_lex_state = 20}, - [4555] = {.lex_state = 358, .external_lex_state = 20}, - [4556] = {.lex_state = 358, .external_lex_state = 20}, - [4557] = {.lex_state = 291, .external_lex_state = 16}, + [4553] = {.lex_state = 360, .external_lex_state = 5}, + [4554] = {.lex_state = 291, .external_lex_state = 16}, + [4555] = {.lex_state = 360, .external_lex_state = 5}, + [4556] = {.lex_state = 291, .external_lex_state = 16}, + [4557] = {.lex_state = 358, .external_lex_state = 20}, [4558] = {.lex_state = 358, .external_lex_state = 20}, - [4559] = {.lex_state = 291, .external_lex_state = 16}, + [4559] = {.lex_state = 358, .external_lex_state = 20}, [4560] = {.lex_state = 358, .external_lex_state = 20}, [4561] = {.lex_state = 291, .external_lex_state = 16}, [4562] = {.lex_state = 358, .external_lex_state = 20}, - [4563] = {.lex_state = 358, .external_lex_state = 20}, - [4564] = {.lex_state = 364, .external_lex_state = 10}, - [4565] = {.lex_state = 327, .external_lex_state = 22}, - [4566] = {.lex_state = 327, .external_lex_state = 22}, - [4567] = {.lex_state = 103, .external_lex_state = 16}, - [4568] = {.lex_state = 291, .external_lex_state = 16}, - [4569] = {.lex_state = 364, .external_lex_state = 10}, - [4570] = {.lex_state = 289, .external_lex_state = 16}, - [4571] = {.lex_state = 364, .external_lex_state = 10}, - [4572] = {.lex_state = 293}, - [4573] = {.lex_state = 291, .external_lex_state = 16}, - [4574] = {.lex_state = 364, .external_lex_state = 10}, - [4575] = {.lex_state = 293}, - [4576] = {.lex_state = 291, .external_lex_state = 16}, - [4577] = {.lex_state = 293}, - [4578] = {.lex_state = 291, .external_lex_state = 16}, - [4579] = {.lex_state = 291, .external_lex_state = 16}, - [4580] = {.lex_state = 364, .external_lex_state = 10}, - [4581] = {.lex_state = 291, .external_lex_state = 16}, - [4582] = {.lex_state = 348, .external_lex_state = 14}, - [4583] = {.lex_state = 348, .external_lex_state = 14}, - [4584] = {.lex_state = 348, .external_lex_state = 14}, - [4585] = {.lex_state = 348, .external_lex_state = 10}, - [4586] = {.lex_state = 348, .external_lex_state = 10}, - [4587] = {.lex_state = 348, .external_lex_state = 10}, - [4588] = {.lex_state = 360, .external_lex_state = 5}, - [4589] = {.lex_state = 360, .external_lex_state = 5}, - [4590] = {.lex_state = 360, .external_lex_state = 5}, - [4591] = {.lex_state = 360, .external_lex_state = 5}, - [4592] = {.lex_state = 291, .external_lex_state = 16}, + [4563] = {.lex_state = 291, .external_lex_state = 16}, + [4564] = {.lex_state = 358, .external_lex_state = 20}, + [4565] = {.lex_state = 291, .external_lex_state = 16}, + [4566] = {.lex_state = 358, .external_lex_state = 20}, + [4567] = {.lex_state = 358, .external_lex_state = 20}, + [4568] = {.lex_state = 364, .external_lex_state = 10}, + [4569] = {.lex_state = 327, .external_lex_state = 22}, + [4570] = {.lex_state = 327, .external_lex_state = 22}, + [4571] = {.lex_state = 103, .external_lex_state = 16}, + [4572] = {.lex_state = 291, .external_lex_state = 16}, + [4573] = {.lex_state = 364, .external_lex_state = 10}, + [4574] = {.lex_state = 289, .external_lex_state = 16}, + [4575] = {.lex_state = 364, .external_lex_state = 10}, + [4576] = {.lex_state = 293}, + [4577] = {.lex_state = 291, .external_lex_state = 16}, + [4578] = {.lex_state = 364, .external_lex_state = 10}, + [4579] = {.lex_state = 293}, + [4580] = {.lex_state = 291, .external_lex_state = 16}, + [4581] = {.lex_state = 293}, + [4582] = {.lex_state = 291, .external_lex_state = 16}, + [4583] = {.lex_state = 291, .external_lex_state = 16}, + [4584] = {.lex_state = 364, .external_lex_state = 10}, + [4585] = {.lex_state = 291, .external_lex_state = 16}, + [4586] = {.lex_state = 348, .external_lex_state = 14}, + [4587] = {.lex_state = 348, .external_lex_state = 14}, + [4588] = {.lex_state = 348, .external_lex_state = 14}, + [4589] = {.lex_state = 348, .external_lex_state = 10}, + [4590] = {.lex_state = 348, .external_lex_state = 10}, + [4591] = {.lex_state = 348, .external_lex_state = 10}, + [4592] = {.lex_state = 360, .external_lex_state = 5}, [4593] = {.lex_state = 360, .external_lex_state = 5}, - [4594] = {.lex_state = 291, .external_lex_state = 16}, + [4594] = {.lex_state = 360, .external_lex_state = 5}, [4595] = {.lex_state = 360, .external_lex_state = 5}, [4596] = {.lex_state = 291, .external_lex_state = 16}, [4597] = {.lex_state = 360, .external_lex_state = 5}, - [4598] = {.lex_state = 360, .external_lex_state = 5}, - [4599] = {.lex_state = 358, .external_lex_state = 20}, - [4600] = {.lex_state = 358, .external_lex_state = 20}, - [4601] = {.lex_state = 358, .external_lex_state = 20}, - [4602] = {.lex_state = 364, .external_lex_state = 10}, - [4603] = {.lex_state = 364, .external_lex_state = 10}, - [4604] = {.lex_state = 364, .external_lex_state = 10}, - [4605] = {.lex_state = 291, .external_lex_state = 16}, - [4606] = {.lex_state = 327, .external_lex_state = 22}, - [4607] = {.lex_state = 327, .external_lex_state = 22}, - [4608] = {.lex_state = 103, .external_lex_state = 16}, + [4598] = {.lex_state = 291, .external_lex_state = 16}, + [4599] = {.lex_state = 360, .external_lex_state = 5}, + [4600] = {.lex_state = 291, .external_lex_state = 16}, + [4601] = {.lex_state = 360, .external_lex_state = 5}, + [4602] = {.lex_state = 360, .external_lex_state = 5}, + [4603] = {.lex_state = 358, .external_lex_state = 20}, + [4604] = {.lex_state = 358, .external_lex_state = 20}, + [4605] = {.lex_state = 358, .external_lex_state = 20}, + [4606] = {.lex_state = 364, .external_lex_state = 10}, + [4607] = {.lex_state = 364, .external_lex_state = 10}, + [4608] = {.lex_state = 364, .external_lex_state = 10}, [4609] = {.lex_state = 291, .external_lex_state = 16}, - [4610] = {.lex_state = 364, .external_lex_state = 10}, - [4611] = {.lex_state = 291, .external_lex_state = 16}, - [4612] = {.lex_state = 364, .external_lex_state = 10}, + [4610] = {.lex_state = 327, .external_lex_state = 22}, + [4611] = {.lex_state = 327, .external_lex_state = 22}, + [4612] = {.lex_state = 103, .external_lex_state = 16}, [4613] = {.lex_state = 291, .external_lex_state = 16}, [4614] = {.lex_state = 364, .external_lex_state = 10}, [4615] = {.lex_state = 291, .external_lex_state = 16}, [4616] = {.lex_state = 364, .external_lex_state = 10}, [4617] = {.lex_state = 291, .external_lex_state = 16}, - [4618] = {.lex_state = 360, .external_lex_state = 5}, - [4619] = {.lex_state = 360, .external_lex_state = 5}, - [4620] = {.lex_state = 360, .external_lex_state = 5}, - [4621] = {.lex_state = 364, .external_lex_state = 10}, - [4622] = {.lex_state = 364, .external_lex_state = 10}, - [4623] = {.lex_state = 364, .external_lex_state = 10}, - [4624] = {.lex_state = 364, .external_lex_state = 10}, - [4625] = {.lex_state = 291, .external_lex_state = 16}, + [4618] = {.lex_state = 364, .external_lex_state = 10}, + [4619] = {.lex_state = 291, .external_lex_state = 16}, + [4620] = {.lex_state = 364, .external_lex_state = 10}, + [4621] = {.lex_state = 291, .external_lex_state = 16}, + [4622] = {.lex_state = 360, .external_lex_state = 5}, + [4623] = {.lex_state = 360, .external_lex_state = 5}, + [4624] = {.lex_state = 360, .external_lex_state = 5}, + [4625] = {.lex_state = 364, .external_lex_state = 10}, [4626] = {.lex_state = 364, .external_lex_state = 10}, - [4627] = {.lex_state = 291, .external_lex_state = 16}, + [4627] = {.lex_state = 364, .external_lex_state = 10}, [4628] = {.lex_state = 364, .external_lex_state = 10}, [4629] = {.lex_state = 291, .external_lex_state = 16}, [4630] = {.lex_state = 364, .external_lex_state = 10}, - [4631] = {.lex_state = 364, .external_lex_state = 10}, + [4631] = {.lex_state = 291, .external_lex_state = 16}, [4632] = {.lex_state = 364, .external_lex_state = 10}, - [4633] = {.lex_state = 364, .external_lex_state = 10}, + [4633] = {.lex_state = 291, .external_lex_state = 16}, [4634] = {.lex_state = 364, .external_lex_state = 10}, + [4635] = {.lex_state = 364, .external_lex_state = 10}, + [4636] = {.lex_state = 364, .external_lex_state = 10}, + [4637] = {.lex_state = 364, .external_lex_state = 10}, + [4638] = {.lex_state = 364, .external_lex_state = 10}, }; enum { @@ -12934,29 +12938,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [38] = { [anon_sym_in] = ACTIONS(444), - [sym_comment] = ACTIONS(56), + [anon_sym_SEMI_SEMI] = ACTIONS(446), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(446), + [anon_sym_LF] = ACTIONS(446), + [anon_sym_AMP] = ACTIONS(446), }, [39] = { - [sym_do_group] = STATE(240), - [anon_sym_do] = ACTIONS(446), + [sym_do_group] = STATE(241), + [anon_sym_do] = ACTIONS(448), [sym_comment] = ACTIONS(56), }, [40] = { [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(448), + [anon_sym_SEMI_SEMI] = ACTIONS(450), [anon_sym_PIPE_AMP] = ACTIONS(346), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(448), - [anon_sym_LF] = ACTIONS(448), - [anon_sym_AMP] = ACTIONS(448), + [anon_sym_SEMI] = ACTIONS(450), + [anon_sym_LF] = ACTIONS(450), + [anon_sym_AMP] = ACTIONS(450), }, [41] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(448), + [anon_sym_SEMI_SEMI] = ACTIONS(450), [anon_sym_PIPE_AMP] = ACTIONS(346), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), @@ -12978,30 +12986,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(448), - [anon_sym_LF] = ACTIONS(448), - [anon_sym_AMP] = ACTIONS(448), + [anon_sym_SEMI] = ACTIONS(450), + [anon_sym_LF] = ACTIONS(450), + [anon_sym_AMP] = ACTIONS(450), }, [42] = { - [anon_sym_then] = ACTIONS(450), + [anon_sym_then] = ACTIONS(452), [sym_comment] = ACTIONS(56), }, [43] = { - [aux_sym_concatenation_repeat1] = STATE(246), - [sym__concat] = ACTIONS(452), - [anon_sym_in] = ACTIONS(454), - [anon_sym_SEMI_SEMI] = ACTIONS(456), + [aux_sym_concatenation_repeat1] = STATE(247), + [sym__concat] = ACTIONS(454), + [anon_sym_in] = ACTIONS(456), + [anon_sym_SEMI_SEMI] = ACTIONS(458), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(456), - [anon_sym_LF] = ACTIONS(456), - [anon_sym_AMP] = ACTIONS(456), + [anon_sym_SEMI] = ACTIONS(458), + [anon_sym_LF] = ACTIONS(458), + [anon_sym_AMP] = ACTIONS(458), }, [44] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(248), - [anon_sym_DQUOTE] = ACTIONS(458), + [aux_sym_string_repeat1] = STATE(249), + [anon_sym_DQUOTE] = ACTIONS(460), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -13010,59 +13018,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [45] = { - [sym_string] = STATE(250), + [sym_string] = STATE(251), [anon_sym_DQUOTE] = ACTIONS(72), - [anon_sym_DOLLAR] = ACTIONS(460), - [sym_raw_string] = ACTIONS(462), - [anon_sym_POUND] = ACTIONS(460), - [anon_sym_DASH] = ACTIONS(460), + [anon_sym_DOLLAR] = ACTIONS(462), + [sym_raw_string] = ACTIONS(464), + [anon_sym_POUND] = ACTIONS(462), + [anon_sym_DASH] = ACTIONS(462), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(464), - [anon_sym_STAR] = ACTIONS(460), - [anon_sym_AT] = ACTIONS(460), - [anon_sym_QMARK] = ACTIONS(460), - [anon_sym_0] = ACTIONS(466), - [anon_sym__] = ACTIONS(466), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(466), + [anon_sym_STAR] = ACTIONS(462), + [anon_sym_AT] = ACTIONS(462), + [anon_sym_QMARK] = ACTIONS(462), + [anon_sym_0] = ACTIONS(468), + [anon_sym__] = ACTIONS(468), }, [46] = { - [aux_sym_concatenation_repeat1] = STATE(246), - [sym__concat] = ACTIONS(452), - [anon_sym_in] = ACTIONS(468), - [anon_sym_SEMI_SEMI] = ACTIONS(470), + [aux_sym_concatenation_repeat1] = STATE(247), + [sym__concat] = ACTIONS(454), + [anon_sym_in] = ACTIONS(470), + [anon_sym_SEMI_SEMI] = ACTIONS(472), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_LF] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_LF] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(472), }, [47] = { - [sym_subscript] = STATE(258), - [sym_variable_name] = ACTIONS(472), - [anon_sym_DOLLAR] = ACTIONS(474), - [anon_sym_POUND] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(474), + [sym_subscript] = STATE(259), + [sym_variable_name] = ACTIONS(474), + [anon_sym_DOLLAR] = ACTIONS(476), + [anon_sym_POUND] = ACTIONS(478), + [anon_sym_DASH] = ACTIONS(476), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_AT] = ACTIONS(474), - [anon_sym_QMARK] = ACTIONS(474), - [anon_sym_0] = ACTIONS(480), - [anon_sym__] = ACTIONS(480), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(480), + [anon_sym_STAR] = ACTIONS(476), + [anon_sym_AT] = ACTIONS(476), + [anon_sym_QMARK] = ACTIONS(476), + [anon_sym_0] = ACTIONS(482), + [anon_sym__] = ACTIONS(482), }, [48] = { - [sym_for_statement] = STATE(259), - [sym_while_statement] = STATE(259), - [sym_if_statement] = STATE(259), - [sym_case_statement] = STATE(259), - [sym_function_definition] = STATE(259), - [sym_subshell] = STATE(259), - [sym_pipeline] = STATE(259), - [sym_list] = STATE(259), - [sym_command] = STATE(259), + [sym_for_statement] = STATE(260), + [sym_while_statement] = STATE(260), + [sym_if_statement] = STATE(260), + [sym_case_statement] = STATE(260), + [sym_function_definition] = STATE(260), + [sym_subshell] = STATE(260), + [sym_pipeline] = STATE(260), + [sym_list] = STATE(260), + [sym_command] = STATE(260), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(259), - [sym_variable_assignment] = STATE(260), - [sym_declaration_command] = STATE(259), - [sym_unset_command] = STATE(259), + [sym_bracket_command] = STATE(260), + [sym_variable_assignment] = STATE(261), + [sym_declaration_command] = STATE(260), + [sym_unset_command] = STATE(260), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -13110,20 +13118,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [49] = { - [sym_for_statement] = STATE(261), - [sym_while_statement] = STATE(261), - [sym_if_statement] = STATE(261), - [sym_case_statement] = STATE(261), - [sym_function_definition] = STATE(261), - [sym_subshell] = STATE(261), - [sym_pipeline] = STATE(261), - [sym_list] = STATE(261), - [sym_command] = STATE(261), + [sym_for_statement] = STATE(262), + [sym_while_statement] = STATE(262), + [sym_if_statement] = STATE(262), + [sym_case_statement] = STATE(262), + [sym_function_definition] = STATE(262), + [sym_subshell] = STATE(262), + [sym_pipeline] = STATE(262), + [sym_list] = STATE(262), + [sym_command] = STATE(262), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(261), - [sym_variable_assignment] = STATE(262), - [sym_declaration_command] = STATE(261), - [sym_unset_command] = STATE(261), + [sym_bracket_command] = STATE(262), + [sym_variable_assignment] = STATE(263), + [sym_declaration_command] = STATE(262), + [sym_unset_command] = STATE(262), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -13171,20 +13179,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(334), }, [50] = { - [sym_for_statement] = STATE(263), - [sym_while_statement] = STATE(263), - [sym_if_statement] = STATE(263), - [sym_case_statement] = STATE(263), - [sym_function_definition] = STATE(263), - [sym_subshell] = STATE(263), - [sym_pipeline] = STATE(263), - [sym_list] = STATE(263), - [sym_command] = STATE(263), + [sym_for_statement] = STATE(264), + [sym_while_statement] = STATE(264), + [sym_if_statement] = STATE(264), + [sym_case_statement] = STATE(264), + [sym_function_definition] = STATE(264), + [sym_subshell] = STATE(264), + [sym_pipeline] = STATE(264), + [sym_list] = STATE(264), + [sym_command] = STATE(264), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(263), - [sym_variable_assignment] = STATE(264), - [sym_declaration_command] = STATE(263), - [sym_unset_command] = STATE(263), + [sym_bracket_command] = STATE(264), + [sym_variable_assignment] = STATE(265), + [sym_declaration_command] = STATE(264), + [sym_unset_command] = STATE(264), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -13232,28 +13240,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [51] = { - [anon_sym_in] = ACTIONS(468), - [anon_sym_SEMI_SEMI] = ACTIONS(470), + [anon_sym_in] = ACTIONS(470), + [anon_sym_SEMI_SEMI] = ACTIONS(472), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(470), - [anon_sym_LF] = ACTIONS(470), - [anon_sym_AMP] = ACTIONS(470), + [anon_sym_SEMI] = ACTIONS(472), + [anon_sym_LF] = ACTIONS(472), + [anon_sym_AMP] = ACTIONS(472), }, [52] = { - [sym_compound_statement] = STATE(267), - [anon_sym_LPAREN] = ACTIONS(482), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_compound_statement] = STATE(268), + [anon_sym_LPAREN] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(486), [sym_comment] = ACTIONS(56), }, [53] = { [sym__assignment] = STATE(37), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(486), - [anon_sym_PLUS_EQ] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_PLUS_EQ] = ACTIONS(488), [sym_comment] = ACTIONS(56), }, [54] = { - [sym__terminated_statement] = STATE(269), + [sym__terminated_statement] = STATE(270), [sym_for_statement] = STATE(40), [sym_while_statement] = STATE(40), [sym_if_statement] = STATE(40), @@ -13316,7 +13324,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [55] = { [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(488), + [sym_word] = ACTIONS(490), }, [56] = { [sym_concatenation] = STATE(84), @@ -13326,7 +13334,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(79), [sym_command_substitution] = STATE(79), [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(271), + [aux_sym_command_repeat2] = STATE(272), [anon_sym_EQ_TILDE] = ACTIONS(122), [anon_sym_EQ_EQ] = ACTIONS(122), [sym__special_characters] = ACTIONS(124), @@ -13349,7 +13357,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(90), [sym_command_substitution] = STATE(90), [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(272), + [aux_sym_command_repeat2] = STATE(273), [anon_sym_EQ_TILDE] = ACTIONS(142), [anon_sym_EQ_EQ] = ACTIONS(142), [sym__special_characters] = ACTIONS(144), @@ -13366,73 +13374,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [58] = { [sym_variable_assignment] = STATE(107), - [sym_subscript] = STATE(282), + [sym_subscript] = STATE(283), [sym_concatenation] = STATE(107), - [sym_string] = STATE(277), - [sym_simple_expansion] = STATE(277), - [sym_string_expansion] = STATE(277), - [sym_expansion] = STATE(277), - [sym_command_substitution] = STATE(277), - [sym_process_substitution] = STATE(277), - [aux_sym_declaration_command_repeat1] = STATE(283), - [sym_variable_name] = ACTIONS(490), + [sym_string] = STATE(278), + [sym_simple_expansion] = STATE(278), + [sym_string_expansion] = STATE(278), + [sym_expansion] = STATE(278), + [sym_command_substitution] = STATE(278), + [sym_process_substitution] = STATE(278), + [aux_sym_declaration_command_repeat1] = STATE(284), + [sym_variable_name] = ACTIONS(492), [anon_sym_PIPE] = ACTIONS(164), [anon_sym_RPAREN] = ACTIONS(164), [anon_sym_SEMI_SEMI] = ACTIONS(164), [anon_sym_PIPE_AMP] = ACTIONS(164), [anon_sym_AMP_AMP] = ACTIONS(164), [anon_sym_PIPE_PIPE] = ACTIONS(164), - [sym__special_characters] = ACTIONS(492), - [anon_sym_DQUOTE] = ACTIONS(494), - [anon_sym_DOLLAR] = ACTIONS(496), - [sym_raw_string] = ACTIONS(498), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(500), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(502), - [anon_sym_BQUOTE] = ACTIONS(504), - [anon_sym_LT_LPAREN] = ACTIONS(506), - [anon_sym_GT_LPAREN] = ACTIONS(506), + [sym__special_characters] = ACTIONS(494), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_DOLLAR] = ACTIONS(498), + [sym_raw_string] = ACTIONS(500), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(502), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(506), + [anon_sym_LT_LPAREN] = ACTIONS(508), + [anon_sym_GT_LPAREN] = ACTIONS(508), [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(184), - [sym_word] = ACTIONS(498), + [sym_word] = ACTIONS(500), [anon_sym_SEMI] = ACTIONS(164), [anon_sym_LF] = ACTIONS(164), [anon_sym_AMP] = ACTIONS(164), }, [59] = { [sym_concatenation] = STATE(119), - [sym_string] = STATE(287), - [sym_simple_expansion] = STATE(287), - [sym_string_expansion] = STATE(287), - [sym_expansion] = STATE(287), - [sym_command_substitution] = STATE(287), - [sym_process_substitution] = STATE(287), - [aux_sym_unset_command_repeat1] = STATE(292), + [sym_string] = STATE(288), + [sym_simple_expansion] = STATE(288), + [sym_string_expansion] = STATE(288), + [sym_expansion] = STATE(288), + [sym_command_substitution] = STATE(288), + [sym_process_substitution] = STATE(288), + [aux_sym_unset_command_repeat1] = STATE(293), [anon_sym_PIPE] = ACTIONS(186), [anon_sym_RPAREN] = ACTIONS(186), [anon_sym_SEMI_SEMI] = ACTIONS(186), [anon_sym_PIPE_AMP] = ACTIONS(186), [anon_sym_AMP_AMP] = ACTIONS(186), [anon_sym_PIPE_PIPE] = ACTIONS(186), - [sym__special_characters] = ACTIONS(508), - [anon_sym_DQUOTE] = ACTIONS(510), - [anon_sym_DOLLAR] = ACTIONS(512), - [sym_raw_string] = ACTIONS(514), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(518), - [anon_sym_BQUOTE] = ACTIONS(520), - [anon_sym_LT_LPAREN] = ACTIONS(522), - [anon_sym_GT_LPAREN] = ACTIONS(522), + [sym__special_characters] = ACTIONS(510), + [anon_sym_DQUOTE] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(514), + [sym_raw_string] = ACTIONS(516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(518), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(520), + [anon_sym_BQUOTE] = ACTIONS(522), + [anon_sym_LT_LPAREN] = ACTIONS(524), + [anon_sym_GT_LPAREN] = ACTIONS(524), [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(204), - [sym_word] = ACTIONS(514), + [sym_word] = ACTIONS(516), [anon_sym_SEMI] = ACTIONS(186), [anon_sym_LF] = ACTIONS(186), [anon_sym_AMP] = ACTIONS(186), }, [60] = { - [aux_sym_concatenation_repeat1] = STATE(294), + [aux_sym_concatenation_repeat1] = STATE(295), [sym_file_descriptor] = ACTIONS(224), - [sym__concat] = ACTIONS(524), + [sym__concat] = ACTIONS(526), [anon_sym_PIPE] = ACTIONS(228), [anon_sym_RPAREN] = ACTIONS(228), [anon_sym_SEMI_SEMI] = ACTIONS(228), @@ -13470,8 +13478,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(296), - [anon_sym_DQUOTE] = ACTIONS(526), + [aux_sym_string_repeat1] = STATE(297), + [anon_sym_DQUOTE] = ACTIONS(528), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -13480,24 +13488,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [62] = { - [sym_string] = STATE(298), + [sym_string] = STATE(299), [anon_sym_DQUOTE] = ACTIONS(106), - [anon_sym_DOLLAR] = ACTIONS(528), - [sym_raw_string] = ACTIONS(530), - [anon_sym_POUND] = ACTIONS(528), - [anon_sym_DASH] = ACTIONS(528), + [anon_sym_DOLLAR] = ACTIONS(530), + [sym_raw_string] = ACTIONS(532), + [anon_sym_POUND] = ACTIONS(530), + [anon_sym_DASH] = ACTIONS(530), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(532), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_AT] = ACTIONS(528), - [anon_sym_QMARK] = ACTIONS(528), - [anon_sym_0] = ACTIONS(534), - [anon_sym__] = ACTIONS(534), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(534), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_AT] = ACTIONS(530), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_0] = ACTIONS(536), + [anon_sym__] = ACTIONS(536), }, [63] = { - [aux_sym_concatenation_repeat1] = STATE(294), + [aux_sym_concatenation_repeat1] = STATE(295), [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(524), + [sym__concat] = ACTIONS(526), [anon_sym_PIPE] = ACTIONS(252), [anon_sym_RPAREN] = ACTIONS(252), [anon_sym_SEMI_SEMI] = ACTIONS(252), @@ -13532,34 +13540,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(252), }, [64] = { - [sym_subscript] = STATE(304), - [sym_variable_name] = ACTIONS(536), - [anon_sym_DOLLAR] = ACTIONS(538), - [anon_sym_POUND] = ACTIONS(540), - [anon_sym_DASH] = ACTIONS(538), + [sym_subscript] = STATE(305), + [sym_variable_name] = ACTIONS(538), + [anon_sym_DOLLAR] = ACTIONS(540), + [anon_sym_POUND] = ACTIONS(542), + [anon_sym_DASH] = ACTIONS(540), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(538), - [anon_sym_AT] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(538), - [anon_sym_0] = ACTIONS(544), - [anon_sym__] = ACTIONS(544), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(544), + [anon_sym_STAR] = ACTIONS(540), + [anon_sym_AT] = ACTIONS(540), + [anon_sym_QMARK] = ACTIONS(540), + [anon_sym_0] = ACTIONS(546), + [anon_sym__] = ACTIONS(546), }, [65] = { - [sym_for_statement] = STATE(305), - [sym_while_statement] = STATE(305), - [sym_if_statement] = STATE(305), - [sym_case_statement] = STATE(305), - [sym_function_definition] = STATE(305), - [sym_subshell] = STATE(305), - [sym_pipeline] = STATE(305), - [sym_list] = STATE(305), - [sym_command] = STATE(305), + [sym_for_statement] = STATE(306), + [sym_while_statement] = STATE(306), + [sym_if_statement] = STATE(306), + [sym_case_statement] = STATE(306), + [sym_function_definition] = STATE(306), + [sym_subshell] = STATE(306), + [sym_pipeline] = STATE(306), + [sym_list] = STATE(306), + [sym_command] = STATE(306), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(305), - [sym_variable_assignment] = STATE(306), - [sym_declaration_command] = STATE(305), - [sym_unset_command] = STATE(305), + [sym_bracket_command] = STATE(306), + [sym_variable_assignment] = STATE(307), + [sym_declaration_command] = STATE(306), + [sym_unset_command] = STATE(306), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -13607,20 +13615,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [66] = { - [sym_for_statement] = STATE(307), - [sym_while_statement] = STATE(307), - [sym_if_statement] = STATE(307), - [sym_case_statement] = STATE(307), - [sym_function_definition] = STATE(307), - [sym_subshell] = STATE(307), - [sym_pipeline] = STATE(307), - [sym_list] = STATE(307), - [sym_command] = STATE(307), + [sym_for_statement] = STATE(308), + [sym_while_statement] = STATE(308), + [sym_if_statement] = STATE(308), + [sym_case_statement] = STATE(308), + [sym_function_definition] = STATE(308), + [sym_subshell] = STATE(308), + [sym_pipeline] = STATE(308), + [sym_list] = STATE(308), + [sym_command] = STATE(308), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(307), - [sym_variable_assignment] = STATE(308), - [sym_declaration_command] = STATE(307), - [sym_unset_command] = STATE(307), + [sym_bracket_command] = STATE(308), + [sym_variable_assignment] = STATE(309), + [sym_declaration_command] = STATE(308), + [sym_unset_command] = STATE(308), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -13668,20 +13676,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(334), }, [67] = { - [sym_for_statement] = STATE(309), - [sym_while_statement] = STATE(309), - [sym_if_statement] = STATE(309), - [sym_case_statement] = STATE(309), - [sym_function_definition] = STATE(309), - [sym_subshell] = STATE(309), - [sym_pipeline] = STATE(309), - [sym_list] = STATE(309), - [sym_command] = STATE(309), + [sym_for_statement] = STATE(310), + [sym_while_statement] = STATE(310), + [sym_if_statement] = STATE(310), + [sym_case_statement] = STATE(310), + [sym_function_definition] = STATE(310), + [sym_subshell] = STATE(310), + [sym_pipeline] = STATE(310), + [sym_list] = STATE(310), + [sym_command] = STATE(310), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(309), - [sym_variable_assignment] = STATE(310), - [sym_declaration_command] = STATE(309), - [sym_unset_command] = STATE(309), + [sym_bracket_command] = STATE(310), + [sym_variable_assignment] = STATE(311), + [sym_declaration_command] = STATE(310), + [sym_unset_command] = STATE(310), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -13729,13 +13737,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [68] = { - [aux_sym_concatenation_repeat1] = STATE(294), + [aux_sym_concatenation_repeat1] = STATE(295), [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(524), + [sym__concat] = ACTIONS(526), [anon_sym_PIPE] = ACTIONS(252), [anon_sym_RPAREN] = ACTIONS(252), [anon_sym_SEMI_SEMI] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(548), [anon_sym_PIPE_AMP] = ACTIONS(252), [anon_sym_AMP_AMP] = ACTIONS(252), [anon_sym_PIPE_PIPE] = ACTIONS(252), @@ -13767,60 +13775,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(252), }, [69] = { - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(550), - [anon_sym_SEMI_SEMI] = ACTIONS(552), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_RPAREN] = ACTIONS(552), + [anon_sym_SEMI_SEMI] = ACTIONS(554), + [anon_sym_PIPE_AMP] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(556), + [anon_sym_PIPE_PIPE] = ACTIONS(556), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(552), - [anon_sym_LF] = ACTIONS(552), - [anon_sym_AMP] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LF] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(554), }, [70] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [sym_concatenation] = STATE(208), - [sym_string] = STATE(321), - [sym_simple_expansion] = STATE(321), - [sym_string_expansion] = STATE(321), - [sym_expansion] = STATE(321), - [sym_command_substitution] = STATE(321), - [sym_process_substitution] = STATE(321), - [aux_sym_while_statement_repeat1] = STATE(322), - [aux_sym_command_repeat2] = STATE(323), - [sym_file_descriptor] = ACTIONS(556), + [sym_string] = STATE(322), + [sym_simple_expansion] = STATE(322), + [sym_string_expansion] = STATE(322), + [sym_expansion] = STATE(322), + [sym_command_substitution] = STATE(322), + [sym_process_substitution] = STATE(322), + [aux_sym_while_statement_repeat1] = STATE(323), + [aux_sym_command_repeat2] = STATE(324), + [sym_file_descriptor] = ACTIONS(558), [anon_sym_PIPE] = ACTIONS(354), [anon_sym_RPAREN] = ACTIONS(354), [anon_sym_SEMI_SEMI] = ACTIONS(354), [anon_sym_PIPE_AMP] = ACTIONS(354), [anon_sym_AMP_AMP] = ACTIONS(354), [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_EQ_TILDE] = ACTIONS(558), - [anon_sym_EQ_EQ] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(560), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), + [anon_sym_EQ_TILDE] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_AMP_GT] = ACTIONS(562), + [anon_sym_AMP_GT_GT] = ACTIONS(562), + [anon_sym_LT_AMP] = ACTIONS(562), + [anon_sym_GT_AMP] = ACTIONS(562), [anon_sym_LT_LT] = ACTIONS(360), [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(562), - [sym__special_characters] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_DOLLAR] = ACTIONS(568), - [sym_raw_string] = ACTIONS(570), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(574), - [anon_sym_BQUOTE] = ACTIONS(576), - [anon_sym_LT_LPAREN] = ACTIONS(578), - [anon_sym_GT_LPAREN] = ACTIONS(578), + [anon_sym_LT_LT_LT] = ACTIONS(564), + [sym__special_characters] = ACTIONS(566), + [anon_sym_DQUOTE] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(570), + [sym_raw_string] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_LT_LPAREN] = ACTIONS(580), + [anon_sym_GT_LPAREN] = ACTIONS(580), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(570), + [sym_word] = ACTIONS(572), [anon_sym_SEMI] = ACTIONS(354), [anon_sym_LF] = ACTIONS(354), [anon_sym_AMP] = ACTIONS(354), @@ -13828,12 +13836,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [71] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(550), - [anon_sym_SEMI_SEMI] = ACTIONS(552), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_RPAREN] = ACTIONS(552), + [anon_sym_SEMI_SEMI] = ACTIONS(554), + [anon_sym_PIPE_AMP] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(556), + [anon_sym_PIPE_PIPE] = ACTIONS(556), [anon_sym_LT] = ACTIONS(382), [anon_sym_GT] = ACTIONS(382), [anon_sym_GT_GT] = ACTIONS(382), @@ -13852,32 +13860,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(552), - [anon_sym_LF] = ACTIONS(552), - [anon_sym_AMP] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LF] = ACTIONS(554), + [anon_sym_AMP] = ACTIONS(554), }, [72] = { [sym__assignment] = STATE(37), - [anon_sym_EQ] = ACTIONS(486), - [anon_sym_PLUS_EQ] = ACTIONS(486), + [anon_sym_EQ] = ACTIONS(488), + [anon_sym_PLUS_EQ] = ACTIONS(488), [sym_comment] = ACTIONS(56), }, [73] = { [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(324), - [sym_while_statement] = STATE(324), - [sym_if_statement] = STATE(324), - [sym_case_statement] = STATE(324), - [sym_function_definition] = STATE(324), - [sym_subshell] = STATE(324), - [sym_pipeline] = STATE(324), - [sym_list] = STATE(324), - [sym_command] = STATE(324), + [sym_for_statement] = STATE(325), + [sym_while_statement] = STATE(325), + [sym_if_statement] = STATE(325), + [sym_case_statement] = STATE(325), + [sym_function_definition] = STATE(325), + [sym_subshell] = STATE(325), + [sym_pipeline] = STATE(325), + [sym_list] = STATE(325), + [sym_command] = STATE(325), [sym_command_name] = STATE(70), - [sym_bracket_command] = STATE(324), - [sym_variable_assignment] = STATE(325), - [sym_declaration_command] = STATE(324), - [sym_unset_command] = STATE(324), + [sym_bracket_command] = STATE(325), + [sym_variable_assignment] = STATE(326), + [sym_declaration_command] = STATE(325), + [sym_unset_command] = STATE(325), [sym_subscript] = STATE(72), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -13887,7 +13895,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(63), [sym_command_substitution] = STATE(63), [sym_process_substitution] = STATE(63), - [aux_sym_program_repeat1] = STATE(326), + [aux_sym_program_repeat1] = STATE(327), [aux_sym_command_repeat1] = STATE(74), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(90), @@ -13926,7 +13934,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(120), }, [74] = { - [sym_command_name] = STATE(327), + [sym_command_name] = STATE(328), [sym_variable_assignment] = STATE(30), [sym_subscript] = STATE(214), [sym_file_redirect] = STATE(30), @@ -13947,7 +13955,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(580), + [sym__special_characters] = ACTIONS(582), [anon_sym_DQUOTE] = ACTIONS(106), [anon_sym_DOLLAR] = ACTIONS(108), [sym_raw_string] = ACTIONS(110), @@ -13957,53 +13965,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(118), [anon_sym_GT_LPAREN] = ACTIONS(118), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(582), + [sym_word] = ACTIONS(584), }, [75] = { - [sym_concatenation] = STATE(330), - [sym_string] = STATE(329), - [sym_simple_expansion] = STATE(329), - [sym_string_expansion] = STATE(329), - [sym_expansion] = STATE(329), - [sym_command_substitution] = STATE(329), - [sym_process_substitution] = STATE(329), - [sym__special_characters] = ACTIONS(584), - [anon_sym_DQUOTE] = ACTIONS(586), - [anon_sym_DOLLAR] = ACTIONS(588), - [sym_raw_string] = ACTIONS(590), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(592), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(594), - [anon_sym_BQUOTE] = ACTIONS(596), - [anon_sym_LT_LPAREN] = ACTIONS(598), - [anon_sym_GT_LPAREN] = ACTIONS(598), + [sym_concatenation] = STATE(331), + [sym_string] = STATE(330), + [sym_simple_expansion] = STATE(330), + [sym_string_expansion] = STATE(330), + [sym_expansion] = STATE(330), + [sym_command_substitution] = STATE(330), + [sym_process_substitution] = STATE(330), + [sym__special_characters] = ACTIONS(586), + [anon_sym_DQUOTE] = ACTIONS(588), + [anon_sym_DOLLAR] = ACTIONS(590), + [sym_raw_string] = ACTIONS(592), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(594), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(596), + [anon_sym_BQUOTE] = ACTIONS(598), + [anon_sym_LT_LPAREN] = ACTIONS(600), + [anon_sym_GT_LPAREN] = ACTIONS(600), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(590), - [sym_regex] = ACTIONS(600), + [sym_word] = ACTIONS(592), + [sym_regex] = ACTIONS(602), }, [76] = { - [aux_sym_concatenation_repeat1] = STATE(332), - [sym__concat] = ACTIONS(602), - [anon_sym_EQ_TILDE] = ACTIONS(604), - [anon_sym_EQ_EQ] = ACTIONS(604), - [anon_sym_RBRACK] = ACTIONS(606), - [sym__special_characters] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(606), - [anon_sym_DOLLAR] = ACTIONS(604), - [sym_raw_string] = ACTIONS(606), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(606), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), - [anon_sym_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(606), - [anon_sym_GT_LPAREN] = ACTIONS(606), + [aux_sym_concatenation_repeat1] = STATE(333), + [sym__concat] = ACTIONS(604), + [anon_sym_EQ_TILDE] = ACTIONS(606), + [anon_sym_EQ_EQ] = ACTIONS(606), + [anon_sym_RBRACK] = ACTIONS(608), + [sym__special_characters] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(606), + [sym_raw_string] = ACTIONS(608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_LT_LPAREN] = ACTIONS(608), + [anon_sym_GT_LPAREN] = ACTIONS(608), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(608), + [sym_word] = ACTIONS(610), }, [77] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(334), - [anon_sym_DQUOTE] = ACTIONS(610), + [aux_sym_string_repeat1] = STATE(335), + [anon_sym_DQUOTE] = ACTIONS(612), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -14012,67 +14020,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [78] = { - [sym_string] = STATE(336), + [sym_string] = STATE(337), [anon_sym_DQUOTE] = ACTIONS(126), - [anon_sym_DOLLAR] = ACTIONS(612), - [sym_raw_string] = ACTIONS(614), - [anon_sym_POUND] = ACTIONS(612), - [anon_sym_DASH] = ACTIONS(612), + [anon_sym_DOLLAR] = ACTIONS(614), + [sym_raw_string] = ACTIONS(616), + [anon_sym_POUND] = ACTIONS(614), + [anon_sym_DASH] = ACTIONS(614), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(616), - [anon_sym_STAR] = ACTIONS(612), - [anon_sym_AT] = ACTIONS(612), - [anon_sym_QMARK] = ACTIONS(612), - [anon_sym_0] = ACTIONS(618), - [anon_sym__] = ACTIONS(618), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(618), + [anon_sym_STAR] = ACTIONS(614), + [anon_sym_AT] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(614), + [anon_sym_0] = ACTIONS(620), + [anon_sym__] = ACTIONS(620), }, [79] = { - [aux_sym_concatenation_repeat1] = STATE(332), - [sym__concat] = ACTIONS(602), - [anon_sym_EQ_TILDE] = ACTIONS(620), - [anon_sym_EQ_EQ] = ACTIONS(620), - [anon_sym_RBRACK] = ACTIONS(622), - [sym__special_characters] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(622), - [anon_sym_DOLLAR] = ACTIONS(620), - [sym_raw_string] = ACTIONS(622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(622), - [anon_sym_BQUOTE] = ACTIONS(622), - [anon_sym_LT_LPAREN] = ACTIONS(622), - [anon_sym_GT_LPAREN] = ACTIONS(622), + [aux_sym_concatenation_repeat1] = STATE(333), + [sym__concat] = ACTIONS(604), + [anon_sym_EQ_TILDE] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_RBRACK] = ACTIONS(624), + [sym__special_characters] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(622), + [sym_raw_string] = ACTIONS(624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), + [anon_sym_BQUOTE] = ACTIONS(624), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(624), + [sym_word] = ACTIONS(626), }, [80] = { - [sym_subscript] = STATE(342), - [sym_variable_name] = ACTIONS(626), - [anon_sym_DOLLAR] = ACTIONS(628), - [anon_sym_POUND] = ACTIONS(630), - [anon_sym_DASH] = ACTIONS(628), + [sym_subscript] = STATE(343), + [sym_variable_name] = ACTIONS(628), + [anon_sym_DOLLAR] = ACTIONS(630), + [anon_sym_POUND] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(630), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(632), - [anon_sym_STAR] = ACTIONS(628), - [anon_sym_AT] = ACTIONS(628), - [anon_sym_QMARK] = ACTIONS(628), - [anon_sym_0] = ACTIONS(634), - [anon_sym__] = ACTIONS(634), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(634), + [anon_sym_STAR] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(630), + [anon_sym_QMARK] = ACTIONS(630), + [anon_sym_0] = ACTIONS(636), + [anon_sym__] = ACTIONS(636), }, [81] = { - [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_command] = STATE(343), + [sym_for_statement] = STATE(344), + [sym_while_statement] = STATE(344), + [sym_if_statement] = STATE(344), + [sym_case_statement] = STATE(344), + [sym_function_definition] = STATE(344), + [sym_subshell] = STATE(344), + [sym_pipeline] = STATE(344), + [sym_list] = STATE(344), + [sym_command] = STATE(344), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(343), - [sym_variable_assignment] = STATE(344), - [sym_declaration_command] = STATE(343), - [sym_unset_command] = STATE(343), + [sym_bracket_command] = STATE(344), + [sym_variable_assignment] = STATE(345), + [sym_declaration_command] = STATE(344), + [sym_unset_command] = STATE(344), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -14120,20 +14128,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [82] = { - [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_command] = STATE(345), + [sym_for_statement] = STATE(346), + [sym_while_statement] = STATE(346), + [sym_if_statement] = STATE(346), + [sym_case_statement] = STATE(346), + [sym_function_definition] = STATE(346), + [sym_subshell] = STATE(346), + [sym_pipeline] = STATE(346), + [sym_list] = STATE(346), + [sym_command] = STATE(346), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(345), - [sym_variable_assignment] = STATE(346), - [sym_declaration_command] = STATE(345), - [sym_unset_command] = STATE(345), + [sym_bracket_command] = STATE(346), + [sym_variable_assignment] = STATE(347), + [sym_declaration_command] = STATE(346), + [sym_unset_command] = STATE(346), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -14181,20 +14189,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(334), }, [83] = { - [sym_for_statement] = STATE(347), - [sym_while_statement] = STATE(347), - [sym_if_statement] = STATE(347), - [sym_case_statement] = STATE(347), - [sym_function_definition] = STATE(347), - [sym_subshell] = STATE(347), - [sym_pipeline] = STATE(347), - [sym_list] = STATE(347), - [sym_command] = STATE(347), + [sym_for_statement] = STATE(348), + [sym_while_statement] = STATE(348), + [sym_if_statement] = STATE(348), + [sym_case_statement] = STATE(348), + [sym_function_definition] = STATE(348), + [sym_subshell] = STATE(348), + [sym_pipeline] = STATE(348), + [sym_list] = STATE(348), + [sym_command] = STATE(348), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(347), - [sym_variable_assignment] = STATE(348), - [sym_declaration_command] = STATE(347), - [sym_unset_command] = STATE(347), + [sym_bracket_command] = STATE(348), + [sym_variable_assignment] = STATE(349), + [sym_declaration_command] = STATE(348), + [sym_unset_command] = STATE(348), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -14242,20 +14250,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [84] = { - [anon_sym_EQ_TILDE] = ACTIONS(620), - [anon_sym_EQ_EQ] = ACTIONS(620), - [anon_sym_RBRACK] = ACTIONS(622), - [sym__special_characters] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(622), - [anon_sym_DOLLAR] = ACTIONS(620), - [sym_raw_string] = ACTIONS(622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(622), - [anon_sym_BQUOTE] = ACTIONS(622), - [anon_sym_LT_LPAREN] = ACTIONS(622), - [anon_sym_GT_LPAREN] = ACTIONS(622), + [anon_sym_EQ_TILDE] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_RBRACK] = ACTIONS(624), + [sym__special_characters] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(622), + [sym_raw_string] = ACTIONS(624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), + [anon_sym_BQUOTE] = ACTIONS(624), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(624), + [sym_word] = ACTIONS(626), }, [85] = { [sym_concatenation] = STATE(84), @@ -14265,11 +14273,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(79), [sym_command_substitution] = STATE(79), [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(350), + [aux_sym_command_repeat2] = STATE(351), [anon_sym_EQ_TILDE] = ACTIONS(122), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_RBRACK] = ACTIONS(636), - [sym__special_characters] = ACTIONS(638), + [anon_sym_RBRACK] = ACTIONS(638), + [sym__special_characters] = ACTIONS(640), [anon_sym_DQUOTE] = ACTIONS(126), [anon_sym_DOLLAR] = ACTIONS(128), [sym_raw_string] = ACTIONS(130), @@ -14282,50 +14290,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(140), }, [86] = { - [sym_concatenation] = STATE(353), - [sym_string] = STATE(352), - [sym_simple_expansion] = STATE(352), - [sym_string_expansion] = STATE(352), - [sym_expansion] = STATE(352), - [sym_command_substitution] = STATE(352), - [sym_process_substitution] = STATE(352), - [sym__special_characters] = ACTIONS(640), - [anon_sym_DQUOTE] = ACTIONS(642), - [anon_sym_DOLLAR] = ACTIONS(644), - [sym_raw_string] = ACTIONS(646), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(648), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(650), - [anon_sym_BQUOTE] = ACTIONS(652), - [anon_sym_LT_LPAREN] = ACTIONS(654), - [anon_sym_GT_LPAREN] = ACTIONS(654), + [sym_concatenation] = STATE(354), + [sym_string] = STATE(353), + [sym_simple_expansion] = STATE(353), + [sym_string_expansion] = STATE(353), + [sym_expansion] = STATE(353), + [sym_command_substitution] = STATE(353), + [sym_process_substitution] = STATE(353), + [sym__special_characters] = ACTIONS(642), + [anon_sym_DQUOTE] = ACTIONS(644), + [anon_sym_DOLLAR] = ACTIONS(646), + [sym_raw_string] = ACTIONS(648), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(652), + [anon_sym_BQUOTE] = ACTIONS(654), + [anon_sym_LT_LPAREN] = ACTIONS(656), + [anon_sym_GT_LPAREN] = ACTIONS(656), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(646), - [sym_regex] = ACTIONS(656), + [sym_word] = ACTIONS(648), + [sym_regex] = ACTIONS(658), }, [87] = { - [aux_sym_concatenation_repeat1] = STATE(355), - [sym__concat] = ACTIONS(658), - [anon_sym_EQ_TILDE] = ACTIONS(604), - [anon_sym_EQ_EQ] = ACTIONS(604), - [anon_sym_RBRACK_RBRACK] = ACTIONS(606), - [sym__special_characters] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(606), - [anon_sym_DOLLAR] = ACTIONS(604), - [sym_raw_string] = ACTIONS(606), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(606), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), - [anon_sym_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(606), - [anon_sym_GT_LPAREN] = ACTIONS(606), + [aux_sym_concatenation_repeat1] = STATE(356), + [sym__concat] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(606), + [anon_sym_EQ_EQ] = ACTIONS(606), + [anon_sym_RBRACK_RBRACK] = ACTIONS(608), + [sym__special_characters] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(606), + [sym_raw_string] = ACTIONS(608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_LT_LPAREN] = ACTIONS(608), + [anon_sym_GT_LPAREN] = ACTIONS(608), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(608), + [sym_word] = ACTIONS(610), }, [88] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(357), - [anon_sym_DQUOTE] = ACTIONS(660), + [aux_sym_string_repeat1] = STATE(358), + [anon_sym_DQUOTE] = ACTIONS(662), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -14334,67 +14342,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [89] = { - [sym_string] = STATE(359), + [sym_string] = STATE(360), [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(662), - [sym_raw_string] = ACTIONS(664), - [anon_sym_POUND] = ACTIONS(662), - [anon_sym_DASH] = ACTIONS(662), + [anon_sym_DOLLAR] = ACTIONS(664), + [sym_raw_string] = ACTIONS(666), + [anon_sym_POUND] = ACTIONS(664), + [anon_sym_DASH] = ACTIONS(664), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(666), - [anon_sym_STAR] = ACTIONS(662), - [anon_sym_AT] = ACTIONS(662), - [anon_sym_QMARK] = ACTIONS(662), - [anon_sym_0] = ACTIONS(668), - [anon_sym__] = ACTIONS(668), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(668), + [anon_sym_STAR] = ACTIONS(664), + [anon_sym_AT] = ACTIONS(664), + [anon_sym_QMARK] = ACTIONS(664), + [anon_sym_0] = ACTIONS(670), + [anon_sym__] = ACTIONS(670), }, [90] = { - [aux_sym_concatenation_repeat1] = STATE(355), - [sym__concat] = ACTIONS(658), - [anon_sym_EQ_TILDE] = ACTIONS(620), - [anon_sym_EQ_EQ] = ACTIONS(620), - [anon_sym_RBRACK_RBRACK] = ACTIONS(622), - [sym__special_characters] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(622), - [anon_sym_DOLLAR] = ACTIONS(620), - [sym_raw_string] = ACTIONS(622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(622), - [anon_sym_BQUOTE] = ACTIONS(622), - [anon_sym_LT_LPAREN] = ACTIONS(622), - [anon_sym_GT_LPAREN] = ACTIONS(622), + [aux_sym_concatenation_repeat1] = STATE(356), + [sym__concat] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_RBRACK_RBRACK] = ACTIONS(624), + [sym__special_characters] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(622), + [sym_raw_string] = ACTIONS(624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), + [anon_sym_BQUOTE] = ACTIONS(624), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(624), + [sym_word] = ACTIONS(626), }, [91] = { - [sym_subscript] = STATE(365), - [sym_variable_name] = ACTIONS(670), - [anon_sym_DOLLAR] = ACTIONS(672), - [anon_sym_POUND] = ACTIONS(674), - [anon_sym_DASH] = ACTIONS(672), + [sym_subscript] = STATE(366), + [sym_variable_name] = ACTIONS(672), + [anon_sym_DOLLAR] = ACTIONS(674), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(674), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(676), - [anon_sym_STAR] = ACTIONS(672), - [anon_sym_AT] = ACTIONS(672), - [anon_sym_QMARK] = ACTIONS(672), - [anon_sym_0] = ACTIONS(678), - [anon_sym__] = ACTIONS(678), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(678), + [anon_sym_STAR] = ACTIONS(674), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_QMARK] = ACTIONS(674), + [anon_sym_0] = ACTIONS(680), + [anon_sym__] = ACTIONS(680), }, [92] = { - [sym_for_statement] = STATE(366), - [sym_while_statement] = STATE(366), - [sym_if_statement] = STATE(366), - [sym_case_statement] = STATE(366), - [sym_function_definition] = STATE(366), - [sym_subshell] = STATE(366), - [sym_pipeline] = STATE(366), - [sym_list] = STATE(366), - [sym_command] = STATE(366), + [sym_for_statement] = STATE(367), + [sym_while_statement] = STATE(367), + [sym_if_statement] = STATE(367), + [sym_case_statement] = STATE(367), + [sym_function_definition] = STATE(367), + [sym_subshell] = STATE(367), + [sym_pipeline] = STATE(367), + [sym_list] = STATE(367), + [sym_command] = STATE(367), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(366), - [sym_variable_assignment] = STATE(367), - [sym_declaration_command] = STATE(366), - [sym_unset_command] = STATE(366), + [sym_bracket_command] = STATE(367), + [sym_variable_assignment] = STATE(368), + [sym_declaration_command] = STATE(367), + [sym_unset_command] = STATE(367), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -14442,20 +14450,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [93] = { - [sym_for_statement] = STATE(368), - [sym_while_statement] = STATE(368), - [sym_if_statement] = STATE(368), - [sym_case_statement] = STATE(368), - [sym_function_definition] = STATE(368), - [sym_subshell] = STATE(368), - [sym_pipeline] = STATE(368), - [sym_list] = STATE(368), - [sym_command] = STATE(368), + [sym_for_statement] = STATE(369), + [sym_while_statement] = STATE(369), + [sym_if_statement] = STATE(369), + [sym_case_statement] = STATE(369), + [sym_function_definition] = STATE(369), + [sym_subshell] = STATE(369), + [sym_pipeline] = STATE(369), + [sym_list] = STATE(369), + [sym_command] = STATE(369), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(368), - [sym_variable_assignment] = STATE(369), - [sym_declaration_command] = STATE(368), - [sym_unset_command] = STATE(368), + [sym_bracket_command] = STATE(369), + [sym_variable_assignment] = STATE(370), + [sym_declaration_command] = STATE(369), + [sym_unset_command] = STATE(369), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -14503,20 +14511,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(334), }, [94] = { - [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_command] = STATE(370), + [sym_for_statement] = STATE(371), + [sym_while_statement] = STATE(371), + [sym_if_statement] = STATE(371), + [sym_case_statement] = STATE(371), + [sym_function_definition] = STATE(371), + [sym_subshell] = STATE(371), + [sym_pipeline] = STATE(371), + [sym_list] = STATE(371), + [sym_command] = STATE(371), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(370), - [sym_variable_assignment] = STATE(371), - [sym_declaration_command] = STATE(370), - [sym_unset_command] = STATE(370), + [sym_bracket_command] = STATE(371), + [sym_variable_assignment] = STATE(372), + [sym_declaration_command] = STATE(371), + [sym_unset_command] = STATE(371), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -14564,20 +14572,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [95] = { - [anon_sym_EQ_TILDE] = ACTIONS(620), - [anon_sym_EQ_EQ] = ACTIONS(620), - [anon_sym_RBRACK_RBRACK] = ACTIONS(622), - [sym__special_characters] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(622), - [anon_sym_DOLLAR] = ACTIONS(620), - [sym_raw_string] = ACTIONS(622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(622), - [anon_sym_BQUOTE] = ACTIONS(622), - [anon_sym_LT_LPAREN] = ACTIONS(622), - [anon_sym_GT_LPAREN] = ACTIONS(622), + [anon_sym_EQ_TILDE] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_RBRACK_RBRACK] = ACTIONS(624), + [sym__special_characters] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(622), + [sym_raw_string] = ACTIONS(624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), + [anon_sym_BQUOTE] = ACTIONS(624), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(624), + [sym_word] = ACTIONS(626), }, [96] = { [sym_concatenation] = STATE(95), @@ -14587,11 +14595,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(90), [sym_command_substitution] = STATE(90), [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(372), + [aux_sym_command_repeat2] = STATE(373), [anon_sym_EQ_TILDE] = ACTIONS(142), [anon_sym_EQ_EQ] = ACTIONS(142), - [anon_sym_RBRACK_RBRACK] = ACTIONS(636), - [sym__special_characters] = ACTIONS(680), + [anon_sym_RBRACK_RBRACK] = ACTIONS(638), + [sym__special_characters] = ACTIONS(682), [anon_sym_DQUOTE] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [sym_raw_string] = ACTIONS(150), @@ -14604,43 +14612,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(160), }, [97] = { - [sym__assignment] = STATE(374), + [sym__assignment] = STATE(375), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(682), - [anon_sym_PLUS_EQ] = ACTIONS(682), + [anon_sym_EQ] = ACTIONS(684), + [anon_sym_PLUS_EQ] = ACTIONS(684), [sym_comment] = ACTIONS(56), }, [98] = { - [aux_sym_concatenation_repeat1] = STATE(376), - [sym__concat] = ACTIONS(684), - [sym_variable_name] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(688), - [anon_sym_SEMI_SEMI] = ACTIONS(688), - [anon_sym_PIPE_AMP] = ACTIONS(688), - [anon_sym_AMP_AMP] = ACTIONS(688), - [anon_sym_PIPE_PIPE] = ACTIONS(688), - [sym__special_characters] = ACTIONS(688), - [anon_sym_DQUOTE] = ACTIONS(688), - [anon_sym_DOLLAR] = ACTIONS(688), - [sym_raw_string] = ACTIONS(688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), - [anon_sym_BQUOTE] = ACTIONS(688), - [anon_sym_LT_LPAREN] = ACTIONS(688), - [anon_sym_GT_LPAREN] = ACTIONS(688), + [aux_sym_concatenation_repeat1] = STATE(377), + [sym__concat] = ACTIONS(686), + [sym_variable_name] = ACTIONS(688), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [sym__special_characters] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_LT_LPAREN] = ACTIONS(690), + [anon_sym_GT_LPAREN] = ACTIONS(690), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(688), - [sym_word] = ACTIONS(688), - [anon_sym_SEMI] = ACTIONS(688), - [anon_sym_LF] = ACTIONS(688), - [anon_sym_AMP] = ACTIONS(688), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(690), + [sym_word] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), }, [99] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(378), - [anon_sym_DQUOTE] = ACTIONS(690), + [aux_sym_string_repeat1] = STATE(379), + [anon_sym_DQUOTE] = ACTIONS(692), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -14649,74 +14657,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [100] = { - [sym_string] = STATE(380), - [anon_sym_DQUOTE] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(694), - [sym_raw_string] = ACTIONS(696), - [anon_sym_POUND] = ACTIONS(694), - [anon_sym_DASH] = ACTIONS(694), + [sym_string] = STATE(381), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(696), + [sym_raw_string] = ACTIONS(698), + [anon_sym_POUND] = ACTIONS(696), + [anon_sym_DASH] = ACTIONS(696), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(698), - [anon_sym_STAR] = ACTIONS(694), - [anon_sym_AT] = ACTIONS(694), - [anon_sym_QMARK] = ACTIONS(694), - [anon_sym_0] = ACTIONS(700), - [anon_sym__] = ACTIONS(700), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(700), + [anon_sym_STAR] = ACTIONS(696), + [anon_sym_AT] = ACTIONS(696), + [anon_sym_QMARK] = ACTIONS(696), + [anon_sym_0] = ACTIONS(702), + [anon_sym__] = ACTIONS(702), }, [101] = { - [aux_sym_concatenation_repeat1] = STATE(376), - [sym__concat] = ACTIONS(684), - [sym_variable_name] = ACTIONS(702), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_SEMI_SEMI] = ACTIONS(704), - [anon_sym_PIPE_AMP] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(704), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [sym__special_characters] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(704), - [sym_raw_string] = ACTIONS(704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(704), - [anon_sym_GT_LPAREN] = ACTIONS(704), + [aux_sym_concatenation_repeat1] = STATE(377), + [sym__concat] = ACTIONS(686), + [sym_variable_name] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_SEMI_SEMI] = ACTIONS(706), + [anon_sym_PIPE_AMP] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [sym__special_characters] = ACTIONS(706), + [anon_sym_DQUOTE] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(706), + [sym_raw_string] = ACTIONS(706), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(706), + [anon_sym_BQUOTE] = ACTIONS(706), + [anon_sym_LT_LPAREN] = ACTIONS(706), + [anon_sym_GT_LPAREN] = ACTIONS(706), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(704), - [sym_word] = ACTIONS(704), - [anon_sym_SEMI] = ACTIONS(704), - [anon_sym_LF] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(706), + [sym_word] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(706), + [anon_sym_LF] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), }, [102] = { - [sym_subscript] = STATE(386), - [sym_variable_name] = ACTIONS(706), - [anon_sym_DOLLAR] = ACTIONS(708), - [anon_sym_POUND] = ACTIONS(710), - [anon_sym_DASH] = ACTIONS(708), + [sym_subscript] = STATE(387), + [sym_variable_name] = ACTIONS(708), + [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_POUND] = ACTIONS(712), + [anon_sym_DASH] = ACTIONS(710), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(712), - [anon_sym_STAR] = ACTIONS(708), - [anon_sym_AT] = ACTIONS(708), - [anon_sym_QMARK] = ACTIONS(708), - [anon_sym_0] = ACTIONS(714), - [anon_sym__] = ACTIONS(714), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(714), + [anon_sym_STAR] = ACTIONS(710), + [anon_sym_AT] = ACTIONS(710), + [anon_sym_QMARK] = ACTIONS(710), + [anon_sym_0] = ACTIONS(716), + [anon_sym__] = ACTIONS(716), }, [103] = { - [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_command] = STATE(387), + [sym_for_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_if_statement] = STATE(388), + [sym_case_statement] = STATE(388), + [sym_function_definition] = STATE(388), + [sym_subshell] = STATE(388), + [sym_pipeline] = STATE(388), + [sym_list] = STATE(388), + [sym_command] = STATE(388), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(387), - [sym_variable_assignment] = STATE(388), - [sym_declaration_command] = STATE(387), - [sym_unset_command] = STATE(387), + [sym_bracket_command] = STATE(388), + [sym_variable_assignment] = STATE(389), + [sym_declaration_command] = STATE(388), + [sym_unset_command] = STATE(388), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -14764,20 +14772,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [104] = { - [sym_for_statement] = STATE(389), - [sym_while_statement] = STATE(389), - [sym_if_statement] = STATE(389), - [sym_case_statement] = STATE(389), - [sym_function_definition] = STATE(389), - [sym_subshell] = STATE(389), - [sym_pipeline] = STATE(389), - [sym_list] = STATE(389), - [sym_command] = STATE(389), + [sym_for_statement] = STATE(390), + [sym_while_statement] = STATE(390), + [sym_if_statement] = STATE(390), + [sym_case_statement] = STATE(390), + [sym_function_definition] = STATE(390), + [sym_subshell] = STATE(390), + [sym_pipeline] = STATE(390), + [sym_list] = STATE(390), + [sym_command] = STATE(390), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(389), - [sym_variable_assignment] = STATE(390), - [sym_declaration_command] = STATE(389), - [sym_unset_command] = STATE(389), + [sym_bracket_command] = STATE(390), + [sym_variable_assignment] = STATE(391), + [sym_declaration_command] = STATE(390), + [sym_unset_command] = STATE(390), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -14825,20 +14833,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(334), }, [105] = { - [sym_for_statement] = STATE(391), - [sym_while_statement] = STATE(391), - [sym_if_statement] = STATE(391), - [sym_case_statement] = STATE(391), - [sym_function_definition] = STATE(391), - [sym_subshell] = STATE(391), - [sym_pipeline] = STATE(391), - [sym_list] = STATE(391), - [sym_command] = STATE(391), + [sym_for_statement] = STATE(392), + [sym_while_statement] = STATE(392), + [sym_if_statement] = STATE(392), + [sym_case_statement] = STATE(392), + [sym_function_definition] = STATE(392), + [sym_subshell] = STATE(392), + [sym_pipeline] = STATE(392), + [sym_list] = STATE(392), + [sym_command] = STATE(392), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(391), - [sym_variable_assignment] = STATE(392), - [sym_declaration_command] = STATE(391), - [sym_unset_command] = STATE(391), + [sym_bracket_command] = STATE(392), + [sym_variable_assignment] = STATE(393), + [sym_declaration_command] = STATE(392), + [sym_unset_command] = STATE(392), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -14886,57 +14894,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [106] = { - [sym_variable_name] = ACTIONS(716), - [anon_sym_PIPE] = ACTIONS(718), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_SEMI_SEMI] = ACTIONS(718), - [anon_sym_PIPE_AMP] = ACTIONS(718), - [anon_sym_AMP_AMP] = ACTIONS(718), - [anon_sym_PIPE_PIPE] = ACTIONS(718), - [sym__special_characters] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(718), - [anon_sym_DOLLAR] = ACTIONS(718), - [sym_raw_string] = ACTIONS(718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(718), - [anon_sym_BQUOTE] = ACTIONS(718), - [anon_sym_LT_LPAREN] = ACTIONS(718), - [anon_sym_GT_LPAREN] = ACTIONS(718), + [sym_variable_name] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_SEMI_SEMI] = ACTIONS(720), + [anon_sym_PIPE_AMP] = ACTIONS(720), + [anon_sym_AMP_AMP] = ACTIONS(720), + [anon_sym_PIPE_PIPE] = ACTIONS(720), + [sym__special_characters] = ACTIONS(720), + [anon_sym_DQUOTE] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(720), + [sym_raw_string] = ACTIONS(720), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(720), + [anon_sym_BQUOTE] = ACTIONS(720), + [anon_sym_LT_LPAREN] = ACTIONS(720), + [anon_sym_GT_LPAREN] = ACTIONS(720), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(718), - [sym_word] = ACTIONS(718), - [anon_sym_SEMI] = ACTIONS(718), - [anon_sym_LF] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(718), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(720), + [sym_word] = ACTIONS(720), + [anon_sym_SEMI] = ACTIONS(720), + [anon_sym_LF] = ACTIONS(720), + [anon_sym_AMP] = ACTIONS(720), }, [107] = { - [sym_variable_name] = ACTIONS(702), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_RPAREN] = ACTIONS(704), - [anon_sym_SEMI_SEMI] = ACTIONS(704), - [anon_sym_PIPE_AMP] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(704), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [sym__special_characters] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(704), - [sym_raw_string] = ACTIONS(704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(704), - [anon_sym_GT_LPAREN] = ACTIONS(704), + [sym_variable_name] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_RPAREN] = ACTIONS(706), + [anon_sym_SEMI_SEMI] = ACTIONS(706), + [anon_sym_PIPE_AMP] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [sym__special_characters] = ACTIONS(706), + [anon_sym_DQUOTE] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(706), + [sym_raw_string] = ACTIONS(706), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(706), + [anon_sym_BQUOTE] = ACTIONS(706), + [anon_sym_LT_LPAREN] = ACTIONS(706), + [anon_sym_GT_LPAREN] = ACTIONS(706), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(704), - [sym_word] = ACTIONS(704), - [anon_sym_SEMI] = ACTIONS(704), - [anon_sym_LF] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(706), + [sym_word] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(706), + [anon_sym_LF] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), }, [108] = { - [sym__assignment] = STATE(374), - [anon_sym_EQ] = ACTIONS(682), - [anon_sym_PLUS_EQ] = ACTIONS(682), + [sym__assignment] = STATE(375), + [anon_sym_EQ] = ACTIONS(684), + [anon_sym_PLUS_EQ] = ACTIONS(684), [sym_comment] = ACTIONS(56), }, [109] = { @@ -14949,13 +14957,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(101), [sym_command_substitution] = STATE(101), [sym_process_substitution] = STATE(101), - [aux_sym_declaration_command_repeat1] = STATE(393), + [aux_sym_declaration_command_repeat1] = STATE(394), [sym_variable_name] = ACTIONS(162), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_SEMI_SEMI] = ACTIONS(720), - [anon_sym_PIPE_AMP] = ACTIONS(720), - [anon_sym_AMP_AMP] = ACTIONS(720), - [anon_sym_PIPE_PIPE] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_SEMI_SEMI] = ACTIONS(722), + [anon_sym_PIPE_AMP] = ACTIONS(722), + [anon_sym_AMP_AMP] = ACTIONS(722), + [anon_sym_PIPE_PIPE] = ACTIONS(722), [sym__special_characters] = ACTIONS(166), [anon_sym_DQUOTE] = ACTIONS(168), [anon_sym_DOLLAR] = ACTIONS(170), @@ -14968,40 +14976,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(184), [sym_word] = ACTIONS(172), - [anon_sym_SEMI] = ACTIONS(720), - [anon_sym_LF] = ACTIONS(720), - [anon_sym_AMP] = ACTIONS(720), + [anon_sym_SEMI] = ACTIONS(722), + [anon_sym_LF] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(722), }, [110] = { - [aux_sym_concatenation_repeat1] = STATE(395), - [sym__concat] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(724), - [anon_sym_SEMI_SEMI] = ACTIONS(724), - [anon_sym_PIPE_AMP] = ACTIONS(724), - [anon_sym_AMP_AMP] = ACTIONS(724), - [anon_sym_PIPE_PIPE] = ACTIONS(724), - [sym__special_characters] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DOLLAR] = ACTIONS(724), - [sym_raw_string] = ACTIONS(724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), - [anon_sym_BQUOTE] = ACTIONS(724), - [anon_sym_LT_LPAREN] = ACTIONS(724), - [anon_sym_GT_LPAREN] = ACTIONS(724), + [aux_sym_concatenation_repeat1] = STATE(396), + [sym__concat] = ACTIONS(724), + [anon_sym_PIPE] = ACTIONS(726), + [anon_sym_SEMI_SEMI] = ACTIONS(726), + [anon_sym_PIPE_AMP] = ACTIONS(726), + [anon_sym_AMP_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(726), + [sym__special_characters] = ACTIONS(726), + [anon_sym_DQUOTE] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym_raw_string] = ACTIONS(726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), + [anon_sym_BQUOTE] = ACTIONS(726), + [anon_sym_LT_LPAREN] = ACTIONS(726), + [anon_sym_GT_LPAREN] = ACTIONS(726), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(724), - [sym_word] = ACTIONS(724), - [anon_sym_SEMI] = ACTIONS(724), - [anon_sym_LF] = ACTIONS(724), - [anon_sym_AMP] = ACTIONS(724), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(726), + [sym_word] = ACTIONS(726), + [anon_sym_SEMI] = ACTIONS(726), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(726), }, [111] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(397), - [anon_sym_DQUOTE] = ACTIONS(726), + [aux_sym_string_repeat1] = STATE(398), + [anon_sym_DQUOTE] = ACTIONS(728), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -15010,73 +15018,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [112] = { - [sym_string] = STATE(399), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(730), - [sym_raw_string] = ACTIONS(732), - [anon_sym_POUND] = ACTIONS(730), - [anon_sym_DASH] = ACTIONS(730), + [sym_string] = STATE(400), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(732), + [sym_raw_string] = ACTIONS(734), + [anon_sym_POUND] = ACTIONS(732), + [anon_sym_DASH] = ACTIONS(732), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(734), - [anon_sym_STAR] = ACTIONS(730), - [anon_sym_AT] = ACTIONS(730), - [anon_sym_QMARK] = ACTIONS(730), - [anon_sym_0] = ACTIONS(736), - [anon_sym__] = ACTIONS(736), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(736), + [anon_sym_STAR] = ACTIONS(732), + [anon_sym_AT] = ACTIONS(732), + [anon_sym_QMARK] = ACTIONS(732), + [anon_sym_0] = ACTIONS(738), + [anon_sym__] = ACTIONS(738), }, [113] = { - [aux_sym_concatenation_repeat1] = STATE(395), - [sym__concat] = ACTIONS(722), - [anon_sym_PIPE] = 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), - [sym__special_characters] = ACTIONS(738), - [anon_sym_DQUOTE] = ACTIONS(738), - [anon_sym_DOLLAR] = ACTIONS(738), - [sym_raw_string] = 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), + [aux_sym_concatenation_repeat1] = STATE(396), + [sym__concat] = ACTIONS(724), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_SEMI_SEMI] = ACTIONS(740), + [anon_sym_PIPE_AMP] = ACTIONS(740), + [anon_sym_AMP_AMP] = ACTIONS(740), + [anon_sym_PIPE_PIPE] = ACTIONS(740), + [sym__special_characters] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [sym_raw_string] = ACTIONS(740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(740), + [anon_sym_BQUOTE] = ACTIONS(740), + [anon_sym_LT_LPAREN] = ACTIONS(740), + [anon_sym_GT_LPAREN] = ACTIONS(740), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(738), - [sym_word] = ACTIONS(738), - [anon_sym_SEMI] = ACTIONS(738), - [anon_sym_LF] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(738), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(740), + [sym_word] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_LF] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(740), }, [114] = { - [sym_subscript] = STATE(405), - [sym_variable_name] = ACTIONS(740), - [anon_sym_DOLLAR] = ACTIONS(742), - [anon_sym_POUND] = ACTIONS(744), - [anon_sym_DASH] = ACTIONS(742), + [sym_subscript] = STATE(406), + [sym_variable_name] = ACTIONS(742), + [anon_sym_DOLLAR] = ACTIONS(744), + [anon_sym_POUND] = ACTIONS(746), + [anon_sym_DASH] = ACTIONS(744), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(742), - [anon_sym_AT] = ACTIONS(742), - [anon_sym_QMARK] = ACTIONS(742), - [anon_sym_0] = ACTIONS(748), - [anon_sym__] = ACTIONS(748), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(748), + [anon_sym_STAR] = ACTIONS(744), + [anon_sym_AT] = ACTIONS(744), + [anon_sym_QMARK] = ACTIONS(744), + [anon_sym_0] = ACTIONS(750), + [anon_sym__] = ACTIONS(750), }, [115] = { - [sym_for_statement] = STATE(406), - [sym_while_statement] = STATE(406), - [sym_if_statement] = STATE(406), - [sym_case_statement] = STATE(406), - [sym_function_definition] = STATE(406), - [sym_subshell] = STATE(406), - [sym_pipeline] = STATE(406), - [sym_list] = STATE(406), - [sym_command] = STATE(406), + [sym_for_statement] = STATE(407), + [sym_while_statement] = STATE(407), + [sym_if_statement] = STATE(407), + [sym_case_statement] = STATE(407), + [sym_function_definition] = STATE(407), + [sym_subshell] = STATE(407), + [sym_pipeline] = STATE(407), + [sym_list] = STATE(407), + [sym_command] = STATE(407), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(406), - [sym_variable_assignment] = STATE(407), - [sym_declaration_command] = STATE(406), - [sym_unset_command] = STATE(406), + [sym_bracket_command] = STATE(407), + [sym_variable_assignment] = STATE(408), + [sym_declaration_command] = STATE(407), + [sym_unset_command] = STATE(407), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -15124,20 +15132,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [116] = { - [sym_for_statement] = STATE(408), - [sym_while_statement] = STATE(408), - [sym_if_statement] = STATE(408), - [sym_case_statement] = STATE(408), - [sym_function_definition] = STATE(408), - [sym_subshell] = STATE(408), - [sym_pipeline] = STATE(408), - [sym_list] = STATE(408), - [sym_command] = STATE(408), + [sym_for_statement] = STATE(409), + [sym_while_statement] = STATE(409), + [sym_if_statement] = STATE(409), + [sym_case_statement] = STATE(409), + [sym_function_definition] = STATE(409), + [sym_subshell] = STATE(409), + [sym_pipeline] = STATE(409), + [sym_list] = STATE(409), + [sym_command] = STATE(409), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(408), - [sym_variable_assignment] = STATE(409), - [sym_declaration_command] = STATE(408), - [sym_unset_command] = STATE(408), + [sym_bracket_command] = STATE(409), + [sym_variable_assignment] = STATE(410), + [sym_declaration_command] = STATE(409), + [sym_unset_command] = STATE(409), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -15185,20 +15193,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(334), }, [117] = { - [sym_for_statement] = STATE(410), - [sym_while_statement] = STATE(410), - [sym_if_statement] = STATE(410), - [sym_case_statement] = STATE(410), - [sym_function_definition] = STATE(410), - [sym_subshell] = STATE(410), - [sym_pipeline] = STATE(410), - [sym_list] = STATE(410), - [sym_command] = STATE(410), + [sym_for_statement] = STATE(411), + [sym_while_statement] = STATE(411), + [sym_if_statement] = STATE(411), + [sym_case_statement] = STATE(411), + [sym_function_definition] = STATE(411), + [sym_subshell] = STATE(411), + [sym_pipeline] = STATE(411), + [sym_list] = STATE(411), + [sym_command] = STATE(411), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(410), - [sym_variable_assignment] = STATE(411), - [sym_declaration_command] = STATE(410), - [sym_unset_command] = STATE(410), + [sym_bracket_command] = STATE(411), + [sym_variable_assignment] = STATE(412), + [sym_declaration_command] = STATE(411), + [sym_unset_command] = STATE(411), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -15246,50 +15254,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [118] = { - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_RPAREN] = ACTIONS(750), - [anon_sym_SEMI_SEMI] = ACTIONS(750), - [anon_sym_PIPE_AMP] = ACTIONS(750), - [anon_sym_AMP_AMP] = ACTIONS(750), - [anon_sym_PIPE_PIPE] = ACTIONS(750), - [sym__special_characters] = ACTIONS(750), - [anon_sym_DQUOTE] = ACTIONS(750), - [anon_sym_DOLLAR] = ACTIONS(750), - [sym_raw_string] = ACTIONS(750), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(750), - [anon_sym_BQUOTE] = ACTIONS(750), - [anon_sym_LT_LPAREN] = ACTIONS(750), - [anon_sym_GT_LPAREN] = ACTIONS(750), + [anon_sym_PIPE] = ACTIONS(752), + [anon_sym_RPAREN] = ACTIONS(752), + [anon_sym_SEMI_SEMI] = ACTIONS(752), + [anon_sym_PIPE_AMP] = ACTIONS(752), + [anon_sym_AMP_AMP] = ACTIONS(752), + [anon_sym_PIPE_PIPE] = ACTIONS(752), + [sym__special_characters] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [sym_raw_string] = ACTIONS(752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(752), + [anon_sym_LT_LPAREN] = ACTIONS(752), + [anon_sym_GT_LPAREN] = ACTIONS(752), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(750), - [sym_word] = ACTIONS(750), - [anon_sym_SEMI] = ACTIONS(750), - [anon_sym_LF] = ACTIONS(750), - [anon_sym_AMP] = ACTIONS(750), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(752), + [sym_word] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(752), + [anon_sym_LF] = ACTIONS(752), + [anon_sym_AMP] = ACTIONS(752), }, [119] = { - [anon_sym_PIPE] = ACTIONS(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), - [sym__special_characters] = ACTIONS(738), - [anon_sym_DQUOTE] = ACTIONS(738), - [anon_sym_DOLLAR] = ACTIONS(738), - [sym_raw_string] = 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), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_SEMI_SEMI] = ACTIONS(740), + [anon_sym_PIPE_AMP] = ACTIONS(740), + [anon_sym_AMP_AMP] = ACTIONS(740), + [anon_sym_PIPE_PIPE] = ACTIONS(740), + [sym__special_characters] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [sym_raw_string] = ACTIONS(740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(740), + [anon_sym_BQUOTE] = ACTIONS(740), + [anon_sym_LT_LPAREN] = ACTIONS(740), + [anon_sym_GT_LPAREN] = ACTIONS(740), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(738), - [sym_word] = ACTIONS(738), - [anon_sym_SEMI] = ACTIONS(738), - [anon_sym_LF] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(738), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(740), + [sym_word] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_LF] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(740), }, [120] = { [sym_concatenation] = STATE(119), @@ -15299,12 +15307,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(113), [sym_command_substitution] = STATE(113), [sym_process_substitution] = STATE(113), - [aux_sym_unset_command_repeat1] = STATE(412), - [anon_sym_PIPE] = ACTIONS(752), - [anon_sym_SEMI_SEMI] = ACTIONS(752), - [anon_sym_PIPE_AMP] = ACTIONS(752), - [anon_sym_AMP_AMP] = ACTIONS(752), - [anon_sym_PIPE_PIPE] = ACTIONS(752), + [aux_sym_unset_command_repeat1] = STATE(413), + [anon_sym_PIPE] = ACTIONS(754), + [anon_sym_SEMI_SEMI] = ACTIONS(754), + [anon_sym_PIPE_AMP] = ACTIONS(754), + [anon_sym_AMP_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(754), [sym__special_characters] = ACTIONS(188), [anon_sym_DQUOTE] = ACTIONS(190), [anon_sym_DOLLAR] = ACTIONS(192), @@ -15317,40 +15325,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(204), [sym_word] = ACTIONS(194), - [anon_sym_SEMI] = ACTIONS(752), - [anon_sym_LF] = ACTIONS(752), - [anon_sym_AMP] = ACTIONS(752), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_AMP] = ACTIONS(754), }, [121] = { - [aux_sym_concatenation_repeat1] = STATE(414), - [sym_file_descriptor] = ACTIONS(754), - [sym__concat] = ACTIONS(756), - [sym_variable_name] = ACTIONS(754), - [anon_sym_LT] = ACTIONS(758), - [anon_sym_GT] = ACTIONS(758), - [anon_sym_GT_GT] = ACTIONS(754), - [anon_sym_AMP_GT] = ACTIONS(758), - [anon_sym_AMP_GT_GT] = ACTIONS(754), - [anon_sym_LT_AMP] = ACTIONS(754), - [anon_sym_GT_AMP] = ACTIONS(754), - [sym__special_characters] = ACTIONS(758), - [anon_sym_DQUOTE] = ACTIONS(754), - [anon_sym_DOLLAR] = ACTIONS(758), - [sym_raw_string] = ACTIONS(754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(754), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(754), - [anon_sym_BQUOTE] = ACTIONS(754), - [anon_sym_LT_LPAREN] = ACTIONS(754), - [anon_sym_GT_LPAREN] = ACTIONS(754), + [aux_sym_concatenation_repeat1] = STATE(415), + [sym_file_descriptor] = ACTIONS(756), + [sym__concat] = ACTIONS(758), + [sym_variable_name] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(760), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_AMP_GT] = ACTIONS(760), + [anon_sym_AMP_GT_GT] = ACTIONS(756), + [anon_sym_LT_AMP] = ACTIONS(756), + [anon_sym_GT_AMP] = ACTIONS(756), + [sym__special_characters] = ACTIONS(760), + [anon_sym_DQUOTE] = ACTIONS(756), + [anon_sym_DOLLAR] = ACTIONS(760), + [sym_raw_string] = ACTIONS(756), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(756), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(756), + [anon_sym_LT_LPAREN] = ACTIONS(756), + [anon_sym_GT_LPAREN] = ACTIONS(756), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(758), + [sym_word] = ACTIONS(760), }, [122] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(416), - [anon_sym_DQUOTE] = ACTIONS(760), + [aux_sym_string_repeat1] = STATE(417), + [anon_sym_DQUOTE] = ACTIONS(762), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -15359,73 +15367,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [123] = { - [sym_string] = STATE(418), + [sym_string] = STATE(419), [anon_sym_DQUOTE] = ACTIONS(208), - [anon_sym_DOLLAR] = ACTIONS(762), - [sym_raw_string] = ACTIONS(764), - [anon_sym_POUND] = ACTIONS(762), - [anon_sym_DASH] = ACTIONS(762), + [anon_sym_DOLLAR] = ACTIONS(764), + [sym_raw_string] = ACTIONS(766), + [anon_sym_POUND] = ACTIONS(764), + [anon_sym_DASH] = ACTIONS(764), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(766), - [anon_sym_STAR] = ACTIONS(762), - [anon_sym_AT] = ACTIONS(762), - [anon_sym_QMARK] = ACTIONS(762), - [anon_sym_0] = ACTIONS(768), - [anon_sym__] = ACTIONS(768), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(764), + [anon_sym_AT] = ACTIONS(764), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_0] = ACTIONS(770), + [anon_sym__] = ACTIONS(770), }, [124] = { - [aux_sym_concatenation_repeat1] = STATE(414), - [sym_file_descriptor] = ACTIONS(770), - [sym__concat] = ACTIONS(756), - [sym_variable_name] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_AMP_GT] = ACTIONS(772), - [anon_sym_AMP_GT_GT] = ACTIONS(770), - [anon_sym_LT_AMP] = ACTIONS(770), - [anon_sym_GT_AMP] = ACTIONS(770), - [sym__special_characters] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(770), - [anon_sym_DOLLAR] = ACTIONS(772), - [sym_raw_string] = ACTIONS(770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(770), - [anon_sym_BQUOTE] = ACTIONS(770), - [anon_sym_LT_LPAREN] = ACTIONS(770), - [anon_sym_GT_LPAREN] = ACTIONS(770), + [aux_sym_concatenation_repeat1] = STATE(415), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(758), + [sym_variable_name] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_AMP_GT] = ACTIONS(774), + [anon_sym_AMP_GT_GT] = ACTIONS(772), + [anon_sym_LT_AMP] = ACTIONS(772), + [anon_sym_GT_AMP] = ACTIONS(772), + [sym__special_characters] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(774), + [sym_raw_string] = ACTIONS(772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [anon_sym_LT_LPAREN] = ACTIONS(772), + [anon_sym_GT_LPAREN] = ACTIONS(772), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(772), + [sym_word] = ACTIONS(774), }, [125] = { - [sym_subscript] = STATE(424), - [sym_variable_name] = ACTIONS(774), - [anon_sym_DOLLAR] = ACTIONS(776), - [anon_sym_POUND] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(776), + [sym_subscript] = STATE(425), + [sym_variable_name] = ACTIONS(776), + [anon_sym_DOLLAR] = ACTIONS(778), + [anon_sym_POUND] = ACTIONS(780), + [anon_sym_DASH] = ACTIONS(778), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(780), - [anon_sym_STAR] = ACTIONS(776), - [anon_sym_AT] = ACTIONS(776), - [anon_sym_QMARK] = ACTIONS(776), - [anon_sym_0] = ACTIONS(782), - [anon_sym__] = ACTIONS(782), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(782), + [anon_sym_STAR] = ACTIONS(778), + [anon_sym_AT] = ACTIONS(778), + [anon_sym_QMARK] = ACTIONS(778), + [anon_sym_0] = ACTIONS(784), + [anon_sym__] = ACTIONS(784), }, [126] = { - [sym_for_statement] = STATE(425), - [sym_while_statement] = STATE(425), - [sym_if_statement] = STATE(425), - [sym_case_statement] = STATE(425), - [sym_function_definition] = STATE(425), - [sym_subshell] = STATE(425), - [sym_pipeline] = STATE(425), - [sym_list] = STATE(425), - [sym_command] = STATE(425), + [sym_for_statement] = STATE(426), + [sym_while_statement] = STATE(426), + [sym_if_statement] = STATE(426), + [sym_case_statement] = STATE(426), + [sym_function_definition] = STATE(426), + [sym_subshell] = STATE(426), + [sym_pipeline] = STATE(426), + [sym_list] = STATE(426), + [sym_command] = STATE(426), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(425), - [sym_variable_assignment] = STATE(426), - [sym_declaration_command] = STATE(425), - [sym_unset_command] = STATE(425), + [sym_bracket_command] = STATE(426), + [sym_variable_assignment] = STATE(427), + [sym_declaration_command] = STATE(426), + [sym_unset_command] = STATE(426), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -15473,20 +15481,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [127] = { - [sym_for_statement] = STATE(427), - [sym_while_statement] = STATE(427), - [sym_if_statement] = STATE(427), - [sym_case_statement] = STATE(427), - [sym_function_definition] = STATE(427), - [sym_subshell] = STATE(427), - [sym_pipeline] = STATE(427), - [sym_list] = STATE(427), - [sym_command] = STATE(427), + [sym_for_statement] = STATE(428), + [sym_while_statement] = STATE(428), + [sym_if_statement] = STATE(428), + [sym_case_statement] = STATE(428), + [sym_function_definition] = STATE(428), + [sym_subshell] = STATE(428), + [sym_pipeline] = STATE(428), + [sym_list] = STATE(428), + [sym_command] = STATE(428), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(427), - [sym_variable_assignment] = STATE(428), - [sym_declaration_command] = STATE(427), - [sym_unset_command] = STATE(427), + [sym_bracket_command] = STATE(428), + [sym_variable_assignment] = STATE(429), + [sym_declaration_command] = STATE(428), + [sym_unset_command] = STATE(428), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -15534,20 +15542,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(334), }, [128] = { - [sym_for_statement] = STATE(429), - [sym_while_statement] = STATE(429), - [sym_if_statement] = STATE(429), - [sym_case_statement] = STATE(429), - [sym_function_definition] = STATE(429), - [sym_subshell] = STATE(429), - [sym_pipeline] = STATE(429), - [sym_list] = STATE(429), - [sym_command] = STATE(429), + [sym_for_statement] = STATE(430), + [sym_while_statement] = STATE(430), + [sym_if_statement] = STATE(430), + [sym_case_statement] = STATE(430), + [sym_function_definition] = STATE(430), + [sym_subshell] = STATE(430), + [sym_pipeline] = STATE(430), + [sym_list] = STATE(430), + [sym_command] = STATE(430), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(429), - [sym_variable_assignment] = STATE(430), - [sym_declaration_command] = STATE(429), - [sym_unset_command] = STATE(429), + [sym_bracket_command] = STATE(430), + [sym_variable_assignment] = STATE(431), + [sym_declaration_command] = STATE(430), + [sym_unset_command] = STATE(430), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -15595,169 +15603,169 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [129] = { - [sym_file_descriptor] = ACTIONS(770), - [sym_variable_name] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_AMP_GT] = ACTIONS(772), - [anon_sym_AMP_GT_GT] = ACTIONS(770), - [anon_sym_LT_AMP] = ACTIONS(770), - [anon_sym_GT_AMP] = ACTIONS(770), - [sym__special_characters] = ACTIONS(772), - [anon_sym_DQUOTE] = ACTIONS(770), - [anon_sym_DOLLAR] = ACTIONS(772), - [sym_raw_string] = ACTIONS(770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(770), - [anon_sym_BQUOTE] = ACTIONS(770), - [anon_sym_LT_LPAREN] = ACTIONS(770), - [anon_sym_GT_LPAREN] = ACTIONS(770), + [sym_file_descriptor] = ACTIONS(772), + [sym_variable_name] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_AMP_GT] = ACTIONS(774), + [anon_sym_AMP_GT_GT] = ACTIONS(772), + [anon_sym_LT_AMP] = ACTIONS(772), + [anon_sym_GT_AMP] = ACTIONS(772), + [sym__special_characters] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(772), + [anon_sym_DOLLAR] = ACTIONS(774), + [sym_raw_string] = ACTIONS(772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), + [anon_sym_LT_LPAREN] = ACTIONS(772), + [anon_sym_GT_LPAREN] = ACTIONS(772), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(772), + [sym_word] = ACTIONS(774), }, [130] = { - [sym_string] = STATE(431), - [sym_simple_expansion] = STATE(431), - [sym_string_expansion] = STATE(431), - [sym_expansion] = STATE(431), - [sym_command_substitution] = STATE(431), - [sym_process_substitution] = STATE(431), - [sym__special_characters] = ACTIONS(784), + [sym_string] = STATE(432), + [sym_simple_expansion] = STATE(432), + [sym_string_expansion] = STATE(432), + [sym_expansion] = STATE(432), + [sym_command_substitution] = STATE(432), + [sym_process_substitution] = STATE(432), + [sym__special_characters] = ACTIONS(786), [anon_sym_DQUOTE] = ACTIONS(42), [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(786), + [sym_raw_string] = ACTIONS(788), [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), [anon_sym_BQUOTE] = ACTIONS(52), [anon_sym_LT_LPAREN] = ACTIONS(54), [anon_sym_GT_LPAREN] = ACTIONS(54), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(784), + [sym_word] = ACTIONS(786), }, [131] = { - [aux_sym_concatenation_repeat1] = STATE(432), - [sym_file_descriptor] = ACTIONS(788), + [aux_sym_concatenation_repeat1] = STATE(433), + [sym_file_descriptor] = ACTIONS(790), [sym__concat] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_EQ_EQ] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(790), - [anon_sym_GT] = ACTIONS(790), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(790), - [anon_sym_AMP_GT_GT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(790), - [anon_sym_GT_AMP] = ACTIONS(790), - [anon_sym_LT_LT] = ACTIONS(790), - [anon_sym_LT_LT_DASH] = ACTIONS(790), - [anon_sym_LT_LT_LT] = ACTIONS(790), - [sym__special_characters] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(790), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_EQ_TILDE] = ACTIONS(792), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_AMP_GT] = ACTIONS(792), + [anon_sym_AMP_GT_GT] = ACTIONS(792), + [anon_sym_LT_AMP] = ACTIONS(792), + [anon_sym_GT_AMP] = ACTIONS(792), + [anon_sym_LT_LT] = ACTIONS(792), + [anon_sym_LT_LT_DASH] = ACTIONS(792), + [anon_sym_LT_LT_LT] = ACTIONS(792), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), + [sym_word] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), }, [132] = { - [sym_file_descriptor] = ACTIONS(792), - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_EQ_TILDE] = ACTIONS(794), - [anon_sym_EQ_EQ] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(794), - [anon_sym_GT] = ACTIONS(794), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_AMP_GT] = ACTIONS(794), - [anon_sym_AMP_GT_GT] = ACTIONS(794), - [anon_sym_LT_AMP] = ACTIONS(794), - [anon_sym_GT_AMP] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(794), - [anon_sym_LT_LT_DASH] = ACTIONS(794), - [anon_sym_LT_LT_LT] = ACTIONS(794), - [sym__special_characters] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(794), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), + [sym_file_descriptor] = ACTIONS(794), + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [anon_sym_EQ_TILDE] = ACTIONS(796), + [anon_sym_EQ_EQ] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(796), + [anon_sym_GT_GT] = ACTIONS(796), + [anon_sym_AMP_GT] = ACTIONS(796), + [anon_sym_AMP_GT_GT] = ACTIONS(796), + [anon_sym_LT_AMP] = ACTIONS(796), + [anon_sym_GT_AMP] = ACTIONS(796), + [anon_sym_LT_LT] = ACTIONS(796), + [anon_sym_LT_LT_DASH] = ACTIONS(796), + [anon_sym_LT_LT_LT] = ACTIONS(796), + [sym__special_characters] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(796), + [sym_raw_string] = ACTIONS(796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(796), + [anon_sym_GT_LPAREN] = ACTIONS(796), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), + [sym_word] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), }, [133] = { - [anon_sym_DOLLAR] = ACTIONS(796), - [sym__string_content] = ACTIONS(798), - [anon_sym_POUND] = ACTIONS(800), - [anon_sym_DASH] = ACTIONS(800), + [anon_sym_DOLLAR] = ACTIONS(798), + [sym__string_content] = ACTIONS(800), + [anon_sym_POUND] = ACTIONS(802), + [anon_sym_DASH] = ACTIONS(802), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(802), - [anon_sym_STAR] = ACTIONS(800), - [anon_sym_AT] = ACTIONS(800), - [anon_sym_QMARK] = ACTIONS(800), - [anon_sym_0] = ACTIONS(804), - [anon_sym__] = ACTIONS(804), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(804), + [anon_sym_STAR] = ACTIONS(802), + [anon_sym_AT] = ACTIONS(802), + [anon_sym_QMARK] = ACTIONS(802), + [anon_sym_0] = ACTIONS(806), + [anon_sym__] = ACTIONS(806), }, [134] = { - [sym__concat] = ACTIONS(806), - [anon_sym_DQUOTE] = ACTIONS(808), - [anon_sym_DOLLAR] = ACTIONS(808), - [sym__string_content] = ACTIONS(810), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(808), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(808), - [anon_sym_BQUOTE] = ACTIONS(808), + [sym__concat] = ACTIONS(808), + [anon_sym_DQUOTE] = ACTIONS(810), + [anon_sym_DOLLAR] = ACTIONS(810), + [sym__string_content] = ACTIONS(812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(810), + [anon_sym_BQUOTE] = ACTIONS(810), [sym_comment] = ACTIONS(182), }, [135] = { - [sym_subscript] = STATE(441), - [sym_variable_name] = ACTIONS(812), - [anon_sym_DOLLAR] = ACTIONS(814), - [anon_sym_POUND] = ACTIONS(816), - [anon_sym_DASH] = ACTIONS(814), + [sym_subscript] = STATE(442), + [sym_variable_name] = ACTIONS(814), + [anon_sym_DOLLAR] = ACTIONS(816), + [anon_sym_POUND] = ACTIONS(818), + [anon_sym_DASH] = ACTIONS(816), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(818), - [anon_sym_STAR] = ACTIONS(814), - [anon_sym_AT] = ACTIONS(814), - [anon_sym_QMARK] = ACTIONS(814), - [anon_sym_0] = ACTIONS(820), - [anon_sym__] = ACTIONS(820), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(820), + [anon_sym_STAR] = ACTIONS(816), + [anon_sym_AT] = ACTIONS(816), + [anon_sym_QMARK] = ACTIONS(816), + [anon_sym_0] = ACTIONS(822), + [anon_sym__] = ACTIONS(822), }, [136] = { - [sym_for_statement] = STATE(442), - [sym_while_statement] = STATE(442), - [sym_if_statement] = STATE(442), - [sym_case_statement] = STATE(442), - [sym_function_definition] = STATE(442), - [sym_subshell] = STATE(442), - [sym_pipeline] = STATE(442), - [sym_list] = STATE(442), - [sym_command] = STATE(442), + [sym_for_statement] = STATE(443), + [sym_while_statement] = STATE(443), + [sym_if_statement] = STATE(443), + [sym_case_statement] = STATE(443), + [sym_function_definition] = STATE(443), + [sym_subshell] = STATE(443), + [sym_pipeline] = STATE(443), + [sym_list] = STATE(443), + [sym_command] = STATE(443), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(442), - [sym_variable_assignment] = STATE(443), - [sym_declaration_command] = STATE(442), - [sym_unset_command] = STATE(442), + [sym_bracket_command] = STATE(443), + [sym_variable_assignment] = STATE(444), + [sym_declaration_command] = STATE(443), + [sym_unset_command] = STATE(443), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -15805,20 +15813,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [137] = { - [sym_for_statement] = STATE(444), - [sym_while_statement] = STATE(444), - [sym_if_statement] = STATE(444), - [sym_case_statement] = STATE(444), - [sym_function_definition] = STATE(444), - [sym_subshell] = STATE(444), - [sym_pipeline] = STATE(444), - [sym_list] = STATE(444), - [sym_command] = STATE(444), + [sym_for_statement] = STATE(445), + [sym_while_statement] = STATE(445), + [sym_if_statement] = STATE(445), + [sym_case_statement] = STATE(445), + [sym_function_definition] = STATE(445), + [sym_subshell] = STATE(445), + [sym_pipeline] = STATE(445), + [sym_list] = STATE(445), + [sym_command] = STATE(445), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(444), - [sym_variable_assignment] = STATE(445), - [sym_declaration_command] = STATE(444), - [sym_unset_command] = STATE(444), + [sym_bracket_command] = STATE(445), + [sym_variable_assignment] = STATE(446), + [sym_declaration_command] = STATE(445), + [sym_unset_command] = STATE(445), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -15869,8 +15877,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(822), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(824), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -15879,292 +15887,230 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [139] = { - [sym_file_descriptor] = ACTIONS(824), - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_EQ_TILDE] = ACTIONS(826), - [anon_sym_EQ_EQ] = ACTIONS(826), - [anon_sym_LT] = ACTIONS(826), - [anon_sym_GT] = ACTIONS(826), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_AMP_GT] = ACTIONS(826), - [anon_sym_AMP_GT_GT] = ACTIONS(826), - [anon_sym_LT_AMP] = ACTIONS(826), - [anon_sym_GT_AMP] = ACTIONS(826), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_LT_LT_DASH] = ACTIONS(826), - [anon_sym_LT_LT_LT] = ACTIONS(826), - [sym__special_characters] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(826), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), + [sym_file_descriptor] = ACTIONS(826), + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_EQ_TILDE] = ACTIONS(828), + [anon_sym_EQ_EQ] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(828), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(828), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [anon_sym_LT_LT] = ACTIONS(828), + [anon_sym_LT_LT_DASH] = ACTIONS(828), + [anon_sym_LT_LT_LT] = ACTIONS(828), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(828), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), + [sym_word] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), }, [140] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = 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), - [anon_sym_EQ_TILDE] = ACTIONS(830), - [anon_sym_EQ_EQ] = ACTIONS(830), - [anon_sym_LT] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(830), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_AMP_GT] = ACTIONS(830), - [anon_sym_AMP_GT_GT] = ACTIONS(830), - [anon_sym_LT_AMP] = ACTIONS(830), - [anon_sym_GT_AMP] = ACTIONS(830), - [anon_sym_LT_LT] = ACTIONS(830), - [anon_sym_LT_LT_DASH] = ACTIONS(830), - [anon_sym_LT_LT_LT] = ACTIONS(830), - [sym__special_characters] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(830), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym_file_descriptor] = ACTIONS(830), + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_EQ_TILDE] = ACTIONS(832), + [anon_sym_EQ_EQ] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_AMP_GT] = ACTIONS(832), + [anon_sym_AMP_GT_GT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(832), + [anon_sym_GT_AMP] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(832), + [anon_sym_LT_LT_DASH] = ACTIONS(832), + [anon_sym_LT_LT_LT] = ACTIONS(832), + [sym__special_characters] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), + [sym_word] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), }, [141] = { - [sym_file_descriptor] = ACTIONS(832), - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_EQ_TILDE] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_AMP_GT] = ACTIONS(834), - [anon_sym_AMP_GT_GT] = ACTIONS(834), - [anon_sym_LT_AMP] = ACTIONS(834), - [anon_sym_GT_AMP] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_LT_LT_DASH] = ACTIONS(834), - [anon_sym_LT_LT_LT] = ACTIONS(834), - [sym__special_characters] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(834), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [anon_sym_EQ_TILDE] = ACTIONS(836), + [anon_sym_EQ_EQ] = ACTIONS(836), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_AMP_GT] = ACTIONS(836), + [anon_sym_AMP_GT_GT] = ACTIONS(836), + [anon_sym_LT_AMP] = ACTIONS(836), + [anon_sym_GT_AMP] = ACTIONS(836), + [anon_sym_LT_LT] = ACTIONS(836), + [anon_sym_LT_LT_DASH] = ACTIONS(836), + [anon_sym_LT_LT_LT] = ACTIONS(836), + [sym__special_characters] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [sym_raw_string] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LT_LPAREN] = ACTIONS(836), + [anon_sym_GT_LPAREN] = ACTIONS(836), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), + [sym_word] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), }, [142] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(838), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(840), [sym_comment] = ACTIONS(56), }, [143] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(461), - [anon_sym_RBRACE] = ACTIONS(840), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(856), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(462), + [anon_sym_RBRACE] = ACTIONS(842), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(858), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [144] = { - [sym_subscript] = STATE(465), - [sym_variable_name] = ACTIONS(866), - [anon_sym_DOLLAR] = ACTIONS(868), - [anon_sym_DASH] = ACTIONS(868), + [sym_subscript] = STATE(466), + [sym_variable_name] = ACTIONS(868), + [anon_sym_DOLLAR] = ACTIONS(870), + [anon_sym_DASH] = ACTIONS(870), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(870), - [anon_sym_STAR] = ACTIONS(868), - [anon_sym_AT] = ACTIONS(868), - [anon_sym_QMARK] = ACTIONS(868), - [anon_sym_0] = ACTIONS(872), - [anon_sym__] = ACTIONS(872), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(872), + [anon_sym_STAR] = ACTIONS(870), + [anon_sym_AT] = ACTIONS(870), + [anon_sym_QMARK] = ACTIONS(870), + [anon_sym_0] = ACTIONS(874), + [anon_sym__] = ACTIONS(874), }, [145] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(468), - [anon_sym_RBRACE] = ACTIONS(874), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(876), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(469), + [anon_sym_RBRACE] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(878), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [146] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(471), - [anon_sym_RBRACE] = ACTIONS(878), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(880), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(472), + [anon_sym_RBRACE] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(882), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [147] = { - [sym__assignment] = STATE(473), + [sym__assignment] = STATE(474), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_PLUS_EQ] = ACTIONS(882), + [anon_sym_EQ] = ACTIONS(884), + [anon_sym_PLUS_EQ] = ACTIONS(884), [sym_comment] = ACTIONS(56), }, [148] = { [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(884), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(886), }, [149] = { - [sym__terminated_statement] = STATE(475), - [sym_for_statement] = STATE(40), - [sym_while_statement] = STATE(40), - [sym_if_statement] = STATE(40), - [sym_case_statement] = STATE(40), - [sym_function_definition] = STATE(40), - [sym_subshell] = STATE(40), - [sym_pipeline] = STATE(40), - [sym_list] = STATE(40), - [sym_command] = STATE(40), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(40), - [sym_variable_assignment] = STATE(41), - [sym_declaration_command] = STATE(40), - [sym_unset_command] = STATE(40), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [150] = { [sym__terminated_statement] = STATE(476), [sym_for_statement] = STATE(40), [sym_while_statement] = STATE(40), @@ -16226,46 +16172,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, + [150] = { + [sym__terminated_statement] = STATE(477), + [sym_for_statement] = STATE(40), + [sym_while_statement] = STATE(40), + [sym_if_statement] = STATE(40), + [sym_case_statement] = STATE(40), + [sym_function_definition] = STATE(40), + [sym_subshell] = STATE(40), + [sym_pipeline] = STATE(40), + [sym_list] = STATE(40), + [sym_command] = STATE(40), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(40), + [sym_variable_assignment] = STATE(41), + [sym_declaration_command] = STATE(40), + [sym_unset_command] = STATE(40), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, [151] = { - [sym_concatenation] = STATE(479), - [sym_string] = STATE(478), - [sym_simple_expansion] = STATE(478), - [sym_string_expansion] = STATE(478), - [sym_expansion] = STATE(478), - [sym_command_substitution] = STATE(478), - [sym_process_substitution] = STATE(478), - [sym__special_characters] = ACTIONS(886), + [sym_concatenation] = STATE(480), + [sym_string] = STATE(479), + [sym_simple_expansion] = STATE(479), + [sym_string_expansion] = STATE(479), + [sym_expansion] = STATE(479), + [sym_command_substitution] = STATE(479), + [sym_process_substitution] = STATE(479), + [sym__special_characters] = ACTIONS(888), [anon_sym_DQUOTE] = ACTIONS(72), [anon_sym_DOLLAR] = ACTIONS(74), - [sym_raw_string] = ACTIONS(888), + [sym_raw_string] = ACTIONS(890), [anon_sym_DOLLAR_LBRACE] = ACTIONS(78), [anon_sym_DOLLAR_LPAREN] = ACTIONS(80), [anon_sym_BQUOTE] = ACTIONS(82), [anon_sym_LT_LPAREN] = ACTIONS(84), [anon_sym_GT_LPAREN] = ACTIONS(84), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(890), + [sym_word] = ACTIONS(892), }, [152] = { [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(892), + [sym_word] = ACTIONS(894), }, [153] = { [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(481), - [sym_while_statement] = STATE(481), - [sym_if_statement] = STATE(481), - [sym_case_statement] = STATE(481), - [sym_function_definition] = STATE(481), - [sym_subshell] = STATE(481), - [sym_pipeline] = STATE(481), - [sym_list] = STATE(481), - [sym_command] = STATE(481), + [sym_for_statement] = STATE(482), + [sym_while_statement] = STATE(482), + [sym_if_statement] = STATE(482), + [sym_case_statement] = STATE(482), + [sym_function_definition] = STATE(482), + [sym_subshell] = STATE(482), + [sym_pipeline] = STATE(482), + [sym_list] = STATE(482), + [sym_command] = STATE(482), [sym_command_name] = STATE(70), - [sym_bracket_command] = STATE(481), - [sym_variable_assignment] = STATE(482), - [sym_declaration_command] = STATE(481), - [sym_unset_command] = STATE(481), + [sym_bracket_command] = STATE(482), + [sym_variable_assignment] = STATE(483), + [sym_declaration_command] = STATE(482), + [sym_unset_command] = STATE(482), [sym_subscript] = STATE(72), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -16275,7 +16283,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(63), [sym_command_substitution] = STATE(63), [sym_process_substitution] = STATE(63), - [aux_sym_program_repeat1] = STATE(483), + [aux_sym_program_repeat1] = STATE(484), [aux_sym_command_repeat1] = STATE(74), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(90), @@ -16321,7 +16329,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(79), [sym_command_substitution] = STATE(79), [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(484), + [aux_sym_command_repeat2] = STATE(485), [anon_sym_EQ_TILDE] = ACTIONS(122), [anon_sym_EQ_EQ] = ACTIONS(122), [sym__special_characters] = ACTIONS(124), @@ -16344,7 +16352,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(90), [sym_command_substitution] = STATE(90), [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(485), + [aux_sym_command_repeat2] = STATE(486), [anon_sym_EQ_TILDE] = ACTIONS(142), [anon_sym_EQ_EQ] = ACTIONS(142), [sym__special_characters] = ACTIONS(144), @@ -16360,86 +16368,86 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(160), }, [156] = { - [sym_variable_assignment] = STATE(496), - [sym_subscript] = STATE(497), - [sym_concatenation] = STATE(496), - [sym_string] = STATE(490), - [sym_simple_expansion] = STATE(490), - [sym_string_expansion] = STATE(490), - [sym_expansion] = STATE(490), - [sym_command_substitution] = STATE(490), - [sym_process_substitution] = STATE(490), - [aux_sym_declaration_command_repeat1] = STATE(498), - [sym_variable_name] = ACTIONS(894), - [anon_sym_PIPE] = ACTIONS(896), - [anon_sym_RPAREN] = ACTIONS(898), - [anon_sym_PIPE_AMP] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(898), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [sym__special_characters] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(902), - [anon_sym_DOLLAR] = ACTIONS(904), - [sym_raw_string] = ACTIONS(906), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(908), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(910), - [anon_sym_BQUOTE] = ACTIONS(912), - [anon_sym_LT_LPAREN] = ACTIONS(914), - [anon_sym_GT_LPAREN] = ACTIONS(914), + [sym_variable_assignment] = STATE(497), + [sym_subscript] = STATE(498), + [sym_concatenation] = STATE(497), + [sym_string] = STATE(491), + [sym_simple_expansion] = STATE(491), + [sym_string_expansion] = STATE(491), + [sym_expansion] = STATE(491), + [sym_command_substitution] = STATE(491), + [sym_process_substitution] = STATE(491), + [aux_sym_declaration_command_repeat1] = STATE(499), + [sym_variable_name] = ACTIONS(896), + [anon_sym_PIPE] = ACTIONS(898), + [anon_sym_RPAREN] = ACTIONS(900), + [anon_sym_PIPE_AMP] = ACTIONS(900), + [anon_sym_AMP_AMP] = ACTIONS(900), + [anon_sym_PIPE_PIPE] = ACTIONS(900), + [sym__special_characters] = ACTIONS(902), + [anon_sym_DQUOTE] = ACTIONS(904), + [anon_sym_DOLLAR] = ACTIONS(906), + [sym_raw_string] = ACTIONS(908), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(910), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(912), + [anon_sym_BQUOTE] = ACTIONS(914), + [anon_sym_LT_LPAREN] = ACTIONS(916), + [anon_sym_GT_LPAREN] = ACTIONS(916), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(916), - [sym_word] = ACTIONS(918), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(918), + [sym_word] = ACTIONS(920), }, [157] = { - [sym_concatenation] = STATE(508), - [sym_string] = STATE(502), - [sym_simple_expansion] = STATE(502), - [sym_string_expansion] = STATE(502), - [sym_expansion] = STATE(502), - [sym_command_substitution] = STATE(502), - [sym_process_substitution] = STATE(502), - [aux_sym_unset_command_repeat1] = STATE(509), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_RPAREN] = ACTIONS(922), - [anon_sym_PIPE_AMP] = ACTIONS(922), - [anon_sym_AMP_AMP] = ACTIONS(922), - [anon_sym_PIPE_PIPE] = ACTIONS(922), - [sym__special_characters] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_DOLLAR] = ACTIONS(928), - [sym_raw_string] = 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_concatenation] = STATE(509), + [sym_string] = STATE(503), + [sym_simple_expansion] = STATE(503), + [sym_string_expansion] = STATE(503), + [sym_expansion] = STATE(503), + [sym_command_substitution] = STATE(503), + [sym_process_substitution] = STATE(503), + [aux_sym_unset_command_repeat1] = STATE(510), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_RPAREN] = ACTIONS(924), + [anon_sym_PIPE_AMP] = ACTIONS(924), + [anon_sym_AMP_AMP] = ACTIONS(924), + [anon_sym_PIPE_PIPE] = ACTIONS(924), + [sym__special_characters] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(930), + [sym_raw_string] = ACTIONS(932), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(936), + [anon_sym_BQUOTE] = ACTIONS(938), + [anon_sym_LT_LPAREN] = ACTIONS(940), + [anon_sym_GT_LPAREN] = ACTIONS(940), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(940), - [sym_word] = ACTIONS(942), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(942), + [sym_word] = ACTIONS(944), }, [158] = { - [aux_sym_concatenation_repeat1] = STATE(511), + [aux_sym_concatenation_repeat1] = STATE(512), [sym_file_descriptor] = ACTIONS(224), - [sym__concat] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(946), + [sym__concat] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(948), [anon_sym_RPAREN] = ACTIONS(224), [anon_sym_PIPE_AMP] = ACTIONS(224), [anon_sym_AMP_AMP] = ACTIONS(224), [anon_sym_PIPE_PIPE] = ACTIONS(224), - [anon_sym_EQ_TILDE] = ACTIONS(946), - [anon_sym_EQ_EQ] = ACTIONS(946), - [anon_sym_LT] = ACTIONS(946), - [anon_sym_GT] = ACTIONS(946), + [anon_sym_EQ_TILDE] = ACTIONS(948), + [anon_sym_EQ_EQ] = ACTIONS(948), + [anon_sym_LT] = ACTIONS(948), + [anon_sym_GT] = ACTIONS(948), [anon_sym_GT_GT] = ACTIONS(224), - [anon_sym_AMP_GT] = ACTIONS(946), + [anon_sym_AMP_GT] = ACTIONS(948), [anon_sym_AMP_GT_GT] = ACTIONS(224), [anon_sym_LT_AMP] = ACTIONS(224), [anon_sym_GT_AMP] = ACTIONS(224), - [anon_sym_LT_LT] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), [anon_sym_LT_LT_DASH] = ACTIONS(224), [anon_sym_LT_LT_LT] = ACTIONS(224), - [sym__special_characters] = ACTIONS(946), + [sym__special_characters] = ACTIONS(948), [anon_sym_DQUOTE] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(948), [sym_raw_string] = ACTIONS(224), [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), @@ -16453,8 +16461,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(513), - [anon_sym_DQUOTE] = ACTIONS(948), + [aux_sym_string_repeat1] = STATE(514), + [anon_sym_DQUOTE] = ACTIONS(950), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -16463,44 +16471,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [160] = { - [sym_string] = STATE(515), + [sym_string] = STATE(516), [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(950), - [sym_raw_string] = ACTIONS(952), - [anon_sym_POUND] = ACTIONS(950), - [anon_sym_DASH] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(952), + [sym_raw_string] = ACTIONS(954), + [anon_sym_POUND] = ACTIONS(952), + [anon_sym_DASH] = ACTIONS(952), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(950), - [anon_sym_AT] = ACTIONS(950), - [anon_sym_QMARK] = ACTIONS(950), - [anon_sym_0] = ACTIONS(956), - [anon_sym__] = ACTIONS(956), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(952), + [anon_sym_AT] = ACTIONS(952), + [anon_sym_QMARK] = ACTIONS(952), + [anon_sym_0] = ACTIONS(958), + [anon_sym__] = ACTIONS(958), }, [161] = { - [aux_sym_concatenation_repeat1] = STATE(511), + [aux_sym_concatenation_repeat1] = STATE(512), [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(958), + [sym__concat] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(960), [anon_sym_RPAREN] = ACTIONS(250), [anon_sym_PIPE_AMP] = ACTIONS(250), [anon_sym_AMP_AMP] = ACTIONS(250), [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_TILDE] = ACTIONS(958), - [anon_sym_EQ_EQ] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(958), - [anon_sym_GT] = ACTIONS(958), + [anon_sym_EQ_TILDE] = ACTIONS(960), + [anon_sym_EQ_EQ] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(960), + [anon_sym_GT] = ACTIONS(960), [anon_sym_GT_GT] = ACTIONS(250), - [anon_sym_AMP_GT] = ACTIONS(958), + [anon_sym_AMP_GT] = ACTIONS(960), [anon_sym_AMP_GT_GT] = ACTIONS(250), [anon_sym_LT_AMP] = ACTIONS(250), [anon_sym_GT_AMP] = ACTIONS(250), - [anon_sym_LT_LT] = ACTIONS(958), + [anon_sym_LT_LT] = ACTIONS(960), [anon_sym_LT_LT_DASH] = ACTIONS(250), [anon_sym_LT_LT_LT] = ACTIONS(250), - [sym__special_characters] = ACTIONS(958), + [sym__special_characters] = ACTIONS(960), [anon_sym_DQUOTE] = ACTIONS(250), - [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(960), [sym_raw_string] = ACTIONS(250), [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), [anon_sym_DOLLAR_LPAREN] = ACTIONS(250), @@ -16511,34 +16519,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(252), }, [162] = { - [sym_subscript] = STATE(521), - [sym_variable_name] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(962), + [sym_subscript] = STATE(522), + [sym_variable_name] = ACTIONS(962), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(964), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(966), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_AT] = ACTIONS(962), - [anon_sym_QMARK] = ACTIONS(962), - [anon_sym_0] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(968), + [anon_sym_STAR] = ACTIONS(964), + [anon_sym_AT] = ACTIONS(964), + [anon_sym_QMARK] = ACTIONS(964), + [anon_sym_0] = ACTIONS(970), + [anon_sym__] = ACTIONS(970), }, [163] = { - [sym_for_statement] = STATE(522), - [sym_while_statement] = STATE(522), - [sym_if_statement] = STATE(522), - [sym_case_statement] = STATE(522), - [sym_function_definition] = STATE(522), - [sym_subshell] = STATE(522), - [sym_pipeline] = STATE(522), - [sym_list] = STATE(522), - [sym_command] = STATE(522), + [sym_for_statement] = STATE(523), + [sym_while_statement] = STATE(523), + [sym_if_statement] = STATE(523), + [sym_case_statement] = STATE(523), + [sym_function_definition] = STATE(523), + [sym_subshell] = STATE(523), + [sym_pipeline] = STATE(523), + [sym_list] = STATE(523), + [sym_command] = STATE(523), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(522), - [sym_variable_assignment] = STATE(523), - [sym_declaration_command] = STATE(522), - [sym_unset_command] = STATE(522), + [sym_bracket_command] = STATE(523), + [sym_variable_assignment] = STATE(524), + [sym_declaration_command] = STATE(523), + [sym_unset_command] = STATE(523), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -16586,20 +16594,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [164] = { - [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_command] = STATE(524), + [sym_for_statement] = STATE(525), + [sym_while_statement] = STATE(525), + [sym_if_statement] = STATE(525), + [sym_case_statement] = STATE(525), + [sym_function_definition] = STATE(525), + [sym_subshell] = STATE(525), + [sym_pipeline] = STATE(525), + [sym_list] = STATE(525), + [sym_command] = STATE(525), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(524), - [sym_variable_assignment] = STATE(525), - [sym_declaration_command] = STATE(524), - [sym_unset_command] = STATE(524), + [sym_bracket_command] = STATE(525), + [sym_variable_assignment] = STATE(526), + [sym_declaration_command] = STATE(525), + [sym_unset_command] = STATE(525), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -16647,20 +16655,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(334), }, [165] = { - [sym_for_statement] = STATE(526), - [sym_while_statement] = STATE(526), - [sym_if_statement] = STATE(526), - [sym_case_statement] = STATE(526), - [sym_function_definition] = STATE(526), - [sym_subshell] = STATE(526), - [sym_pipeline] = STATE(526), - [sym_list] = STATE(526), - [sym_command] = STATE(526), + [sym_for_statement] = STATE(527), + [sym_while_statement] = STATE(527), + [sym_if_statement] = STATE(527), + [sym_case_statement] = STATE(527), + [sym_function_definition] = STATE(527), + [sym_subshell] = STATE(527), + [sym_pipeline] = STATE(527), + [sym_list] = STATE(527), + [sym_command] = STATE(527), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(526), - [sym_variable_assignment] = STATE(527), - [sym_declaration_command] = STATE(526), - [sym_unset_command] = STATE(526), + [sym_bracket_command] = STATE(527), + [sym_variable_assignment] = STATE(528), + [sym_declaration_command] = STATE(527), + [sym_unset_command] = STATE(527), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -16708,30 +16716,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [166] = { - [aux_sym_concatenation_repeat1] = STATE(511), + [aux_sym_concatenation_repeat1] = STATE(512), [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(958), + [sym__concat] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(960), [anon_sym_RPAREN] = ACTIONS(250), - [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(972), [anon_sym_PIPE_AMP] = ACTIONS(250), [anon_sym_AMP_AMP] = ACTIONS(250), [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_TILDE] = ACTIONS(958), - [anon_sym_EQ_EQ] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(958), - [anon_sym_GT] = ACTIONS(958), + [anon_sym_EQ_TILDE] = ACTIONS(960), + [anon_sym_EQ_EQ] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(960), + [anon_sym_GT] = ACTIONS(960), [anon_sym_GT_GT] = ACTIONS(250), - [anon_sym_AMP_GT] = ACTIONS(958), + [anon_sym_AMP_GT] = ACTIONS(960), [anon_sym_AMP_GT_GT] = ACTIONS(250), [anon_sym_LT_AMP] = ACTIONS(250), [anon_sym_GT_AMP] = ACTIONS(250), - [anon_sym_LT_LT] = ACTIONS(958), + [anon_sym_LT_LT] = ACTIONS(960), [anon_sym_LT_LT_DASH] = ACTIONS(250), [anon_sym_LT_LT_LT] = ACTIONS(250), - [sym__special_characters] = ACTIONS(958), + [sym__special_characters] = ACTIONS(960), [anon_sym_DQUOTE] = ACTIONS(250), - [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(960), [sym_raw_string] = ACTIONS(250), [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), [anon_sym_DOLLAR_LPAREN] = ACTIONS(250), @@ -16742,64 +16750,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(252), }, [167] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(976), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, [168] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [sym_concatenation] = STATE(540), - [sym_string] = STATE(538), - [sym_simple_expansion] = STATE(538), - [sym_string_expansion] = STATE(538), - [sym_expansion] = STATE(538), - [sym_command_substitution] = STATE(538), - [sym_process_substitution] = STATE(538), - [aux_sym_while_statement_repeat1] = STATE(541), - [aux_sym_command_repeat2] = STATE(542), - [sym_file_descriptor] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(982), - [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_EQ_TILDE] = ACTIONS(986), - [anon_sym_EQ_EQ] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_AMP_GT] = ACTIONS(988), - [anon_sym_AMP_GT_GT] = ACTIONS(990), - [anon_sym_LT_AMP] = ACTIONS(990), - [anon_sym_GT_AMP] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(996), - [sym__special_characters] = ACTIONS(998), + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [sym_concatenation] = STATE(541), + [sym_string] = STATE(539), + [sym_simple_expansion] = STATE(539), + [sym_string_expansion] = STATE(539), + [sym_expansion] = STATE(539), + [sym_command_substitution] = STATE(539), + [sym_process_substitution] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(542), + [aux_sym_command_repeat2] = STATE(543), + [sym_file_descriptor] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_PIPE_AMP] = ACTIONS(986), + [anon_sym_AMP_AMP] = ACTIONS(986), + [anon_sym_PIPE_PIPE] = ACTIONS(986), + [anon_sym_EQ_TILDE] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [anon_sym_GT_GT] = ACTIONS(992), + [anon_sym_AMP_GT] = ACTIONS(990), + [anon_sym_AMP_GT_GT] = ACTIONS(992), + [anon_sym_LT_AMP] = ACTIONS(992), + [anon_sym_GT_AMP] = ACTIONS(992), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(998), + [sym__special_characters] = ACTIONS(1000), [anon_sym_DQUOTE] = ACTIONS(288), [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(1000), + [sym_raw_string] = ACTIONS(1002), [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), [anon_sym_BQUOTE] = ACTIONS(298), [anon_sym_LT_LPAREN] = ACTIONS(300), [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1002), + [sym_word] = ACTIONS(1004), }, [169] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(976), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -16820,33 +16828,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(384), }, [170] = { - [sym__assignment] = STATE(473), - [anon_sym_EQ] = ACTIONS(882), - [anon_sym_PLUS_EQ] = ACTIONS(882), + [sym__assignment] = STATE(474), + [anon_sym_EQ] = ACTIONS(884), + [anon_sym_PLUS_EQ] = ACTIONS(884), [sym_comment] = ACTIONS(56), }, [171] = { [sym_file_descriptor] = ACTIONS(250), - [anon_sym_PIPE] = ACTIONS(958), + [anon_sym_PIPE] = ACTIONS(960), [anon_sym_RPAREN] = ACTIONS(250), [anon_sym_PIPE_AMP] = ACTIONS(250), [anon_sym_AMP_AMP] = ACTIONS(250), [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_TILDE] = ACTIONS(958), - [anon_sym_EQ_EQ] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(958), - [anon_sym_GT] = ACTIONS(958), + [anon_sym_EQ_TILDE] = ACTIONS(960), + [anon_sym_EQ_EQ] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(960), + [anon_sym_GT] = ACTIONS(960), [anon_sym_GT_GT] = ACTIONS(250), - [anon_sym_AMP_GT] = ACTIONS(958), + [anon_sym_AMP_GT] = ACTIONS(960), [anon_sym_AMP_GT_GT] = ACTIONS(250), [anon_sym_LT_AMP] = ACTIONS(250), [anon_sym_GT_AMP] = ACTIONS(250), - [anon_sym_LT_LT] = ACTIONS(958), + [anon_sym_LT_LT] = ACTIONS(960), [anon_sym_LT_LT_DASH] = ACTIONS(250), [anon_sym_LT_LT_LT] = ACTIONS(250), - [sym__special_characters] = ACTIONS(958), + [sym__special_characters] = ACTIONS(960), [anon_sym_DQUOTE] = ACTIONS(250), - [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(960), [sym_raw_string] = ACTIONS(250), [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), [anon_sym_DOLLAR_LPAREN] = ACTIONS(250), @@ -16857,7 +16865,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(252), }, [172] = { - [sym_command_name] = STATE(543), + [sym_command_name] = STATE(544), [sym_variable_assignment] = STATE(30), [sym_subscript] = STATE(214), [sym_file_redirect] = STATE(30), @@ -16878,7 +16886,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(1004), + [sym__special_characters] = ACTIONS(1006), [anon_sym_DQUOTE] = ACTIONS(288), [anon_sym_DOLLAR] = ACTIONS(290), [sym_raw_string] = ACTIONS(292), @@ -16888,17 +16896,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(300), [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1006), + [sym_word] = ACTIONS(1008), }, [173] = { - [sym__assignment] = STATE(473), + [sym__assignment] = STATE(474), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_PLUS_EQ] = ACTIONS(1008), + [anon_sym_EQ] = ACTIONS(1010), + [anon_sym_PLUS_EQ] = ACTIONS(1010), [sym_comment] = ACTIONS(56), }, [174] = { - [sym__terminated_statement] = STATE(545), + [sym__terminated_statement] = STATE(546), [sym_for_statement] = STATE(40), [sym_while_statement] = STATE(40), [sym_if_statement] = STATE(40), @@ -16961,7 +16969,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [175] = { [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1010), + [sym_word] = ACTIONS(1012), }, [176] = { [sym_concatenation] = STATE(84), @@ -16971,7 +16979,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(79), [sym_command_substitution] = STATE(79), [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(547), + [aux_sym_command_repeat2] = STATE(548), [anon_sym_EQ_TILDE] = ACTIONS(122), [anon_sym_EQ_EQ] = ACTIONS(122), [sym__special_characters] = ACTIONS(124), @@ -16994,7 +17002,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(90), [sym_command_substitution] = STATE(90), [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(548), + [aux_sym_command_repeat2] = STATE(549), [anon_sym_EQ_TILDE] = ACTIONS(142), [anon_sym_EQ_EQ] = ACTIONS(142), [sym__special_characters] = ACTIONS(144), @@ -17010,83 +17018,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(160), }, [178] = { - [sym_variable_assignment] = STATE(496), - [sym_subscript] = STATE(558), - [sym_concatenation] = STATE(496), - [sym_string] = STATE(553), - [sym_simple_expansion] = STATE(553), - [sym_string_expansion] = STATE(553), - [sym_expansion] = STATE(553), - [sym_command_substitution] = STATE(553), - [sym_process_substitution] = STATE(553), - [aux_sym_declaration_command_repeat1] = STATE(559), - [sym_variable_name] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(896), - [anon_sym_PIPE_AMP] = ACTIONS(898), - [anon_sym_AMP_AMP] = ACTIONS(898), - [anon_sym_PIPE_PIPE] = ACTIONS(898), - [sym__special_characters] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1018), - [sym_raw_string] = ACTIONS(1020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1024), - [anon_sym_BQUOTE] = ACTIONS(898), - [anon_sym_LT_LPAREN] = ACTIONS(1026), - [anon_sym_GT_LPAREN] = ACTIONS(1026), + [sym_variable_assignment] = STATE(497), + [sym_subscript] = STATE(559), + [sym_concatenation] = STATE(497), + [sym_string] = STATE(554), + [sym_simple_expansion] = STATE(554), + [sym_string_expansion] = STATE(554), + [sym_expansion] = STATE(554), + [sym_command_substitution] = STATE(554), + [sym_process_substitution] = STATE(554), + [aux_sym_declaration_command_repeat1] = STATE(560), + [sym_variable_name] = ACTIONS(1014), + [anon_sym_PIPE] = ACTIONS(898), + [anon_sym_PIPE_AMP] = ACTIONS(900), + [anon_sym_AMP_AMP] = ACTIONS(900), + [anon_sym_PIPE_PIPE] = ACTIONS(900), + [sym__special_characters] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1020), + [sym_raw_string] = ACTIONS(1022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1026), + [anon_sym_BQUOTE] = ACTIONS(900), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [anon_sym_GT_LPAREN] = ACTIONS(1028), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(916), - [sym_word] = ACTIONS(1028), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(918), + [sym_word] = ACTIONS(1030), }, [179] = { - [sym_concatenation] = STATE(508), - [sym_string] = STATE(563), - [sym_simple_expansion] = STATE(563), - [sym_string_expansion] = STATE(563), - [sym_expansion] = STATE(563), - [sym_command_substitution] = STATE(563), - [sym_process_substitution] = STATE(563), - [aux_sym_unset_command_repeat1] = STATE(568), - [anon_sym_PIPE] = ACTIONS(920), - [anon_sym_PIPE_AMP] = ACTIONS(922), - [anon_sym_AMP_AMP] = ACTIONS(922), - [anon_sym_PIPE_PIPE] = ACTIONS(922), - [sym__special_characters] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1040), - [anon_sym_BQUOTE] = ACTIONS(922), - [anon_sym_LT_LPAREN] = ACTIONS(1042), - [anon_sym_GT_LPAREN] = ACTIONS(1042), + [sym_concatenation] = STATE(509), + [sym_string] = STATE(564), + [sym_simple_expansion] = STATE(564), + [sym_string_expansion] = STATE(564), + [sym_expansion] = STATE(564), + [sym_command_substitution] = STATE(564), + [sym_process_substitution] = STATE(564), + [aux_sym_unset_command_repeat1] = STATE(569), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_PIPE_AMP] = ACTIONS(924), + [anon_sym_AMP_AMP] = ACTIONS(924), + [anon_sym_PIPE_PIPE] = ACTIONS(924), + [sym__special_characters] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1036), + [sym_raw_string] = ACTIONS(1038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1042), + [anon_sym_BQUOTE] = ACTIONS(924), + [anon_sym_LT_LPAREN] = ACTIONS(1044), + [anon_sym_GT_LPAREN] = ACTIONS(1044), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(940), - [sym_word] = ACTIONS(1044), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(942), + [sym_word] = ACTIONS(1046), }, [180] = { - [aux_sym_concatenation_repeat1] = STATE(570), + [aux_sym_concatenation_repeat1] = STATE(571), [sym_file_descriptor] = ACTIONS(224), - [sym__concat] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(946), + [sym__concat] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(948), [anon_sym_PIPE_AMP] = ACTIONS(224), [anon_sym_AMP_AMP] = ACTIONS(224), [anon_sym_PIPE_PIPE] = ACTIONS(224), - [anon_sym_EQ_TILDE] = ACTIONS(946), - [anon_sym_EQ_EQ] = ACTIONS(946), - [anon_sym_LT] = ACTIONS(946), - [anon_sym_GT] = ACTIONS(946), + [anon_sym_EQ_TILDE] = ACTIONS(948), + [anon_sym_EQ_EQ] = ACTIONS(948), + [anon_sym_LT] = ACTIONS(948), + [anon_sym_GT] = ACTIONS(948), [anon_sym_GT_GT] = ACTIONS(224), - [anon_sym_AMP_GT] = ACTIONS(946), + [anon_sym_AMP_GT] = ACTIONS(948), [anon_sym_AMP_GT_GT] = ACTIONS(224), [anon_sym_LT_AMP] = ACTIONS(224), [anon_sym_GT_AMP] = ACTIONS(224), - [anon_sym_LT_LT] = ACTIONS(946), + [anon_sym_LT_LT] = ACTIONS(948), [anon_sym_LT_LT_DASH] = ACTIONS(224), [anon_sym_LT_LT_LT] = ACTIONS(224), - [sym__special_characters] = ACTIONS(946), + [sym__special_characters] = ACTIONS(948), [anon_sym_DQUOTE] = ACTIONS(224), - [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_DOLLAR] = ACTIONS(948), [sym_raw_string] = ACTIONS(224), [anon_sym_DOLLAR_LBRACE] = ACTIONS(224), [anon_sym_DOLLAR_LPAREN] = ACTIONS(224), @@ -17100,8 +17108,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(572), - [anon_sym_DQUOTE] = ACTIONS(1048), + [aux_sym_string_repeat1] = STATE(573), + [anon_sym_DQUOTE] = ACTIONS(1050), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -17110,43 +17118,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [182] = { - [sym_string] = STATE(574), + [sym_string] = STATE(575), [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(1050), - [sym_raw_string] = ACTIONS(1052), - [anon_sym_POUND] = ACTIONS(1050), - [anon_sym_DASH] = ACTIONS(1050), + [anon_sym_DOLLAR] = ACTIONS(1052), + [sym_raw_string] = ACTIONS(1054), + [anon_sym_POUND] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1054), - [anon_sym_STAR] = ACTIONS(1050), - [anon_sym_AT] = ACTIONS(1050), - [anon_sym_QMARK] = ACTIONS(1050), - [anon_sym_0] = ACTIONS(1056), - [anon_sym__] = ACTIONS(1056), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1056), + [anon_sym_STAR] = ACTIONS(1052), + [anon_sym_AT] = ACTIONS(1052), + [anon_sym_QMARK] = ACTIONS(1052), + [anon_sym_0] = ACTIONS(1058), + [anon_sym__] = ACTIONS(1058), }, [183] = { - [aux_sym_concatenation_repeat1] = STATE(570), + [aux_sym_concatenation_repeat1] = STATE(571), [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(958), + [sym__concat] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(960), [anon_sym_PIPE_AMP] = ACTIONS(250), [anon_sym_AMP_AMP] = ACTIONS(250), [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_TILDE] = ACTIONS(958), - [anon_sym_EQ_EQ] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(958), - [anon_sym_GT] = ACTIONS(958), + [anon_sym_EQ_TILDE] = ACTIONS(960), + [anon_sym_EQ_EQ] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(960), + [anon_sym_GT] = ACTIONS(960), [anon_sym_GT_GT] = ACTIONS(250), - [anon_sym_AMP_GT] = ACTIONS(958), + [anon_sym_AMP_GT] = ACTIONS(960), [anon_sym_AMP_GT_GT] = ACTIONS(250), [anon_sym_LT_AMP] = ACTIONS(250), [anon_sym_GT_AMP] = ACTIONS(250), - [anon_sym_LT_LT] = ACTIONS(958), + [anon_sym_LT_LT] = ACTIONS(960), [anon_sym_LT_LT_DASH] = ACTIONS(250), [anon_sym_LT_LT_LT] = ACTIONS(250), - [sym__special_characters] = ACTIONS(958), + [sym__special_characters] = ACTIONS(960), [anon_sym_DQUOTE] = ACTIONS(250), - [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(960), [sym_raw_string] = ACTIONS(250), [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), [anon_sym_DOLLAR_LPAREN] = ACTIONS(250), @@ -17157,34 +17165,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(252), }, [184] = { - [sym_subscript] = STATE(580), - [sym_variable_name] = ACTIONS(1058), - [anon_sym_DOLLAR] = ACTIONS(1060), - [anon_sym_POUND] = ACTIONS(1062), - [anon_sym_DASH] = ACTIONS(1060), + [sym_subscript] = STATE(581), + [sym_variable_name] = ACTIONS(1060), + [anon_sym_DOLLAR] = ACTIONS(1062), + [anon_sym_POUND] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1062), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1064), - [anon_sym_STAR] = ACTIONS(1060), - [anon_sym_AT] = ACTIONS(1060), - [anon_sym_QMARK] = ACTIONS(1060), - [anon_sym_0] = ACTIONS(1066), - [anon_sym__] = ACTIONS(1066), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1066), + [anon_sym_STAR] = ACTIONS(1062), + [anon_sym_AT] = ACTIONS(1062), + [anon_sym_QMARK] = ACTIONS(1062), + [anon_sym_0] = ACTIONS(1068), + [anon_sym__] = ACTIONS(1068), }, [185] = { - [sym_for_statement] = STATE(581), - [sym_while_statement] = STATE(581), - [sym_if_statement] = STATE(581), - [sym_case_statement] = STATE(581), - [sym_function_definition] = STATE(581), - [sym_subshell] = STATE(581), - [sym_pipeline] = STATE(581), - [sym_list] = STATE(581), - [sym_command] = STATE(581), + [sym_for_statement] = STATE(582), + [sym_while_statement] = STATE(582), + [sym_if_statement] = STATE(582), + [sym_case_statement] = STATE(582), + [sym_function_definition] = STATE(582), + [sym_subshell] = STATE(582), + [sym_pipeline] = STATE(582), + [sym_list] = STATE(582), + [sym_command] = STATE(582), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(581), - [sym_variable_assignment] = STATE(582), - [sym_declaration_command] = STATE(581), - [sym_unset_command] = STATE(581), + [sym_bracket_command] = STATE(582), + [sym_variable_assignment] = STATE(583), + [sym_declaration_command] = STATE(582), + [sym_unset_command] = STATE(582), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -17232,20 +17240,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [186] = { - [sym_for_statement] = STATE(583), - [sym_while_statement] = STATE(583), - [sym_if_statement] = STATE(583), - [sym_case_statement] = STATE(583), - [sym_function_definition] = STATE(583), - [sym_subshell] = STATE(583), - [sym_pipeline] = STATE(583), - [sym_list] = STATE(583), - [sym_command] = STATE(583), + [sym_for_statement] = STATE(584), + [sym_while_statement] = STATE(584), + [sym_if_statement] = STATE(584), + [sym_case_statement] = STATE(584), + [sym_function_definition] = STATE(584), + [sym_subshell] = STATE(584), + [sym_pipeline] = STATE(584), + [sym_list] = STATE(584), + [sym_command] = STATE(584), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(583), - [sym_variable_assignment] = STATE(584), - [sym_declaration_command] = STATE(583), - [sym_unset_command] = STATE(583), + [sym_bracket_command] = STATE(584), + [sym_variable_assignment] = STATE(585), + [sym_declaration_command] = STATE(584), + [sym_unset_command] = STATE(584), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -17293,20 +17301,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(334), }, [187] = { - [sym_for_statement] = STATE(585), - [sym_while_statement] = STATE(585), - [sym_if_statement] = STATE(585), - [sym_case_statement] = STATE(585), - [sym_function_definition] = STATE(585), - [sym_subshell] = STATE(585), - [sym_pipeline] = STATE(585), - [sym_list] = STATE(585), - [sym_command] = STATE(585), + [sym_for_statement] = STATE(586), + [sym_while_statement] = STATE(586), + [sym_if_statement] = STATE(586), + [sym_case_statement] = STATE(586), + [sym_function_definition] = STATE(586), + [sym_subshell] = STATE(586), + [sym_pipeline] = STATE(586), + [sym_list] = STATE(586), + [sym_command] = STATE(586), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(585), - [sym_variable_assignment] = STATE(586), - [sym_declaration_command] = STATE(585), - [sym_unset_command] = STATE(585), + [sym_bracket_command] = STATE(586), + [sym_variable_assignment] = STATE(587), + [sym_declaration_command] = STATE(586), + [sym_unset_command] = STATE(586), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -17354,29 +17362,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [188] = { - [aux_sym_concatenation_repeat1] = STATE(570), + [aux_sym_concatenation_repeat1] = STATE(571), [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(1068), + [sym__concat] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(1070), [anon_sym_PIPE_AMP] = ACTIONS(250), [anon_sym_AMP_AMP] = ACTIONS(250), [anon_sym_PIPE_PIPE] = ACTIONS(250), - [anon_sym_EQ_TILDE] = ACTIONS(958), - [anon_sym_EQ_EQ] = ACTIONS(958), - [anon_sym_LT] = ACTIONS(958), - [anon_sym_GT] = ACTIONS(958), + [anon_sym_EQ_TILDE] = ACTIONS(960), + [anon_sym_EQ_EQ] = ACTIONS(960), + [anon_sym_LT] = ACTIONS(960), + [anon_sym_GT] = ACTIONS(960), [anon_sym_GT_GT] = ACTIONS(250), - [anon_sym_AMP_GT] = ACTIONS(958), + [anon_sym_AMP_GT] = ACTIONS(960), [anon_sym_AMP_GT_GT] = ACTIONS(250), [anon_sym_LT_AMP] = ACTIONS(250), [anon_sym_GT_AMP] = ACTIONS(250), - [anon_sym_LT_LT] = ACTIONS(958), + [anon_sym_LT_LT] = ACTIONS(960), [anon_sym_LT_LT_DASH] = ACTIONS(250), [anon_sym_LT_LT_LT] = ACTIONS(250), - [sym__special_characters] = ACTIONS(958), + [sym__special_characters] = ACTIONS(960), [anon_sym_DQUOTE] = ACTIONS(250), - [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(960), [sym_raw_string] = ACTIONS(250), [anon_sym_DOLLAR_LBRACE] = ACTIONS(250), [anon_sym_DOLLAR_LPAREN] = ACTIONS(250), @@ -17387,62 +17395,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(252), }, [189] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(976), [sym_comment] = ACTIONS(56), }, [190] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [sym_concatenation] = STATE(540), - [sym_string] = STATE(595), - [sym_simple_expansion] = STATE(595), - [sym_string_expansion] = STATE(595), - [sym_expansion] = STATE(595), - [sym_command_substitution] = STATE(595), - [sym_process_substitution] = STATE(595), - [aux_sym_while_statement_repeat1] = STATE(596), - [aux_sym_command_repeat2] = STATE(597), - [sym_file_descriptor] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_PIPE_AMP] = ACTIONS(984), - [anon_sym_AMP_AMP] = ACTIONS(984), - [anon_sym_PIPE_PIPE] = ACTIONS(984), - [anon_sym_EQ_TILDE] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_GT_GT] = ACTIONS(1082), - [anon_sym_AMP_GT] = ACTIONS(1080), - [anon_sym_AMP_GT_GT] = ACTIONS(1082), - [anon_sym_LT_AMP] = ACTIONS(1082), - [anon_sym_GT_AMP] = ACTIONS(1082), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(1084), - [sym__special_characters] = ACTIONS(1086), + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [sym_concatenation] = STATE(541), + [sym_string] = STATE(596), + [sym_simple_expansion] = STATE(596), + [sym_string_expansion] = STATE(596), + [sym_expansion] = STATE(596), + [sym_command_substitution] = STATE(596), + [sym_process_substitution] = STATE(596), + [aux_sym_while_statement_repeat1] = STATE(597), + [aux_sym_command_repeat2] = STATE(598), + [sym_file_descriptor] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_PIPE_AMP] = ACTIONS(986), + [anon_sym_AMP_AMP] = ACTIONS(986), + [anon_sym_PIPE_PIPE] = ACTIONS(986), + [anon_sym_EQ_TILDE] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1084), + [anon_sym_LT_AMP] = ACTIONS(1084), + [anon_sym_GT_AMP] = ACTIONS(1084), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [sym__special_characters] = ACTIONS(1088), [anon_sym_DQUOTE] = ACTIONS(320), [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(1088), + [sym_raw_string] = ACTIONS(1090), [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(984), + [anon_sym_BQUOTE] = ACTIONS(986), [anon_sym_LT_LPAREN] = ACTIONS(332), [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1090), + [sym_word] = ACTIONS(1092), }, [191] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -17456,20 +17464,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(380), [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(974), + [anon_sym_BQUOTE] = ACTIONS(976), [anon_sym_LT_LPAREN] = ACTIONS(380), [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, [192] = { - [sym__assignment] = STATE(473), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_PLUS_EQ] = ACTIONS(1008), + [sym__assignment] = STATE(474), + [anon_sym_EQ] = ACTIONS(1010), + [anon_sym_PLUS_EQ] = ACTIONS(1010), [sym_comment] = ACTIONS(56), }, [193] = { - [sym_command_name] = STATE(598), + [sym_command_name] = STATE(599), [sym_variable_assignment] = STATE(30), [sym_subscript] = STATE(214), [sym_file_redirect] = STATE(30), @@ -17490,7 +17498,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(1092), + [sym__special_characters] = ACTIONS(1094), [anon_sym_DQUOTE] = ACTIONS(320), [anon_sym_DOLLAR] = ACTIONS(322), [sym_raw_string] = ACTIONS(324), @@ -17500,24 +17508,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(332), [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1094), + [sym_word] = ACTIONS(1096), }, [194] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1096), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1098), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, [195] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1096), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1098), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -17538,24 +17546,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(384), }, [196] = { - [anon_sym_RPAREN] = ACTIONS(1098), + [anon_sym_RPAREN] = ACTIONS(1100), [sym_comment] = ACTIONS(56), }, [197] = { - [sym_for_statement] = STATE(601), - [sym_while_statement] = STATE(601), - [sym_if_statement] = STATE(601), - [sym_case_statement] = STATE(601), - [sym_function_definition] = STATE(601), - [sym_subshell] = STATE(601), - [sym_pipeline] = STATE(601), - [sym_list] = STATE(601), - [sym_command] = STATE(601), + [sym_for_statement] = STATE(602), + [sym_while_statement] = STATE(602), + [sym_if_statement] = STATE(602), + [sym_case_statement] = STATE(602), + [sym_function_definition] = STATE(602), + [sym_subshell] = STATE(602), + [sym_pipeline] = STATE(602), + [sym_list] = STATE(602), + [sym_command] = STATE(602), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(601), - [sym_variable_assignment] = STATE(602), - [sym_declaration_command] = STATE(601), - [sym_unset_command] = STATE(601), + [sym_bracket_command] = STATE(602), + [sym_variable_assignment] = STATE(603), + [sym_declaration_command] = STATE(602), + [sym_unset_command] = STATE(602), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -17603,59 +17611,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [198] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [ts_builtin_sym_end] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_SEMI_SEMI] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(1102), - [sym_raw_string] = ACTIONS(1100), - [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_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [ts_builtin_sym_end] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_SEMI_SEMI] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1104), + [sym_raw_string] = ACTIONS(1102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), + [anon_sym_BQUOTE] = ACTIONS(1102), + [anon_sym_LT_LPAREN] = ACTIONS(1102), + [anon_sym_GT_LPAREN] = ACTIONS(1102), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1104), + [sym_word] = ACTIONS(1106), }, [199] = { - [sym_for_statement] = STATE(603), - [sym_while_statement] = STATE(603), - [sym_if_statement] = STATE(603), - [sym_case_statement] = STATE(603), - [sym_function_definition] = STATE(603), - [sym_subshell] = STATE(603), - [sym_pipeline] = STATE(603), - [sym_list] = STATE(603), - [sym_command] = STATE(603), + [sym_for_statement] = STATE(604), + [sym_while_statement] = STATE(604), + [sym_if_statement] = STATE(604), + [sym_case_statement] = STATE(604), + [sym_function_definition] = STATE(604), + [sym_subshell] = STATE(604), + [sym_pipeline] = STATE(604), + [sym_list] = STATE(604), + [sym_command] = STATE(604), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(603), - [sym_variable_assignment] = STATE(604), - [sym_declaration_command] = STATE(603), - [sym_unset_command] = STATE(603), + [sym_bracket_command] = STATE(604), + [sym_variable_assignment] = STATE(605), + [sym_declaration_command] = STATE(604), + [sym_unset_command] = STATE(604), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -17703,224 +17711,224 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [200] = { - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_GT] = ACTIONS(1106), - [anon_sym_GT_GT] = ACTIONS(1108), - [anon_sym_AMP_GT] = ACTIONS(1106), - [anon_sym_AMP_GT_GT] = ACTIONS(1108), - [anon_sym_LT_AMP] = ACTIONS(1108), - [anon_sym_GT_AMP] = ACTIONS(1108), + [anon_sym_LT] = ACTIONS(1108), + [anon_sym_GT] = ACTIONS(1108), + [anon_sym_GT_GT] = ACTIONS(1110), + [anon_sym_AMP_GT] = ACTIONS(1108), + [anon_sym_AMP_GT_GT] = ACTIONS(1110), + [anon_sym_LT_AMP] = ACTIONS(1110), + [anon_sym_GT_AMP] = ACTIONS(1110), [sym_comment] = ACTIONS(56), }, [201] = { - [sym_concatenation] = STATE(608), - [sym_string] = STATE(607), - [sym_simple_expansion] = STATE(607), - [sym_string_expansion] = STATE(607), - [sym_expansion] = STATE(607), - [sym_command_substitution] = STATE(607), - [sym_process_substitution] = STATE(607), - [sym__special_characters] = ACTIONS(1110), + [sym_concatenation] = STATE(609), + [sym_string] = STATE(608), + [sym_simple_expansion] = STATE(608), + [sym_string_expansion] = STATE(608), + [sym_expansion] = STATE(608), + [sym_command_substitution] = STATE(608), + [sym_process_substitution] = STATE(608), + [sym__special_characters] = ACTIONS(1112), [anon_sym_DQUOTE] = ACTIONS(366), [anon_sym_DOLLAR] = ACTIONS(368), - [sym_raw_string] = ACTIONS(1112), + [sym_raw_string] = ACTIONS(1114), [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), [anon_sym_BQUOTE] = ACTIONS(376), [anon_sym_LT_LPAREN] = ACTIONS(378), [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1112), - [sym_regex] = ACTIONS(1114), + [sym_word] = ACTIONS(1114), + [sym_regex] = ACTIONS(1116), }, [202] = { - [sym_concatenation] = STATE(617), - [sym_string] = STATE(612), - [sym_simple_expansion] = STATE(612), - [sym_string_expansion] = STATE(612), - [sym_expansion] = STATE(612), - [sym_command_substitution] = STATE(612), - [sym_process_substitution] = STATE(612), - [sym__special_characters] = ACTIONS(1116), - [anon_sym_DQUOTE] = ACTIONS(1118), - [anon_sym_DOLLAR] = ACTIONS(1120), - [sym_raw_string] = ACTIONS(1122), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1124), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1130), - [anon_sym_GT_LPAREN] = ACTIONS(1130), + [sym_concatenation] = STATE(618), + [sym_string] = STATE(613), + [sym_simple_expansion] = STATE(613), + [sym_string_expansion] = STATE(613), + [sym_expansion] = STATE(613), + [sym_command_substitution] = STATE(613), + [sym_process_substitution] = STATE(613), + [sym__special_characters] = ACTIONS(1118), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1122), + [sym_raw_string] = ACTIONS(1124), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1132), + [anon_sym_GT_LPAREN] = ACTIONS(1132), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1132), + [sym_word] = ACTIONS(1134), }, [203] = { - [sym_heredoc] = STATE(620), - [sym__simple_heredoc] = ACTIONS(1134), - [sym__heredoc_beginning] = ACTIONS(1136), + [sym_heredoc] = STATE(621), + [sym__simple_heredoc] = ACTIONS(1136), + [sym__heredoc_beginning] = ACTIONS(1138), [sym_comment] = ACTIONS(56), }, [204] = { - [sym_concatenation] = STATE(623), - [sym_string] = STATE(622), - [sym_simple_expansion] = STATE(622), - [sym_string_expansion] = STATE(622), - [sym_expansion] = STATE(622), - [sym_command_substitution] = STATE(622), - [sym_process_substitution] = STATE(622), - [sym__special_characters] = ACTIONS(1138), - [anon_sym_DQUOTE] = ACTIONS(1118), - [anon_sym_DOLLAR] = ACTIONS(1120), - [sym_raw_string] = ACTIONS(1140), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1124), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1130), - [anon_sym_GT_LPAREN] = ACTIONS(1130), + [sym_concatenation] = STATE(624), + [sym_string] = STATE(623), + [sym_simple_expansion] = STATE(623), + [sym_string_expansion] = STATE(623), + [sym_expansion] = STATE(623), + [sym_command_substitution] = STATE(623), + [sym_process_substitution] = STATE(623), + [sym__special_characters] = ACTIONS(1140), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1122), + [sym_raw_string] = ACTIONS(1142), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1132), + [anon_sym_GT_LPAREN] = ACTIONS(1132), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1142), + [sym_word] = ACTIONS(1144), }, [205] = { [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(606), + [sym_file_descriptor] = ACTIONS(608), [sym__concat] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_SEMI_SEMI] = ACTIONS(608), - [anon_sym_PIPE_AMP] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(608), - [anon_sym_PIPE_PIPE] = ACTIONS(608), - [anon_sym_EQ_TILDE] = ACTIONS(608), - [anon_sym_EQ_EQ] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(608), - [anon_sym_AMP_GT] = ACTIONS(608), - [anon_sym_AMP_GT_GT] = ACTIONS(608), - [anon_sym_LT_AMP] = ACTIONS(608), - [anon_sym_GT_AMP] = ACTIONS(608), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_LT_LT_DASH] = ACTIONS(608), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [sym__special_characters] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [anon_sym_DOLLAR] = ACTIONS(608), - [sym_raw_string] = ACTIONS(608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(608), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_SEMI_SEMI] = ACTIONS(610), + [anon_sym_PIPE_AMP] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(610), + [anon_sym_EQ_TILDE] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_AMP_GT] = ACTIONS(610), + [anon_sym_AMP_GT_GT] = ACTIONS(610), + [anon_sym_LT_AMP] = ACTIONS(610), + [anon_sym_GT_AMP] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_LT_LT_DASH] = ACTIONS(610), + [anon_sym_LT_LT_LT] = ACTIONS(610), + [sym__special_characters] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(610), + [anon_sym_DOLLAR] = ACTIONS(610), + [sym_raw_string] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(610), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(610), + [anon_sym_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(610), + [anon_sym_GT_LPAREN] = ACTIONS(610), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(608), - [anon_sym_SEMI] = ACTIONS(608), - [anon_sym_LF] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), + [sym_word] = ACTIONS(610), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_LF] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(610), }, [206] = { [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(622), + [sym_file_descriptor] = ACTIONS(624), [sym__concat] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(624), - [anon_sym_SEMI_SEMI] = ACTIONS(624), - [anon_sym_PIPE_AMP] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_EQ_TILDE] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(624), - [anon_sym_GT] = ACTIONS(624), - [anon_sym_GT_GT] = ACTIONS(624), - [anon_sym_AMP_GT] = ACTIONS(624), - [anon_sym_AMP_GT_GT] = ACTIONS(624), - [anon_sym_LT_AMP] = ACTIONS(624), - [anon_sym_GT_AMP] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(624), - [anon_sym_LT_LT_DASH] = ACTIONS(624), - [anon_sym_LT_LT_LT] = ACTIONS(624), - [sym__special_characters] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(624), - [sym_raw_string] = ACTIONS(624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(624), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_SEMI_SEMI] = ACTIONS(626), + [anon_sym_PIPE_AMP] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(626), + [anon_sym_PIPE_PIPE] = ACTIONS(626), + [anon_sym_EQ_TILDE] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(626), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_LT_LT_DASH] = ACTIONS(626), + [anon_sym_LT_LT_LT] = ACTIONS(626), + [sym__special_characters] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(626), + [sym_raw_string] = ACTIONS(626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(626), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_LT_LPAREN] = ACTIONS(626), + [anon_sym_GT_LPAREN] = ACTIONS(626), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(624), - [anon_sym_SEMI] = ACTIONS(624), - [anon_sym_LF] = ACTIONS(624), - [anon_sym_AMP] = ACTIONS(624), + [sym_word] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_LF] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), }, [207] = { - [sym_file_descriptor] = ACTIONS(1144), - [anon_sym_esac] = ACTIONS(1146), - [anon_sym_PIPE] = ACTIONS(1146), - [anon_sym_RPAREN] = ACTIONS(1146), - [anon_sym_SEMI_SEMI] = ACTIONS(1146), - [anon_sym_PIPE_AMP] = ACTIONS(1146), - [anon_sym_AMP_AMP] = ACTIONS(1146), - [anon_sym_PIPE_PIPE] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(1146), - [anon_sym_GT] = ACTIONS(1146), - [anon_sym_GT_GT] = ACTIONS(1146), - [anon_sym_AMP_GT] = ACTIONS(1146), - [anon_sym_AMP_GT_GT] = ACTIONS(1146), - [anon_sym_LT_AMP] = ACTIONS(1146), - [anon_sym_GT_AMP] = ACTIONS(1146), - [anon_sym_LT_LT] = ACTIONS(1146), - [anon_sym_LT_LT_DASH] = ACTIONS(1146), - [anon_sym_LT_LT_LT] = ACTIONS(1146), + [sym_file_descriptor] = ACTIONS(1146), + [anon_sym_esac] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1148), + [anon_sym_RPAREN] = ACTIONS(1148), + [anon_sym_SEMI_SEMI] = ACTIONS(1148), + [anon_sym_PIPE_AMP] = ACTIONS(1148), + [anon_sym_AMP_AMP] = ACTIONS(1148), + [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [anon_sym_LT] = ACTIONS(1148), + [anon_sym_GT] = ACTIONS(1148), + [anon_sym_GT_GT] = ACTIONS(1148), + [anon_sym_AMP_GT] = ACTIONS(1148), + [anon_sym_AMP_GT_GT] = ACTIONS(1148), + [anon_sym_LT_AMP] = ACTIONS(1148), + [anon_sym_GT_AMP] = ACTIONS(1148), + [anon_sym_LT_LT] = ACTIONS(1148), + [anon_sym_LT_LT_DASH] = ACTIONS(1148), + [anon_sym_LT_LT_LT] = ACTIONS(1148), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1146), - [anon_sym_LF] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(1146), + [anon_sym_SEMI] = ACTIONS(1148), + [anon_sym_LF] = ACTIONS(1148), + [anon_sym_AMP] = ACTIONS(1148), }, [208] = { - [sym_file_descriptor] = ACTIONS(622), - [anon_sym_PIPE] = ACTIONS(624), - [anon_sym_RPAREN] = ACTIONS(624), - [anon_sym_SEMI_SEMI] = ACTIONS(624), - [anon_sym_PIPE_AMP] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_EQ_TILDE] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(624), - [anon_sym_GT] = ACTIONS(624), - [anon_sym_GT_GT] = ACTIONS(624), - [anon_sym_AMP_GT] = ACTIONS(624), - [anon_sym_AMP_GT_GT] = ACTIONS(624), - [anon_sym_LT_AMP] = ACTIONS(624), - [anon_sym_GT_AMP] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(624), - [anon_sym_LT_LT_DASH] = ACTIONS(624), - [anon_sym_LT_LT_LT] = ACTIONS(624), - [sym__special_characters] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(624), - [sym_raw_string] = ACTIONS(624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(624), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), + [sym_file_descriptor] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_RPAREN] = ACTIONS(626), + [anon_sym_SEMI_SEMI] = ACTIONS(626), + [anon_sym_PIPE_AMP] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(626), + [anon_sym_PIPE_PIPE] = ACTIONS(626), + [anon_sym_EQ_TILDE] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(626), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_LT_LT_DASH] = ACTIONS(626), + [anon_sym_LT_LT_LT] = ACTIONS(626), + [sym__special_characters] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(626), + [sym_raw_string] = ACTIONS(626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(626), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_LT_LPAREN] = ACTIONS(626), + [anon_sym_GT_LPAREN] = ACTIONS(626), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(624), - [anon_sym_SEMI] = ACTIONS(624), - [anon_sym_LF] = ACTIONS(624), - [anon_sym_AMP] = ACTIONS(624), + [sym_word] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_LF] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), }, [209] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(624), + [aux_sym_while_statement_repeat1] = STATE(625), [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_SEMI_SEMI] = ACTIONS(1148), - [anon_sym_PIPE_AMP] = ACTIONS(1148), - [anon_sym_AMP_AMP] = ACTIONS(1148), - [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1150), + [anon_sym_SEMI_SEMI] = ACTIONS(1150), + [anon_sym_PIPE_AMP] = ACTIONS(1150), + [anon_sym_AMP_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1150), [anon_sym_LT] = ACTIONS(358), [anon_sym_GT] = ACTIONS(358), [anon_sym_GT_GT] = ACTIONS(358), @@ -17932,9 +17940,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(360), [anon_sym_LT_LT_LT] = ACTIONS(362), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_LF] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1150), }, [210] = { [sym_file_redirect] = STATE(207), @@ -17947,14 +17955,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(206), [sym_command_substitution] = STATE(206), [sym_process_substitution] = STATE(206), - [aux_sym_while_statement_repeat1] = STATE(625), - [aux_sym_command_repeat2] = STATE(626), + [aux_sym_while_statement_repeat1] = STATE(626), + [aux_sym_command_repeat2] = STATE(627), [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_SEMI_SEMI] = ACTIONS(1148), - [anon_sym_PIPE_AMP] = ACTIONS(1148), - [anon_sym_AMP_AMP] = ACTIONS(1148), - [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1150), + [anon_sym_SEMI_SEMI] = ACTIONS(1150), + [anon_sym_PIPE_AMP] = ACTIONS(1150), + [anon_sym_AMP_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1150), [anon_sym_EQ_TILDE] = ACTIONS(356), [anon_sym_EQ_EQ] = ACTIONS(356), [anon_sym_LT] = ACTIONS(358), @@ -17978,9 +17986,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_LF] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1150), }, [211] = { [sym__terminated_statement] = STATE(25), @@ -18009,48 +18017,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_process_substitution] = STATE(18), [aux_sym_program_repeat1] = STATE(211), [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1150), - [sym_variable_name] = ACTIONS(1153), - [ts_builtin_sym_end] = ACTIONS(1156), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_case] = ACTIONS(1167), - [anon_sym_function] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_typeset] = ACTIONS(1182), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_local] = ACTIONS(1182), - [anon_sym_unset] = ACTIONS(1185), - [anon_sym_unsetenv] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1191), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1191), - [anon_sym_LT_AMP] = ACTIONS(1191), - [anon_sym_GT_AMP] = ACTIONS(1191), - [sym__special_characters] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_raw_string] = ACTIONS(1203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), - [anon_sym_BQUOTE] = ACTIONS(1212), - [anon_sym_LT_LPAREN] = ACTIONS(1215), - [anon_sym_GT_LPAREN] = ACTIONS(1215), + [sym_file_descriptor] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(1155), + [ts_builtin_sym_end] = ACTIONS(1158), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_function] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1184), + [anon_sym_typeset] = ACTIONS(1184), + [anon_sym_export] = ACTIONS(1184), + [anon_sym_readonly] = ACTIONS(1184), + [anon_sym_local] = ACTIONS(1184), + [anon_sym_unset] = ACTIONS(1187), + [anon_sym_unsetenv] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_AMP_GT] = ACTIONS(1190), + [anon_sym_AMP_GT_GT] = ACTIONS(1193), + [anon_sym_LT_AMP] = ACTIONS(1193), + [anon_sym_GT_AMP] = ACTIONS(1193), + [sym__special_characters] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(1202), + [sym_raw_string] = ACTIONS(1205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(1214), + [anon_sym_LT_LPAREN] = ACTIONS(1217), + [anon_sym_GT_LPAREN] = ACTIONS(1217), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1218), + [sym_word] = ACTIONS(1220), }, [212] = { - [sym__assignment] = STATE(473), + [sym__assignment] = STATE(474), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(1221), - [anon_sym_PLUS_EQ] = ACTIONS(1221), + [anon_sym_EQ] = ACTIONS(1223), + [anon_sym_PLUS_EQ] = ACTIONS(1223), [sym_comment] = ACTIONS(56), }, [213] = { @@ -18064,14 +18072,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(206), [sym_command_substitution] = STATE(206), [sym_process_substitution] = STATE(206), - [aux_sym_while_statement_repeat1] = STATE(625), - [aux_sym_command_repeat2] = STATE(628), + [aux_sym_while_statement_repeat1] = STATE(626), + [aux_sym_command_repeat2] = STATE(629), [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_SEMI_SEMI] = ACTIONS(1148), - [anon_sym_PIPE_AMP] = ACTIONS(1148), - [anon_sym_AMP_AMP] = ACTIONS(1148), - [anon_sym_PIPE_PIPE] = ACTIONS(1148), + [anon_sym_PIPE] = ACTIONS(1150), + [anon_sym_SEMI_SEMI] = ACTIONS(1150), + [anon_sym_PIPE_AMP] = ACTIONS(1150), + [anon_sym_AMP_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1150), [anon_sym_EQ_TILDE] = ACTIONS(356), [anon_sym_EQ_EQ] = ACTIONS(356), [anon_sym_LT] = ACTIONS(358), @@ -18095,14 +18103,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(378), [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_LF] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1150), }, [214] = { - [sym__assignment] = STATE(473), - [anon_sym_EQ] = ACTIONS(1221), - [anon_sym_PLUS_EQ] = ACTIONS(1221), + [sym__assignment] = STATE(474), + [anon_sym_EQ] = ACTIONS(1223), + [anon_sym_PLUS_EQ] = ACTIONS(1223), [sym_comment] = ACTIONS(56), }, [215] = { @@ -18110,42 +18118,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subscript] = STATE(214), [sym_file_redirect] = STATE(30), [aux_sym_command_repeat1] = STATE(215), - [sym_file_descriptor] = ACTIONS(1223), - [sym_variable_name] = ACTIONS(1226), - [anon_sym_LT] = ACTIONS(1229), - [anon_sym_GT] = ACTIONS(1229), - [anon_sym_GT_GT] = ACTIONS(1232), - [anon_sym_AMP_GT] = ACTIONS(1229), - [anon_sym_AMP_GT_GT] = ACTIONS(1232), - [anon_sym_LT_AMP] = ACTIONS(1232), - [anon_sym_GT_AMP] = ACTIONS(1232), - [sym__special_characters] = ACTIONS(1235), - [anon_sym_DQUOTE] = ACTIONS(1237), - [anon_sym_DOLLAR] = ACTIONS(1235), - [sym_raw_string] = ACTIONS(1237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1237), - [anon_sym_BQUOTE] = ACTIONS(1237), - [anon_sym_LT_LPAREN] = ACTIONS(1237), - [anon_sym_GT_LPAREN] = ACTIONS(1237), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1235), - }, - [216] = { - [aux_sym_concatenation_repeat1] = STATE(414), - [sym_file_descriptor] = ACTIONS(1239), - [sym__concat] = ACTIONS(756), - [sym_variable_name] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1241), - [anon_sym_GT] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1239), - [anon_sym_AMP_GT] = ACTIONS(1241), - [anon_sym_AMP_GT_GT] = ACTIONS(1239), - [anon_sym_LT_AMP] = ACTIONS(1239), - [anon_sym_GT_AMP] = ACTIONS(1239), - [sym__special_characters] = ACTIONS(1241), + [sym_file_descriptor] = ACTIONS(1225), + [sym_variable_name] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(1231), + [anon_sym_GT] = ACTIONS(1231), + [anon_sym_GT_GT] = ACTIONS(1234), + [anon_sym_AMP_GT] = ACTIONS(1231), + [anon_sym_AMP_GT_GT] = ACTIONS(1234), + [anon_sym_LT_AMP] = ACTIONS(1234), + [anon_sym_GT_AMP] = ACTIONS(1234), + [sym__special_characters] = ACTIONS(1237), [anon_sym_DQUOTE] = ACTIONS(1239), - [anon_sym_DOLLAR] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1237), [sym_raw_string] = ACTIONS(1239), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1239), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1239), @@ -18153,66 +18137,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(1239), [anon_sym_GT_LPAREN] = ACTIONS(1239), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1241), + [sym_word] = ACTIONS(1237), + }, + [216] = { + [aux_sym_concatenation_repeat1] = STATE(415), + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(758), + [sym_variable_name] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_AMP_GT] = ACTIONS(1243), + [anon_sym_AMP_GT_GT] = ACTIONS(1241), + [anon_sym_LT_AMP] = ACTIONS(1241), + [anon_sym_GT_AMP] = ACTIONS(1241), + [sym__special_characters] = ACTIONS(1243), + [anon_sym_DQUOTE] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1243), + [sym_raw_string] = ACTIONS(1241), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1241), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1241), + [anon_sym_BQUOTE] = ACTIONS(1241), + [anon_sym_LT_LPAREN] = ACTIONS(1241), + [anon_sym_GT_LPAREN] = ACTIONS(1241), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1243), }, [217] = { - [aux_sym_concatenation_repeat1] = STATE(414), - [sym_file_descriptor] = ACTIONS(1243), - [sym__concat] = ACTIONS(756), - [sym_variable_name] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1243), - [anon_sym_AMP_GT] = ACTIONS(1245), - [anon_sym_AMP_GT_GT] = ACTIONS(1243), - [anon_sym_LT_AMP] = ACTIONS(1243), - [anon_sym_GT_AMP] = ACTIONS(1243), - [sym__special_characters] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1245), - [sym_raw_string] = ACTIONS(1243), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), - [anon_sym_BQUOTE] = ACTIONS(1243), - [anon_sym_LT_LPAREN] = ACTIONS(1243), - [anon_sym_GT_LPAREN] = ACTIONS(1243), + [aux_sym_concatenation_repeat1] = STATE(415), + [sym_file_descriptor] = ACTIONS(1245), + [sym__concat] = ACTIONS(758), + [sym_variable_name] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_AMP_GT] = ACTIONS(1247), + [anon_sym_AMP_GT_GT] = ACTIONS(1245), + [anon_sym_LT_AMP] = ACTIONS(1245), + [anon_sym_GT_AMP] = ACTIONS(1245), + [sym__special_characters] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1245), + [anon_sym_DOLLAR] = ACTIONS(1247), + [sym_raw_string] = ACTIONS(1245), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1245), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1245), + [anon_sym_BQUOTE] = ACTIONS(1245), + [anon_sym_LT_LPAREN] = ACTIONS(1245), + [anon_sym_GT_LPAREN] = ACTIONS(1245), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1245), + [sym_word] = ACTIONS(1247), }, [218] = { - [sym_file_descriptor] = ACTIONS(1243), - [sym_variable_name] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1243), - [anon_sym_AMP_GT] = ACTIONS(1245), - [anon_sym_AMP_GT_GT] = ACTIONS(1243), - [anon_sym_LT_AMP] = ACTIONS(1243), - [anon_sym_GT_AMP] = ACTIONS(1243), - [sym__special_characters] = ACTIONS(1245), - [anon_sym_DQUOTE] = ACTIONS(1243), - [anon_sym_DOLLAR] = ACTIONS(1245), - [sym_raw_string] = ACTIONS(1243), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1243), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1243), - [anon_sym_BQUOTE] = ACTIONS(1243), - [anon_sym_LT_LPAREN] = ACTIONS(1243), - [anon_sym_GT_LPAREN] = ACTIONS(1243), + [sym_file_descriptor] = ACTIONS(1245), + [sym_variable_name] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_AMP_GT] = ACTIONS(1247), + [anon_sym_AMP_GT_GT] = ACTIONS(1245), + [anon_sym_LT_AMP] = ACTIONS(1245), + [anon_sym_GT_AMP] = ACTIONS(1245), + [sym__special_characters] = ACTIONS(1247), + [anon_sym_DQUOTE] = ACTIONS(1245), + [anon_sym_DOLLAR] = ACTIONS(1247), + [sym_raw_string] = ACTIONS(1245), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1245), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1245), + [anon_sym_BQUOTE] = ACTIONS(1245), + [anon_sym_LT_LPAREN] = ACTIONS(1245), + [anon_sym_GT_LPAREN] = ACTIONS(1245), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1245), + [sym_word] = ACTIONS(1247), }, [219] = { - [aux_sym_concatenation_repeat1] = STATE(631), - [sym__concat] = ACTIONS(1247), - [anon_sym_RBRACK] = ACTIONS(1249), + [aux_sym_concatenation_repeat1] = STATE(632), + [sym__concat] = ACTIONS(1249), + [anon_sym_RBRACK] = ACTIONS(1251), [sym_comment] = ACTIONS(56), }, [220] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(633), - [anon_sym_DQUOTE] = ACTIONS(1251), + [aux_sym_string_repeat1] = STATE(634), + [anon_sym_DQUOTE] = ACTIONS(1253), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -18221,55 +18229,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [221] = { - [sym_string] = STATE(635), + [sym_string] = STATE(636), [anon_sym_DQUOTE] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(1253), - [sym_raw_string] = ACTIONS(1255), - [anon_sym_POUND] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_DOLLAR] = ACTIONS(1255), + [sym_raw_string] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1255), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_AT] = ACTIONS(1253), - [anon_sym_QMARK] = ACTIONS(1253), - [anon_sym_0] = ACTIONS(1259), - [anon_sym__] = ACTIONS(1259), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1255), + [anon_sym_AT] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1255), + [anon_sym_0] = ACTIONS(1261), + [anon_sym__] = ACTIONS(1261), }, [222] = { - [aux_sym_concatenation_repeat1] = STATE(631), - [sym__concat] = ACTIONS(1261), - [anon_sym_RBRACK] = ACTIONS(1263), + [aux_sym_concatenation_repeat1] = STATE(632), + [sym__concat] = ACTIONS(1263), + [anon_sym_RBRACK] = ACTIONS(1265), [sym_comment] = ACTIONS(56), }, [223] = { - [sym_subscript] = STATE(643), - [sym_variable_name] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1267), - [anon_sym_POUND] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1267), + [sym_subscript] = STATE(644), + [sym_variable_name] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1269), + [anon_sym_POUND] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1269), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1271), - [anon_sym_STAR] = ACTIONS(1267), - [anon_sym_AT] = ACTIONS(1267), - [anon_sym_QMARK] = ACTIONS(1267), - [anon_sym_0] = ACTIONS(1273), - [anon_sym__] = ACTIONS(1273), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_AT] = ACTIONS(1269), + [anon_sym_QMARK] = ACTIONS(1269), + [anon_sym_0] = ACTIONS(1275), + [anon_sym__] = ACTIONS(1275), }, [224] = { - [sym_for_statement] = STATE(644), - [sym_while_statement] = STATE(644), - [sym_if_statement] = STATE(644), - [sym_case_statement] = STATE(644), - [sym_function_definition] = STATE(644), - [sym_subshell] = STATE(644), - [sym_pipeline] = STATE(644), - [sym_list] = STATE(644), - [sym_command] = STATE(644), + [sym_for_statement] = STATE(645), + [sym_while_statement] = STATE(645), + [sym_if_statement] = STATE(645), + [sym_case_statement] = STATE(645), + [sym_function_definition] = STATE(645), + [sym_subshell] = STATE(645), + [sym_pipeline] = STATE(645), + [sym_list] = STATE(645), + [sym_command] = STATE(645), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(644), - [sym_variable_assignment] = STATE(645), - [sym_declaration_command] = STATE(644), - [sym_unset_command] = STATE(644), + [sym_bracket_command] = STATE(645), + [sym_variable_assignment] = STATE(646), + [sym_declaration_command] = STATE(645), + [sym_unset_command] = STATE(645), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -18317,20 +18325,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [225] = { - [sym_for_statement] = STATE(646), - [sym_while_statement] = STATE(646), - [sym_if_statement] = STATE(646), - [sym_case_statement] = STATE(646), - [sym_function_definition] = STATE(646), - [sym_subshell] = STATE(646), - [sym_pipeline] = STATE(646), - [sym_list] = STATE(646), - [sym_command] = STATE(646), + [sym_for_statement] = STATE(647), + [sym_while_statement] = STATE(647), + [sym_if_statement] = STATE(647), + [sym_case_statement] = STATE(647), + [sym_function_definition] = STATE(647), + [sym_subshell] = STATE(647), + [sym_pipeline] = STATE(647), + [sym_list] = STATE(647), + [sym_command] = STATE(647), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(646), - [sym_variable_assignment] = STATE(647), - [sym_declaration_command] = STATE(646), - [sym_unset_command] = STATE(646), + [sym_bracket_command] = STATE(647), + [sym_variable_assignment] = STATE(648), + [sym_declaration_command] = STATE(647), + [sym_unset_command] = STATE(647), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -18378,20 +18386,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(334), }, [226] = { - [sym_for_statement] = STATE(648), - [sym_while_statement] = STATE(648), - [sym_if_statement] = STATE(648), - [sym_case_statement] = STATE(648), - [sym_function_definition] = STATE(648), - [sym_subshell] = STATE(648), - [sym_pipeline] = STATE(648), - [sym_list] = STATE(648), - [sym_command] = STATE(648), + [sym_for_statement] = STATE(649), + [sym_while_statement] = STATE(649), + [sym_if_statement] = STATE(649), + [sym_case_statement] = STATE(649), + [sym_function_definition] = STATE(649), + [sym_subshell] = STATE(649), + [sym_pipeline] = STATE(649), + [sym_list] = STATE(649), + [sym_command] = STATE(649), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(648), - [sym_variable_assignment] = STATE(649), - [sym_declaration_command] = STATE(648), - [sym_unset_command] = STATE(648), + [sym_bracket_command] = STATE(649), + [sym_variable_assignment] = STATE(650), + [sym_declaration_command] = STATE(649), + [sym_unset_command] = STATE(649), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -18439,101 +18447,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [227] = { - [sym__concat] = ACTIONS(1275), - [anon_sym_RBRACK] = ACTIONS(1263), + [sym__concat] = ACTIONS(1277), + [anon_sym_RBRACK] = ACTIONS(1265), [sym_comment] = ACTIONS(56), }, [228] = { - [sym_file_descriptor] = ACTIONS(1277), - [sym_variable_name] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_RPAREN] = ACTIONS(1279), - [anon_sym_SEMI_SEMI] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1279), - [anon_sym_GT] = ACTIONS(1279), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_AMP_GT] = ACTIONS(1279), - [anon_sym_AMP_GT_GT] = ACTIONS(1279), - [anon_sym_LT_AMP] = ACTIONS(1279), - [anon_sym_GT_AMP] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1279), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), + [sym_file_descriptor] = ACTIONS(1279), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_SEMI_SEMI] = ACTIONS(1281), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1281), + [anon_sym_GT] = ACTIONS(1281), + [anon_sym_GT_GT] = ACTIONS(1281), + [anon_sym_AMP_GT] = ACTIONS(1281), + [anon_sym_AMP_GT_GT] = ACTIONS(1281), + [anon_sym_LT_AMP] = ACTIONS(1281), + [anon_sym_GT_AMP] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_LF] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), + [sym_word] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), }, [229] = { - [sym_concatenation] = STATE(660), - [sym_string] = STATE(655), - [sym_simple_expansion] = STATE(655), - [sym_string_expansion] = STATE(655), - [sym_expansion] = STATE(655), - [sym_command_substitution] = STATE(655), - [sym_process_substitution] = STATE(655), - [aux_sym_for_statement_repeat1] = STATE(661), - [anon_sym_RPAREN] = ACTIONS(1281), - [sym__special_characters] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1287), - [sym_raw_string] = ACTIONS(1289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LT_LPAREN] = ACTIONS(1297), - [anon_sym_GT_LPAREN] = ACTIONS(1297), + [sym_concatenation] = STATE(661), + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [aux_sym_for_statement_repeat1] = STATE(662), + [anon_sym_RPAREN] = ACTIONS(1283), + [sym__special_characters] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1289), + [sym_raw_string] = ACTIONS(1291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), + [anon_sym_BQUOTE] = ACTIONS(1297), + [anon_sym_LT_LPAREN] = ACTIONS(1299), + [anon_sym_GT_LPAREN] = ACTIONS(1299), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1299), + [sym_word] = ACTIONS(1301), }, [230] = { - [aux_sym_concatenation_repeat1] = STATE(663), - [sym_file_descriptor] = ACTIONS(1301), - [sym__concat] = ACTIONS(1303), - [sym_variable_name] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1305), - [anon_sym_SEMI_SEMI] = ACTIONS(1305), - [anon_sym_PIPE_AMP] = ACTIONS(1305), - [anon_sym_AMP_AMP] = ACTIONS(1305), - [anon_sym_PIPE_PIPE] = ACTIONS(1305), - [anon_sym_LT] = ACTIONS(1305), - [anon_sym_GT] = ACTIONS(1305), - [anon_sym_GT_GT] = ACTIONS(1305), - [anon_sym_AMP_GT] = ACTIONS(1305), - [anon_sym_AMP_GT_GT] = ACTIONS(1305), - [anon_sym_LT_AMP] = ACTIONS(1305), - [anon_sym_GT_AMP] = ACTIONS(1305), - [sym__special_characters] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1305), - [sym_raw_string] = ACTIONS(1305), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1305), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1305), - [anon_sym_BQUOTE] = ACTIONS(1305), - [anon_sym_LT_LPAREN] = ACTIONS(1305), - [anon_sym_GT_LPAREN] = ACTIONS(1305), + [aux_sym_concatenation_repeat1] = STATE(664), + [sym_file_descriptor] = ACTIONS(1303), + [sym__concat] = ACTIONS(1305), + [sym_variable_name] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_SEMI_SEMI] = ACTIONS(1307), + [anon_sym_PIPE_AMP] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1307), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_GT_GT] = ACTIONS(1307), + [anon_sym_AMP_GT] = ACTIONS(1307), + [anon_sym_AMP_GT_GT] = ACTIONS(1307), + [anon_sym_LT_AMP] = ACTIONS(1307), + [anon_sym_GT_AMP] = ACTIONS(1307), + [sym__special_characters] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [sym_raw_string] = ACTIONS(1307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1307), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1307), + [anon_sym_BQUOTE] = ACTIONS(1307), + [anon_sym_LT_LPAREN] = ACTIONS(1307), + [anon_sym_GT_LPAREN] = ACTIONS(1307), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym_LF] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1305), + [sym_word] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_LF] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), }, [231] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(665), - [anon_sym_DQUOTE] = ACTIONS(1307), + [aux_sym_string_repeat1] = STATE(666), + [anon_sym_DQUOTE] = ACTIONS(1309), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -18542,81 +18550,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), }, [232] = { - [sym_string] = STATE(667), + [sym_string] = STATE(668), [anon_sym_DQUOTE] = ACTIONS(424), - [anon_sym_DOLLAR] = ACTIONS(1309), - [sym_raw_string] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1309), - [anon_sym_DASH] = ACTIONS(1309), + [anon_sym_DOLLAR] = ACTIONS(1311), + [sym_raw_string] = ACTIONS(1313), + [anon_sym_POUND] = ACTIONS(1311), + [anon_sym_DASH] = ACTIONS(1311), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1313), - [anon_sym_STAR] = ACTIONS(1309), - [anon_sym_AT] = ACTIONS(1309), - [anon_sym_QMARK] = ACTIONS(1309), - [anon_sym_0] = ACTIONS(1315), - [anon_sym__] = ACTIONS(1315), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1311), + [anon_sym_AT] = ACTIONS(1311), + [anon_sym_QMARK] = ACTIONS(1311), + [anon_sym_0] = ACTIONS(1317), + [anon_sym__] = ACTIONS(1317), }, [233] = { - [aux_sym_concatenation_repeat1] = STATE(663), - [sym_file_descriptor] = ACTIONS(1277), - [sym__concat] = ACTIONS(1303), - [sym_variable_name] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_SEMI_SEMI] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1279), - [anon_sym_GT] = ACTIONS(1279), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_AMP_GT] = ACTIONS(1279), - [anon_sym_AMP_GT_GT] = ACTIONS(1279), - [anon_sym_LT_AMP] = ACTIONS(1279), - [anon_sym_GT_AMP] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1279), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), + [aux_sym_concatenation_repeat1] = STATE(664), + [sym_file_descriptor] = ACTIONS(1279), + [sym__concat] = ACTIONS(1305), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_SEMI_SEMI] = ACTIONS(1281), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1281), + [anon_sym_GT] = ACTIONS(1281), + [anon_sym_GT_GT] = ACTIONS(1281), + [anon_sym_AMP_GT] = ACTIONS(1281), + [anon_sym_AMP_GT_GT] = ACTIONS(1281), + [anon_sym_LT_AMP] = ACTIONS(1281), + [anon_sym_GT_AMP] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_LF] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), + [sym_word] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), }, [234] = { - [sym_subscript] = STATE(673), - [sym_variable_name] = ACTIONS(1317), - [anon_sym_DOLLAR] = ACTIONS(1319), - [anon_sym_POUND] = ACTIONS(1321), - [anon_sym_DASH] = ACTIONS(1319), + [sym_subscript] = STATE(674), + [sym_variable_name] = ACTIONS(1319), + [anon_sym_DOLLAR] = ACTIONS(1321), + [anon_sym_POUND] = ACTIONS(1323), + [anon_sym_DASH] = ACTIONS(1321), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1323), - [anon_sym_STAR] = ACTIONS(1319), - [anon_sym_AT] = ACTIONS(1319), - [anon_sym_QMARK] = ACTIONS(1319), - [anon_sym_0] = ACTIONS(1325), - [anon_sym__] = ACTIONS(1325), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1325), + [anon_sym_STAR] = ACTIONS(1321), + [anon_sym_AT] = ACTIONS(1321), + [anon_sym_QMARK] = ACTIONS(1321), + [anon_sym_0] = ACTIONS(1327), + [anon_sym__] = ACTIONS(1327), }, [235] = { - [sym_for_statement] = STATE(674), - [sym_while_statement] = STATE(674), - [sym_if_statement] = STATE(674), - [sym_case_statement] = STATE(674), - [sym_function_definition] = STATE(674), - [sym_subshell] = STATE(674), - [sym_pipeline] = STATE(674), - [sym_list] = STATE(674), - [sym_command] = STATE(674), + [sym_for_statement] = STATE(675), + [sym_while_statement] = STATE(675), + [sym_if_statement] = STATE(675), + [sym_case_statement] = STATE(675), + [sym_function_definition] = STATE(675), + [sym_subshell] = STATE(675), + [sym_pipeline] = STATE(675), + [sym_list] = STATE(675), + [sym_command] = STATE(675), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(674), - [sym_variable_assignment] = STATE(675), - [sym_declaration_command] = STATE(674), - [sym_unset_command] = STATE(674), + [sym_bracket_command] = STATE(675), + [sym_variable_assignment] = STATE(676), + [sym_declaration_command] = STATE(675), + [sym_unset_command] = STATE(675), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -18664,20 +18672,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [236] = { - [sym_for_statement] = STATE(676), - [sym_while_statement] = STATE(676), - [sym_if_statement] = STATE(676), - [sym_case_statement] = STATE(676), - [sym_function_definition] = STATE(676), - [sym_subshell] = STATE(676), - [sym_pipeline] = STATE(676), - [sym_list] = STATE(676), - [sym_command] = STATE(676), + [sym_for_statement] = STATE(677), + [sym_while_statement] = STATE(677), + [sym_if_statement] = STATE(677), + [sym_case_statement] = STATE(677), + [sym_function_definition] = STATE(677), + [sym_subshell] = STATE(677), + [sym_pipeline] = STATE(677), + [sym_list] = STATE(677), + [sym_command] = STATE(677), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(676), - [sym_variable_assignment] = STATE(677), - [sym_declaration_command] = STATE(676), - [sym_unset_command] = STATE(676), + [sym_bracket_command] = STATE(677), + [sym_variable_assignment] = STATE(678), + [sym_declaration_command] = STATE(677), + [sym_unset_command] = STATE(677), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -18725,20 +18733,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(334), }, [237] = { - [sym_for_statement] = STATE(678), - [sym_while_statement] = STATE(678), - [sym_if_statement] = STATE(678), - [sym_case_statement] = STATE(678), - [sym_function_definition] = STATE(678), - [sym_subshell] = STATE(678), - [sym_pipeline] = STATE(678), - [sym_list] = STATE(678), - [sym_command] = STATE(678), + [sym_for_statement] = STATE(679), + [sym_while_statement] = STATE(679), + [sym_if_statement] = STATE(679), + [sym_case_statement] = STATE(679), + [sym_function_definition] = STATE(679), + [sym_subshell] = STATE(679), + [sym_pipeline] = STATE(679), + [sym_list] = STATE(679), + [sym_command] = STATE(679), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(678), - [sym_variable_assignment] = STATE(679), - [sym_declaration_command] = STATE(678), - [sym_unset_command] = STATE(678), + [sym_bracket_command] = STATE(679), + [sym_variable_assignment] = STATE(680), + [sym_declaration_command] = STATE(679), + [sym_unset_command] = STATE(679), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -18786,42 +18794,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(302), }, [238] = { - [sym_concatenation] = STATE(688), - [sym_string] = STATE(683), - [sym_simple_expansion] = STATE(683), - [sym_string_expansion] = STATE(683), - [sym_expansion] = STATE(683), - [sym_command_substitution] = STATE(683), - [sym_process_substitution] = STATE(683), - [aux_sym_for_statement_repeat1] = STATE(689), - [sym__special_characters] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1329), - [anon_sym_DOLLAR] = ACTIONS(1331), - [sym_raw_string] = ACTIONS(1333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1337), - [anon_sym_BQUOTE] = ACTIONS(1339), - [anon_sym_LT_LPAREN] = ACTIONS(1341), - [anon_sym_GT_LPAREN] = ACTIONS(1341), + [sym_concatenation] = STATE(689), + [sym_string] = STATE(684), + [sym_simple_expansion] = STATE(684), + [sym_string_expansion] = STATE(684), + [sym_expansion] = STATE(684), + [sym_command_substitution] = STATE(684), + [sym_process_substitution] = STATE(684), + [aux_sym_for_statement_repeat1] = STATE(690), + [sym__special_characters] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(1333), + [sym_raw_string] = ACTIONS(1335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1339), + [anon_sym_BQUOTE] = ACTIONS(1341), + [anon_sym_LT_LPAREN] = ACTIONS(1343), + [anon_sym_GT_LPAREN] = ACTIONS(1343), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1343), + [sym_word] = ACTIONS(1345), }, [239] = { - [sym__terminated_statement] = STATE(691), - [sym_for_statement] = STATE(692), - [sym_while_statement] = STATE(692), - [sym_if_statement] = STATE(692), - [sym_case_statement] = STATE(692), - [sym_function_definition] = STATE(692), - [sym_subshell] = STATE(692), - [sym_pipeline] = STATE(692), - [sym_list] = STATE(692), - [sym_command] = STATE(692), + [sym_do_group] = STATE(692), + [anon_sym_do] = ACTIONS(1347), + [sym_comment] = ACTIONS(56), + }, + [240] = { + [sym__terminated_statement] = STATE(694), + [sym_for_statement] = STATE(695), + [sym_while_statement] = STATE(695), + [sym_if_statement] = STATE(695), + [sym_case_statement] = STATE(695), + [sym_function_definition] = STATE(695), + [sym_subshell] = STATE(695), + [sym_pipeline] = STATE(695), + [sym_list] = STATE(695), + [sym_command] = STATE(695), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(692), - [sym_variable_assignment] = STATE(693), - [sym_declaration_command] = STATE(692), - [sym_unset_command] = STATE(692), + [sym_bracket_command] = STATE(695), + [sym_variable_assignment] = STATE(696), + [sym_declaration_command] = STATE(695), + [sym_unset_command] = STATE(695), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -18831,13 +18844,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(694), + [aux_sym_program_repeat1] = STATE(697), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(1345), + [anon_sym_done] = ACTIONS(1349), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), @@ -18870,17 +18883,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [240] = { + [241] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(695), + [aux_sym_while_statement_repeat1] = STATE(698), [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_SEMI_SEMI] = ACTIONS(1347), - [anon_sym_PIPE_AMP] = ACTIONS(1347), - [anon_sym_AMP_AMP] = ACTIONS(1347), - [anon_sym_PIPE_PIPE] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_SEMI_SEMI] = ACTIONS(1351), + [anon_sym_PIPE_AMP] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1351), + [anon_sym_PIPE_PIPE] = ACTIONS(1351), [anon_sym_LT] = ACTIONS(358), [anon_sym_GT] = ACTIONS(358), [anon_sym_GT_GT] = ACTIONS(358), @@ -18892,33 +18905,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(360), [anon_sym_LT_LT_LT] = ACTIONS(362), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_LF] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - }, - [241] = { - [anon_sym_do] = ACTIONS(1100), - [anon_sym_then] = ACTIONS(1100), - [sym_comment] = ACTIONS(56), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_LF] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), }, [242] = { - [sym__terminated_statement] = STATE(699), - [sym_for_statement] = STATE(700), - [sym_while_statement] = STATE(700), - [sym_if_statement] = STATE(700), - [sym_elif_clause] = STATE(701), - [sym_else_clause] = STATE(702), - [sym_case_statement] = STATE(700), - [sym_function_definition] = STATE(700), - [sym_subshell] = STATE(700), - [sym_pipeline] = STATE(700), - [sym_list] = STATE(700), - [sym_command] = STATE(700), + [anon_sym_do] = ACTIONS(1102), + [anon_sym_then] = ACTIONS(1102), + [sym_comment] = ACTIONS(56), + }, + [243] = { + [sym__terminated_statement] = STATE(702), + [sym_for_statement] = STATE(703), + [sym_while_statement] = STATE(703), + [sym_if_statement] = STATE(703), + [sym_elif_clause] = STATE(704), + [sym_else_clause] = STATE(705), + [sym_case_statement] = STATE(703), + [sym_function_definition] = STATE(703), + [sym_subshell] = STATE(703), + [sym_pipeline] = STATE(703), + [sym_list] = STATE(703), + [sym_command] = STATE(703), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(700), - [sym_variable_assignment] = STATE(703), - [sym_declaration_command] = STATE(700), - [sym_unset_command] = STATE(700), + [sym_bracket_command] = STATE(703), + [sym_variable_assignment] = STATE(706), + [sym_declaration_command] = STATE(703), + [sym_unset_command] = STATE(703), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -18928,17 +18941,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(704), - [aux_sym_if_statement_repeat1] = STATE(705), + [aux_sym_program_repeat1] = STATE(707), + [aux_sym_if_statement_repeat1] = STATE(708), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(1349), - [anon_sym_elif] = ACTIONS(1351), - [anon_sym_else] = ACTIONS(1353), + [anon_sym_fi] = ACTIONS(1353), + [anon_sym_elif] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(1357), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -18970,61 +18983,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [243] = { - [sym_string] = STATE(706), - [sym_simple_expansion] = STATE(706), - [sym_string_expansion] = STATE(706), - [sym_expansion] = STATE(706), - [sym_command_substitution] = STATE(706), - [sym_process_substitution] = STATE(706), - [sym__special_characters] = ACTIONS(1355), + [244] = { + [sym_string] = STATE(709), + [sym_simple_expansion] = STATE(709), + [sym_string_expansion] = STATE(709), + [sym_expansion] = STATE(709), + [sym_command_substitution] = STATE(709), + [sym_process_substitution] = STATE(709), + [sym__special_characters] = ACTIONS(1359), [anon_sym_DQUOTE] = ACTIONS(72), [anon_sym_DOLLAR] = ACTIONS(74), - [sym_raw_string] = ACTIONS(1357), + [sym_raw_string] = ACTIONS(1361), [anon_sym_DOLLAR_LBRACE] = ACTIONS(78), [anon_sym_DOLLAR_LPAREN] = ACTIONS(80), [anon_sym_BQUOTE] = ACTIONS(82), [anon_sym_LT_LPAREN] = ACTIONS(84), [anon_sym_GT_LPAREN] = ACTIONS(84), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1355), - }, - [244] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1359), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_LF] = ACTIONS(1359), - [anon_sym_AMP] = ACTIONS(1359), + [sym_word] = ACTIONS(1359), }, [245] = { - [anon_sym_in] = ACTIONS(1361), - [sym_comment] = ACTIONS(56), + [anon_sym_SEMI_SEMI] = ACTIONS(1363), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1363), + [anon_sym_LF] = ACTIONS(1363), + [anon_sym_AMP] = ACTIONS(1363), }, [246] = { - [aux_sym_concatenation_repeat1] = STATE(709), - [sym__concat] = ACTIONS(452), - [anon_sym_in] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), + [anon_sym_in] = ACTIONS(1365), + [sym_comment] = ACTIONS(56), }, [247] = { - [sym__concat] = ACTIONS(792), - [anon_sym_in] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), + [aux_sym_concatenation_repeat1] = STATE(712), + [sym__concat] = ACTIONS(454), + [anon_sym_in] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), }, [248] = { + [sym__concat] = ACTIONS(794), + [anon_sym_in] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + }, + [249] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(1363), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(1367), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -19032,237 +19045,168 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [249] = { - [sym__concat] = ACTIONS(824), - [anon_sym_in] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), - }, [250] = { - [sym__concat] = ACTIONS(828), - [anon_sym_in] = ACTIONS(830), - [anon_sym_SEMI_SEMI] = ACTIONS(830), + [sym__concat] = ACTIONS(826), + [anon_sym_in] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), }, [251] = { - [sym__concat] = ACTIONS(832), - [anon_sym_in] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), + [sym__concat] = ACTIONS(830), + [anon_sym_in] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), }, [252] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1365), + [sym__concat] = ACTIONS(834), + [anon_sym_in] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_LF] = ACTIONS(1365), - [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), }, [253] = { - [anon_sym_in] = ACTIONS(1367), - [sym_comment] = ACTIONS(56), + [anon_sym_SEMI_SEMI] = ACTIONS(1369), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_LF] = ACTIONS(1369), + [anon_sym_AMP] = ACTIONS(1369), }, [254] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(1369), + [anon_sym_in] = ACTIONS(1371), [sym_comment] = ACTIONS(56), }, [255] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(716), - [anon_sym_RBRACE] = ACTIONS(1371), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1373), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(1373), + [sym_comment] = ACTIONS(56), }, [256] = { - [sym_subscript] = STATE(720), - [sym_variable_name] = ACTIONS(1375), - [anon_sym_DOLLAR] = ACTIONS(1377), - [anon_sym_DASH] = ACTIONS(1377), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1379), - [anon_sym_STAR] = ACTIONS(1377), - [anon_sym_AT] = ACTIONS(1377), - [anon_sym_QMARK] = ACTIONS(1377), - [anon_sym_0] = ACTIONS(1381), - [anon_sym__] = ACTIONS(1381), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(719), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1377), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [257] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(723), - [anon_sym_RBRACE] = ACTIONS(1383), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1385), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_subscript] = STATE(723), + [sym_variable_name] = ACTIONS(1379), + [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1383), + [anon_sym_STAR] = ACTIONS(1381), + [anon_sym_AT] = ACTIONS(1381), + [anon_sym_QMARK] = ACTIONS(1381), + [anon_sym_0] = ACTIONS(1385), + [anon_sym__] = ACTIONS(1385), }, [258] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), [aux_sym_expansion_repeat1] = STATE(726), [anon_sym_RBRACE] = ACTIONS(1387), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), [aux_sym_SLASH] = ACTIONS(1389), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [259] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1391), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(729), + [anon_sym_RBRACE] = ACTIONS(1391), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1393), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [260] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1391), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1395), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [261] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(1391), - [sym_comment] = ACTIONS(56), - }, - [262] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(1391), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [263] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1393), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [264] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1393), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1395), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -19282,26 +19226,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [265] = { - [anon_sym_RPAREN] = ACTIONS(1395), + [262] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1395), [sym_comment] = ACTIONS(56), }, + [263] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(1395), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [264] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1397), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [265] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1397), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, [266] = { - [sym__terminated_statement] = STATE(731), - [sym_for_statement] = STATE(732), - [sym_while_statement] = STATE(732), - [sym_if_statement] = STATE(732), - [sym_case_statement] = STATE(732), - [sym_function_definition] = STATE(732), - [sym_subshell] = STATE(732), - [sym_pipeline] = STATE(732), - [sym_list] = STATE(732), - [sym_command] = STATE(732), + [anon_sym_RPAREN] = ACTIONS(1399), + [sym_comment] = ACTIONS(56), + }, + [267] = { + [sym__terminated_statement] = STATE(734), + [sym_for_statement] = STATE(735), + [sym_while_statement] = STATE(735), + [sym_if_statement] = STATE(735), + [sym_case_statement] = STATE(735), + [sym_function_definition] = STATE(735), + [sym_subshell] = STATE(735), + [sym_pipeline] = STATE(735), + [sym_list] = STATE(735), + [sym_command] = STATE(735), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(732), - [sym_variable_assignment] = STATE(733), - [sym_declaration_command] = STATE(732), - [sym_unset_command] = STATE(732), + [sym_bracket_command] = STATE(735), + [sym_variable_assignment] = STATE(736), + [sym_declaration_command] = STATE(735), + [sym_unset_command] = STATE(735), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -19311,7 +19324,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(734), + [aux_sym_program_repeat1] = STATE(737), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -19321,7 +19334,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(1397), + [anon_sym_RBRACE] = ACTIONS(1401), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_declare] = ACTIONS(32), @@ -19350,61 +19363,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [267] = { - [sym_file_redirect] = STATE(737), - [sym_file_descriptor] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(1401), - [anon_sym_SEMI_SEMI] = ACTIONS(1401), - [anon_sym_PIPE_AMP] = ACTIONS(1401), - [anon_sym_AMP_AMP] = ACTIONS(1401), - [anon_sym_PIPE_PIPE] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1403), - [anon_sym_GT_GT] = ACTIONS(1403), - [anon_sym_AMP_GT] = ACTIONS(1403), - [anon_sym_AMP_GT_GT] = ACTIONS(1403), - [anon_sym_LT_AMP] = ACTIONS(1403), - [anon_sym_GT_AMP] = ACTIONS(1403), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1401), - }, [268] = { - [sym_concatenation] = STATE(228), - [sym_string] = STATE(741), - [sym_array] = STATE(228), - [sym_simple_expansion] = STATE(741), - [sym_string_expansion] = STATE(741), - [sym_expansion] = STATE(741), - [sym_command_substitution] = STATE(741), - [sym_process_substitution] = STATE(741), - [sym__empty_value] = ACTIONS(418), - [anon_sym_LPAREN] = ACTIONS(420), - [sym__special_characters] = ACTIONS(1405), - [anon_sym_DQUOTE] = ACTIONS(1407), - [anon_sym_DOLLAR] = ACTIONS(1409), - [sym_raw_string] = ACTIONS(1411), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1415), - [anon_sym_BQUOTE] = ACTIONS(1417), - [anon_sym_LT_LPAREN] = ACTIONS(1419), - [anon_sym_GT_LPAREN] = ACTIONS(1419), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1421), + [sym_file_redirect] = STATE(740), + [sym_file_descriptor] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(1405), + [anon_sym_SEMI_SEMI] = ACTIONS(1405), + [anon_sym_PIPE_AMP] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1405), + [anon_sym_PIPE_PIPE] = ACTIONS(1405), + [anon_sym_LT] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_GT_GT] = ACTIONS(1407), + [anon_sym_AMP_GT] = ACTIONS(1407), + [anon_sym_AMP_GT_GT] = ACTIONS(1407), + [anon_sym_LT_AMP] = ACTIONS(1407), + [anon_sym_GT_AMP] = ACTIONS(1407), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_LF] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), }, [269] = { - [sym_do_group] = STATE(746), - [anon_sym_do] = ACTIONS(446), + [sym_concatenation] = STATE(228), + [sym_string] = STATE(744), + [sym_array] = STATE(228), + [sym_simple_expansion] = STATE(744), + [sym_string_expansion] = STATE(744), + [sym_expansion] = STATE(744), + [sym_command_substitution] = STATE(744), + [sym_process_substitution] = STATE(744), + [sym__empty_value] = ACTIONS(418), + [anon_sym_LPAREN] = ACTIONS(420), + [sym__special_characters] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(1413), + [sym_raw_string] = ACTIONS(1415), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1421), + [anon_sym_LT_LPAREN] = ACTIONS(1423), + [anon_sym_GT_LPAREN] = ACTIONS(1423), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1425), }, [270] = { - [sym_compound_statement] = STATE(748), - [anon_sym_LPAREN] = ACTIONS(1423), - [anon_sym_LBRACE] = ACTIONS(484), + [sym_do_group] = STATE(749), + [anon_sym_do] = ACTIONS(448), [sym_comment] = ACTIONS(56), }, [271] = { + [sym_compound_statement] = STATE(751), + [anon_sym_LPAREN] = ACTIONS(1427), + [anon_sym_LBRACE] = ACTIONS(486), + [sym_comment] = ACTIONS(56), + }, + [272] = { [sym_concatenation] = STATE(84), [sym_string] = STATE(79), [sym_simple_expansion] = STATE(79), @@ -19412,11 +19425,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(79), [sym_command_substitution] = STATE(79), [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(350), + [aux_sym_command_repeat2] = STATE(351), [anon_sym_EQ_TILDE] = ACTIONS(122), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_RBRACK] = ACTIONS(1425), - [sym__special_characters] = ACTIONS(638), + [anon_sym_RBRACK] = ACTIONS(1429), + [sym__special_characters] = ACTIONS(640), [anon_sym_DQUOTE] = ACTIONS(126), [anon_sym_DOLLAR] = ACTIONS(128), [sym_raw_string] = ACTIONS(130), @@ -19428,7 +19441,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(140), }, - [272] = { + [273] = { [sym_concatenation] = STATE(95), [sym_string] = STATE(90), [sym_simple_expansion] = STATE(90), @@ -19436,11 +19449,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(90), [sym_command_substitution] = STATE(90), [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(372), + [aux_sym_command_repeat2] = STATE(373), [anon_sym_EQ_TILDE] = ACTIONS(142), [anon_sym_EQ_EQ] = ACTIONS(142), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1425), - [sym__special_characters] = ACTIONS(680), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1429), + [sym__special_characters] = ACTIONS(682), [anon_sym_DQUOTE] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [sym_raw_string] = ACTIONS(150), @@ -19452,210 +19465,149 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(160), }, - [273] = { - [sym__assignment] = STATE(374), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(1427), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [sym_comment] = ACTIONS(56), - }, [274] = { - [aux_sym_concatenation_repeat1] = STATE(752), - [sym__concat] = ACTIONS(1429), - [sym_variable_name] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(688), - [anon_sym_RPAREN] = ACTIONS(688), - [anon_sym_SEMI_SEMI] = ACTIONS(688), - [anon_sym_PIPE_AMP] = ACTIONS(688), - [anon_sym_AMP_AMP] = ACTIONS(688), - [anon_sym_PIPE_PIPE] = ACTIONS(688), - [sym__special_characters] = ACTIONS(688), - [anon_sym_DQUOTE] = ACTIONS(688), - [anon_sym_DOLLAR] = ACTIONS(688), - [sym_raw_string] = ACTIONS(688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), - [anon_sym_BQUOTE] = ACTIONS(688), - [anon_sym_LT_LPAREN] = ACTIONS(688), - [anon_sym_GT_LPAREN] = ACTIONS(688), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(688), - [sym_word] = ACTIONS(688), - [anon_sym_SEMI] = ACTIONS(688), - [anon_sym_LF] = ACTIONS(688), - [anon_sym_AMP] = ACTIONS(688), + [sym__assignment] = STATE(375), + [anon_sym_LBRACK] = ACTIONS(64), + [anon_sym_EQ] = ACTIONS(1431), + [anon_sym_PLUS_EQ] = ACTIONS(1431), + [sym_comment] = ACTIONS(56), }, [275] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(754), - [anon_sym_DQUOTE] = ACTIONS(1431), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), + [aux_sym_concatenation_repeat1] = STATE(755), + [sym__concat] = ACTIONS(1433), + [sym_variable_name] = ACTIONS(688), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_RPAREN] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [sym__special_characters] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_LT_LPAREN] = ACTIONS(690), + [anon_sym_GT_LPAREN] = ACTIONS(690), [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(690), + [sym_word] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), }, [276] = { - [sym_string] = STATE(756), - [anon_sym_DQUOTE] = ACTIONS(1433), - [anon_sym_DOLLAR] = ACTIONS(1435), - [sym_raw_string] = ACTIONS(1437), - [anon_sym_POUND] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(757), + [anon_sym_DQUOTE] = ACTIONS(1435), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_AT] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1435), - [anon_sym_0] = ACTIONS(1441), - [anon_sym__] = ACTIONS(1441), }, [277] = { - [aux_sym_concatenation_repeat1] = STATE(752), - [sym__concat] = ACTIONS(1429), - [sym_variable_name] = ACTIONS(702), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_RPAREN] = ACTIONS(704), - [anon_sym_SEMI_SEMI] = ACTIONS(704), - [anon_sym_PIPE_AMP] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(704), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [sym__special_characters] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(704), - [sym_raw_string] = ACTIONS(704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(704), - [anon_sym_GT_LPAREN] = ACTIONS(704), + [sym_string] = STATE(759), + [anon_sym_DQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1439), + [sym_raw_string] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(704), - [sym_word] = ACTIONS(704), - [anon_sym_SEMI] = ACTIONS(704), - [anon_sym_LF] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_AT] = ACTIONS(1439), + [anon_sym_QMARK] = ACTIONS(1439), + [anon_sym_0] = ACTIONS(1445), + [anon_sym__] = ACTIONS(1445), }, [278] = { - [sym_subscript] = STATE(762), - [sym_variable_name] = ACTIONS(1443), - [anon_sym_DOLLAR] = ACTIONS(1445), - [anon_sym_POUND] = ACTIONS(1447), - [anon_sym_DASH] = ACTIONS(1445), + [aux_sym_concatenation_repeat1] = STATE(755), + [sym__concat] = ACTIONS(1433), + [sym_variable_name] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_RPAREN] = ACTIONS(706), + [anon_sym_SEMI_SEMI] = ACTIONS(706), + [anon_sym_PIPE_AMP] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [sym__special_characters] = ACTIONS(706), + [anon_sym_DQUOTE] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(706), + [sym_raw_string] = ACTIONS(706), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(706), + [anon_sym_BQUOTE] = ACTIONS(706), + [anon_sym_LT_LPAREN] = ACTIONS(706), + [anon_sym_GT_LPAREN] = ACTIONS(706), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1445), - [anon_sym_AT] = ACTIONS(1445), - [anon_sym_QMARK] = ACTIONS(1445), - [anon_sym_0] = ACTIONS(1451), - [anon_sym__] = ACTIONS(1451), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(706), + [sym_word] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(706), + [anon_sym_LF] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), }, [279] = { - [sym_for_statement] = STATE(763), - [sym_while_statement] = STATE(763), - [sym_if_statement] = STATE(763), - [sym_case_statement] = STATE(763), - [sym_function_definition] = STATE(763), - [sym_subshell] = STATE(763), - [sym_pipeline] = STATE(763), - [sym_list] = STATE(763), - [sym_command] = STATE(763), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(763), - [sym_variable_assignment] = STATE(764), - [sym_declaration_command] = STATE(763), - [sym_unset_command] = STATE(763), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [sym_subscript] = STATE(765), + [sym_variable_name] = ACTIONS(1447), + [anon_sym_DOLLAR] = ACTIONS(1449), + [anon_sym_POUND] = ACTIONS(1451), + [anon_sym_DASH] = ACTIONS(1449), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1453), + [anon_sym_STAR] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_0] = ACTIONS(1455), + [anon_sym__] = ACTIONS(1455), }, [280] = { - [sym_for_statement] = STATE(765), - [sym_while_statement] = STATE(765), - [sym_if_statement] = STATE(765), - [sym_case_statement] = STATE(765), - [sym_function_definition] = STATE(765), - [sym_subshell] = STATE(765), - [sym_pipeline] = STATE(765), - [sym_list] = STATE(765), - [sym_command] = STATE(765), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(765), - [sym_variable_assignment] = STATE(766), - [sym_declaration_command] = STATE(765), - [sym_unset_command] = STATE(765), - [sym_subscript] = STATE(192), + [sym_for_statement] = STATE(766), + [sym_while_statement] = STATE(766), + [sym_if_statement] = STATE(766), + [sym_case_statement] = STATE(766), + [sym_function_definition] = STATE(766), + [sym_subshell] = STATE(766), + [sym_pipeline] = STATE(766), + [sym_list] = STATE(766), + [sym_command] = STATE(766), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(766), + [sym_variable_assignment] = STATE(767), + [sym_declaration_command] = STATE(766), + [sym_unset_command] = STATE(766), + [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), + [sym_variable_name] = ACTIONS(264), [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), + [anon_sym_while] = ACTIONS(268), [anon_sym_if] = ACTIONS(270), [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), + [anon_sym_function] = ACTIONS(274), [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -19663,287 +19615,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [sym_word] = ACTIONS(302), }, [281] = { - [sym_for_statement] = STATE(767), - [sym_while_statement] = STATE(767), - [sym_if_statement] = STATE(767), - [sym_case_statement] = STATE(767), - [sym_function_definition] = STATE(767), - [sym_subshell] = STATE(767), - [sym_pipeline] = STATE(767), - [sym_list] = STATE(767), - [sym_command] = STATE(767), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(767), - [sym_variable_assignment] = STATE(768), - [sym_declaration_command] = STATE(767), - [sym_unset_command] = STATE(767), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [282] = { - [sym__assignment] = STATE(374), - [anon_sym_EQ] = ACTIONS(1427), - [anon_sym_PLUS_EQ] = ACTIONS(1427), - [sym_comment] = ACTIONS(56), - }, - [283] = { - [sym_variable_assignment] = STATE(107), - [sym_subscript] = STATE(282), - [sym_concatenation] = STATE(107), - [sym_string] = STATE(277), - [sym_simple_expansion] = STATE(277), - [sym_string_expansion] = STATE(277), - [sym_expansion] = STATE(277), - [sym_command_substitution] = STATE(277), - [sym_process_substitution] = STATE(277), - [aux_sym_declaration_command_repeat1] = STATE(769), - [sym_variable_name] = ACTIONS(490), - [anon_sym_PIPE] = ACTIONS(720), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_SEMI_SEMI] = ACTIONS(720), - [anon_sym_PIPE_AMP] = ACTIONS(720), - [anon_sym_AMP_AMP] = ACTIONS(720), - [anon_sym_PIPE_PIPE] = ACTIONS(720), - [sym__special_characters] = ACTIONS(492), - [anon_sym_DQUOTE] = ACTIONS(494), - [anon_sym_DOLLAR] = ACTIONS(496), - [sym_raw_string] = ACTIONS(498), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(500), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(502), - [anon_sym_BQUOTE] = ACTIONS(504), - [anon_sym_LT_LPAREN] = ACTIONS(506), - [anon_sym_GT_LPAREN] = ACTIONS(506), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(184), - [sym_word] = ACTIONS(498), - [anon_sym_SEMI] = ACTIONS(720), - [anon_sym_LF] = ACTIONS(720), - [anon_sym_AMP] = ACTIONS(720), - }, - [284] = { - [aux_sym_concatenation_repeat1] = STATE(771), - [sym__concat] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(724), - [anon_sym_RPAREN] = ACTIONS(724), - [anon_sym_SEMI_SEMI] = ACTIONS(724), - [anon_sym_PIPE_AMP] = ACTIONS(724), - [anon_sym_AMP_AMP] = ACTIONS(724), - [anon_sym_PIPE_PIPE] = ACTIONS(724), - [sym__special_characters] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DOLLAR] = ACTIONS(724), - [sym_raw_string] = ACTIONS(724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), - [anon_sym_BQUOTE] = ACTIONS(724), - [anon_sym_LT_LPAREN] = ACTIONS(724), - [anon_sym_GT_LPAREN] = ACTIONS(724), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(724), - [sym_word] = ACTIONS(724), - [anon_sym_SEMI] = ACTIONS(724), - [anon_sym_LF] = ACTIONS(724), - [anon_sym_AMP] = ACTIONS(724), - }, - [285] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(773), - [anon_sym_DQUOTE] = ACTIONS(1455), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [286] = { - [sym_string] = STATE(775), - [anon_sym_DQUOTE] = ACTIONS(1457), - [anon_sym_DOLLAR] = ACTIONS(1459), - [sym_raw_string] = ACTIONS(1461), - [anon_sym_POUND] = ACTIONS(1459), - [anon_sym_DASH] = ACTIONS(1459), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1459), - [anon_sym_AT] = ACTIONS(1459), - [anon_sym_QMARK] = ACTIONS(1459), - [anon_sym_0] = ACTIONS(1465), - [anon_sym__] = ACTIONS(1465), - }, - [287] = { - [aux_sym_concatenation_repeat1] = STATE(771), - [sym__concat] = ACTIONS(1453), - [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), - [sym__special_characters] = ACTIONS(738), - [anon_sym_DQUOTE] = ACTIONS(738), - [anon_sym_DOLLAR] = ACTIONS(738), - [sym_raw_string] = 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_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(738), - [sym_word] = ACTIONS(738), - [anon_sym_SEMI] = ACTIONS(738), - [anon_sym_LF] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(738), - }, - [288] = { - [sym_subscript] = STATE(781), - [sym_variable_name] = ACTIONS(1467), - [anon_sym_DOLLAR] = ACTIONS(1469), - [anon_sym_POUND] = ACTIONS(1471), - [anon_sym_DASH] = ACTIONS(1469), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1473), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_AT] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1469), - [anon_sym_0] = ACTIONS(1475), - [anon_sym__] = ACTIONS(1475), - }, - [289] = { - [sym_for_statement] = STATE(782), - [sym_while_statement] = STATE(782), - [sym_if_statement] = STATE(782), - [sym_case_statement] = STATE(782), - [sym_function_definition] = STATE(782), - [sym_subshell] = STATE(782), - [sym_pipeline] = STATE(782), - [sym_list] = STATE(782), - [sym_command] = STATE(782), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(782), - [sym_variable_assignment] = STATE(783), - [sym_declaration_command] = STATE(782), - [sym_unset_command] = STATE(782), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [290] = { - [sym_for_statement] = STATE(784), - [sym_while_statement] = STATE(784), - [sym_if_statement] = STATE(784), - [sym_case_statement] = STATE(784), - [sym_function_definition] = STATE(784), - [sym_subshell] = STATE(784), - [sym_pipeline] = STATE(784), - [sym_list] = STATE(784), - [sym_command] = STATE(784), + [sym_for_statement] = STATE(768), + [sym_while_statement] = STATE(768), + [sym_if_statement] = STATE(768), + [sym_case_statement] = STATE(768), + [sym_function_definition] = STATE(768), + [sym_subshell] = STATE(768), + [sym_pipeline] = STATE(768), + [sym_list] = STATE(768), + [sym_command] = STATE(768), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(784), - [sym_variable_assignment] = STATE(785), - [sym_declaration_command] = STATE(784), - [sym_unset_command] = STATE(784), + [sym_bracket_command] = STATE(768), + [sym_variable_assignment] = STATE(769), + [sym_declaration_command] = STATE(768), + [sym_unset_command] = STATE(768), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -19990,21 +19688,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [291] = { - [sym_for_statement] = STATE(786), - [sym_while_statement] = STATE(786), - [sym_if_statement] = STATE(786), - [sym_case_statement] = STATE(786), - [sym_function_definition] = STATE(786), - [sym_subshell] = STATE(786), - [sym_pipeline] = STATE(786), - [sym_list] = STATE(786), - [sym_command] = STATE(786), + [282] = { + [sym_for_statement] = STATE(770), + [sym_while_statement] = STATE(770), + [sym_if_statement] = STATE(770), + [sym_case_statement] = STATE(770), + [sym_function_definition] = STATE(770), + [sym_subshell] = STATE(770), + [sym_pipeline] = STATE(770), + [sym_list] = STATE(770), + [sym_command] = STATE(770), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(786), - [sym_variable_assignment] = STATE(787), - [sym_declaration_command] = STATE(786), - [sym_unset_command] = STATE(786), + [sym_bracket_command] = STATE(770), + [sym_variable_assignment] = STATE(771), + [sym_declaration_command] = STATE(770), + [sym_unset_command] = STATE(770), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -20051,135 +19749,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [292] = { - [sym_concatenation] = STATE(119), - [sym_string] = STATE(287), - [sym_simple_expansion] = STATE(287), - [sym_string_expansion] = STATE(287), - [sym_expansion] = STATE(287), - [sym_command_substitution] = STATE(287), - [sym_process_substitution] = STATE(287), - [aux_sym_unset_command_repeat1] = STATE(788), - [anon_sym_PIPE] = ACTIONS(752), - [anon_sym_RPAREN] = ACTIONS(752), - [anon_sym_SEMI_SEMI] = ACTIONS(752), - [anon_sym_PIPE_AMP] = ACTIONS(752), - [anon_sym_AMP_AMP] = ACTIONS(752), - [anon_sym_PIPE_PIPE] = ACTIONS(752), - [sym__special_characters] = ACTIONS(508), - [anon_sym_DQUOTE] = ACTIONS(510), - [anon_sym_DOLLAR] = ACTIONS(512), - [sym_raw_string] = ACTIONS(514), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(516), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(518), - [anon_sym_BQUOTE] = ACTIONS(520), - [anon_sym_LT_LPAREN] = ACTIONS(522), - [anon_sym_GT_LPAREN] = ACTIONS(522), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(204), - [sym_word] = ACTIONS(514), - [anon_sym_SEMI] = ACTIONS(752), - [anon_sym_LF] = ACTIONS(752), - [anon_sym_AMP] = ACTIONS(752), - }, - [293] = { - [sym_string] = STATE(789), - [sym_simple_expansion] = STATE(789), - [sym_string_expansion] = STATE(789), - [sym_expansion] = STATE(789), - [sym_command_substitution] = STATE(789), - [sym_process_substitution] = STATE(789), - [sym__special_characters] = ACTIONS(1477), - [anon_sym_DQUOTE] = ACTIONS(106), - [anon_sym_DOLLAR] = ACTIONS(108), - [sym_raw_string] = ACTIONS(1479), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), - [anon_sym_BQUOTE] = ACTIONS(116), - [anon_sym_LT_LPAREN] = ACTIONS(118), - [anon_sym_GT_LPAREN] = ACTIONS(118), + [283] = { + [sym__assignment] = STATE(375), + [anon_sym_EQ] = ACTIONS(1431), + [anon_sym_PLUS_EQ] = ACTIONS(1431), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1477), }, - [294] = { - [aux_sym_concatenation_repeat1] = STATE(790), - [sym_file_descriptor] = ACTIONS(788), - [sym__concat] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_EQ_EQ] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(790), - [anon_sym_GT] = ACTIONS(790), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(790), - [anon_sym_AMP_GT_GT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(790), - [anon_sym_GT_AMP] = ACTIONS(790), - [anon_sym_LT_LT] = ACTIONS(790), - [anon_sym_LT_LT_DASH] = ACTIONS(790), - [anon_sym_LT_LT_LT] = ACTIONS(790), - [sym__special_characters] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(790), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), + [284] = { + [sym_variable_assignment] = STATE(107), + [sym_subscript] = STATE(283), + [sym_concatenation] = STATE(107), + [sym_string] = STATE(278), + [sym_simple_expansion] = STATE(278), + [sym_string_expansion] = STATE(278), + [sym_expansion] = STATE(278), + [sym_command_substitution] = STATE(278), + [sym_process_substitution] = STATE(278), + [aux_sym_declaration_command_repeat1] = STATE(772), + [sym_variable_name] = ACTIONS(492), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_SEMI_SEMI] = ACTIONS(722), + [anon_sym_PIPE_AMP] = ACTIONS(722), + [anon_sym_AMP_AMP] = ACTIONS(722), + [anon_sym_PIPE_PIPE] = ACTIONS(722), + [sym__special_characters] = ACTIONS(494), + [anon_sym_DQUOTE] = ACTIONS(496), + [anon_sym_DOLLAR] = ACTIONS(498), + [sym_raw_string] = ACTIONS(500), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(502), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(504), + [anon_sym_BQUOTE] = ACTIONS(506), + [anon_sym_LT_LPAREN] = ACTIONS(508), + [anon_sym_GT_LPAREN] = ACTIONS(508), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(184), + [sym_word] = ACTIONS(500), + [anon_sym_SEMI] = ACTIONS(722), + [anon_sym_LF] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(722), }, - [295] = { - [sym_file_descriptor] = ACTIONS(792), - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_EQ_TILDE] = ACTIONS(794), - [anon_sym_EQ_EQ] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(794), - [anon_sym_GT] = ACTIONS(794), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_AMP_GT] = ACTIONS(794), - [anon_sym_AMP_GT_GT] = ACTIONS(794), - [anon_sym_LT_AMP] = ACTIONS(794), - [anon_sym_GT_AMP] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(794), - [anon_sym_LT_LT_DASH] = ACTIONS(794), - [anon_sym_LT_LT_LT] = ACTIONS(794), - [sym__special_characters] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(794), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), + [285] = { + [aux_sym_concatenation_repeat1] = STATE(774), + [sym__concat] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(726), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_SEMI_SEMI] = ACTIONS(726), + [anon_sym_PIPE_AMP] = ACTIONS(726), + [anon_sym_AMP_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(726), + [sym__special_characters] = ACTIONS(726), + [anon_sym_DQUOTE] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym_raw_string] = ACTIONS(726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), + [anon_sym_BQUOTE] = ACTIONS(726), + [anon_sym_LT_LPAREN] = ACTIONS(726), + [anon_sym_GT_LPAREN] = ACTIONS(726), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(726), + [sym_word] = ACTIONS(726), + [anon_sym_SEMI] = ACTIONS(726), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(726), }, - [296] = { + [286] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(1481), + [aux_sym_string_repeat1] = STATE(776), + [anon_sym_DQUOTE] = ACTIONS(1459), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -20187,307 +19827,611 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [297] = { - [sym_file_descriptor] = ACTIONS(824), - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_EQ_TILDE] = ACTIONS(826), - [anon_sym_EQ_EQ] = ACTIONS(826), - [anon_sym_LT] = ACTIONS(826), - [anon_sym_GT] = ACTIONS(826), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_AMP_GT] = ACTIONS(826), - [anon_sym_AMP_GT_GT] = ACTIONS(826), - [anon_sym_LT_AMP] = ACTIONS(826), - [anon_sym_GT_AMP] = ACTIONS(826), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_LT_LT_DASH] = ACTIONS(826), - [anon_sym_LT_LT_LT] = ACTIONS(826), - [sym__special_characters] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(826), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), + [287] = { + [sym_string] = STATE(778), + [anon_sym_DQUOTE] = ACTIONS(1461), + [anon_sym_DOLLAR] = ACTIONS(1463), + [sym_raw_string] = ACTIONS(1465), + [anon_sym_POUND] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_AT] = ACTIONS(1463), + [anon_sym_QMARK] = ACTIONS(1463), + [anon_sym_0] = ACTIONS(1469), + [anon_sym__] = ACTIONS(1469), + }, + [288] = { + [aux_sym_concatenation_repeat1] = STATE(774), + [sym__concat] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_SEMI_SEMI] = ACTIONS(740), + [anon_sym_PIPE_AMP] = ACTIONS(740), + [anon_sym_AMP_AMP] = ACTIONS(740), + [anon_sym_PIPE_PIPE] = ACTIONS(740), + [sym__special_characters] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [sym_raw_string] = ACTIONS(740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(740), + [anon_sym_BQUOTE] = ACTIONS(740), + [anon_sym_LT_LPAREN] = ACTIONS(740), + [anon_sym_GT_LPAREN] = ACTIONS(740), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(740), + [sym_word] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_LF] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(740), + }, + [289] = { + [sym_subscript] = STATE(784), + [sym_variable_name] = ACTIONS(1471), + [anon_sym_DOLLAR] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1473), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_AT] = ACTIONS(1473), + [anon_sym_QMARK] = ACTIONS(1473), + [anon_sym_0] = ACTIONS(1479), + [anon_sym__] = ACTIONS(1479), + }, + [290] = { + [sym_for_statement] = STATE(785), + [sym_while_statement] = STATE(785), + [sym_if_statement] = STATE(785), + [sym_case_statement] = STATE(785), + [sym_function_definition] = STATE(785), + [sym_subshell] = STATE(785), + [sym_pipeline] = STATE(785), + [sym_list] = STATE(785), + [sym_command] = STATE(785), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(785), + [sym_variable_assignment] = STATE(786), + [sym_declaration_command] = STATE(785), + [sym_unset_command] = STATE(785), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(302), + }, + [291] = { + [sym_for_statement] = STATE(787), + [sym_while_statement] = STATE(787), + [sym_if_statement] = STATE(787), + [sym_case_statement] = STATE(787), + [sym_function_definition] = STATE(787), + [sym_subshell] = STATE(787), + [sym_pipeline] = STATE(787), + [sym_list] = STATE(787), + [sym_command] = STATE(787), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(787), + [sym_variable_assignment] = STATE(788), + [sym_declaration_command] = STATE(787), + [sym_unset_command] = STATE(787), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(334), + }, + [292] = { + [sym_for_statement] = STATE(789), + [sym_while_statement] = STATE(789), + [sym_if_statement] = STATE(789), + [sym_case_statement] = STATE(789), + [sym_function_definition] = STATE(789), + [sym_subshell] = STATE(789), + [sym_pipeline] = STATE(789), + [sym_list] = STATE(789), + [sym_command] = STATE(789), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(789), + [sym_variable_assignment] = STATE(790), + [sym_declaration_command] = STATE(789), + [sym_unset_command] = STATE(789), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(302), + }, + [293] = { + [sym_concatenation] = STATE(119), + [sym_string] = STATE(288), + [sym_simple_expansion] = STATE(288), + [sym_string_expansion] = STATE(288), + [sym_expansion] = STATE(288), + [sym_command_substitution] = STATE(288), + [sym_process_substitution] = STATE(288), + [aux_sym_unset_command_repeat1] = STATE(791), + [anon_sym_PIPE] = ACTIONS(754), + [anon_sym_RPAREN] = ACTIONS(754), + [anon_sym_SEMI_SEMI] = ACTIONS(754), + [anon_sym_PIPE_AMP] = ACTIONS(754), + [anon_sym_AMP_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [sym__special_characters] = ACTIONS(510), + [anon_sym_DQUOTE] = ACTIONS(512), + [anon_sym_DOLLAR] = ACTIONS(514), + [sym_raw_string] = ACTIONS(516), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(518), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(520), + [anon_sym_BQUOTE] = ACTIONS(522), + [anon_sym_LT_LPAREN] = ACTIONS(524), + [anon_sym_GT_LPAREN] = ACTIONS(524), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(204), + [sym_word] = ACTIONS(516), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_AMP] = ACTIONS(754), + }, + [294] = { + [sym_string] = STATE(792), + [sym_simple_expansion] = STATE(792), + [sym_string_expansion] = STATE(792), + [sym_expansion] = STATE(792), + [sym_command_substitution] = STATE(792), + [sym_process_substitution] = STATE(792), + [sym__special_characters] = ACTIONS(1481), + [anon_sym_DQUOTE] = ACTIONS(106), + [anon_sym_DOLLAR] = ACTIONS(108), + [sym_raw_string] = ACTIONS(1483), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), + [anon_sym_BQUOTE] = ACTIONS(116), + [anon_sym_LT_LPAREN] = ACTIONS(118), + [anon_sym_GT_LPAREN] = ACTIONS(118), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1481), + }, + [295] = { + [aux_sym_concatenation_repeat1] = STATE(793), + [sym_file_descriptor] = ACTIONS(790), + [sym__concat] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_EQ_TILDE] = ACTIONS(792), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_AMP_GT] = ACTIONS(792), + [anon_sym_AMP_GT_GT] = ACTIONS(792), + [anon_sym_LT_AMP] = ACTIONS(792), + [anon_sym_GT_AMP] = ACTIONS(792), + [anon_sym_LT_LT] = ACTIONS(792), + [anon_sym_LT_LT_DASH] = ACTIONS(792), + [anon_sym_LT_LT_LT] = ACTIONS(792), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), + }, + [296] = { + [sym_file_descriptor] = ACTIONS(794), + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [anon_sym_EQ_TILDE] = ACTIONS(796), + [anon_sym_EQ_EQ] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(796), + [anon_sym_GT_GT] = ACTIONS(796), + [anon_sym_AMP_GT] = ACTIONS(796), + [anon_sym_AMP_GT_GT] = ACTIONS(796), + [anon_sym_LT_AMP] = ACTIONS(796), + [anon_sym_GT_AMP] = ACTIONS(796), + [anon_sym_LT_LT] = ACTIONS(796), + [anon_sym_LT_LT_DASH] = ACTIONS(796), + [anon_sym_LT_LT_LT] = ACTIONS(796), + [sym__special_characters] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(796), + [sym_raw_string] = ACTIONS(796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(796), + [anon_sym_GT_LPAREN] = ACTIONS(796), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + }, + [297] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(1485), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), }, [298] = { - [sym_file_descriptor] = ACTIONS(828), - [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), - [anon_sym_EQ_TILDE] = ACTIONS(830), - [anon_sym_EQ_EQ] = ACTIONS(830), - [anon_sym_LT] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(830), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_AMP_GT] = ACTIONS(830), - [anon_sym_AMP_GT_GT] = ACTIONS(830), - [anon_sym_LT_AMP] = ACTIONS(830), - [anon_sym_GT_AMP] = ACTIONS(830), - [anon_sym_LT_LT] = ACTIONS(830), - [anon_sym_LT_LT_DASH] = ACTIONS(830), - [anon_sym_LT_LT_LT] = ACTIONS(830), - [sym__special_characters] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(830), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym_file_descriptor] = ACTIONS(826), + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_EQ_TILDE] = ACTIONS(828), + [anon_sym_EQ_EQ] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(828), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(828), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [anon_sym_LT_LT] = ACTIONS(828), + [anon_sym_LT_LT_DASH] = ACTIONS(828), + [anon_sym_LT_LT_LT] = ACTIONS(828), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(828), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), + [sym_word] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), }, [299] = { - [sym_file_descriptor] = ACTIONS(832), - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_EQ_TILDE] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_AMP_GT] = ACTIONS(834), - [anon_sym_AMP_GT_GT] = ACTIONS(834), - [anon_sym_LT_AMP] = ACTIONS(834), - [anon_sym_GT_AMP] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_LT_LT_DASH] = ACTIONS(834), - [anon_sym_LT_LT_LT] = ACTIONS(834), - [sym__special_characters] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(834), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_file_descriptor] = ACTIONS(830), + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_RPAREN] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_EQ_TILDE] = ACTIONS(832), + [anon_sym_EQ_EQ] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_AMP_GT] = ACTIONS(832), + [anon_sym_AMP_GT_GT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(832), + [anon_sym_GT_AMP] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(832), + [anon_sym_LT_LT_DASH] = ACTIONS(832), + [anon_sym_LT_LT_LT] = ACTIONS(832), + [sym__special_characters] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), + [sym_word] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), }, [300] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(1483), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [anon_sym_EQ_TILDE] = ACTIONS(836), + [anon_sym_EQ_EQ] = ACTIONS(836), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_AMP_GT] = ACTIONS(836), + [anon_sym_AMP_GT_GT] = ACTIONS(836), + [anon_sym_LT_AMP] = ACTIONS(836), + [anon_sym_GT_AMP] = ACTIONS(836), + [anon_sym_LT_LT] = ACTIONS(836), + [anon_sym_LT_LT_DASH] = ACTIONS(836), + [anon_sym_LT_LT_LT] = ACTIONS(836), + [sym__special_characters] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [sym_raw_string] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LT_LPAREN] = ACTIONS(836), + [anon_sym_GT_LPAREN] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), }, [301] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(795), - [anon_sym_RBRACE] = ACTIONS(1485), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1487), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(1487), + [sym_comment] = ACTIONS(56), }, [302] = { - [sym_subscript] = STATE(799), - [sym_variable_name] = ACTIONS(1489), - [anon_sym_DOLLAR] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1493), - [anon_sym_STAR] = ACTIONS(1491), - [anon_sym_AT] = ACTIONS(1491), - [anon_sym_QMARK] = ACTIONS(1491), - [anon_sym_0] = ACTIONS(1495), - [anon_sym__] = ACTIONS(1495), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(798), + [anon_sym_RBRACE] = ACTIONS(1489), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1491), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [303] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(802), - [anon_sym_RBRACE] = ACTIONS(1497), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1499), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_subscript] = STATE(802), + [sym_variable_name] = ACTIONS(1493), + [anon_sym_DOLLAR] = ACTIONS(1495), + [anon_sym_DASH] = ACTIONS(1495), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1497), + [anon_sym_STAR] = ACTIONS(1495), + [anon_sym_AT] = ACTIONS(1495), + [anon_sym_QMARK] = ACTIONS(1495), + [anon_sym_0] = ACTIONS(1499), + [anon_sym__] = ACTIONS(1499), }, [304] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), [aux_sym_expansion_repeat1] = STATE(805), [anon_sym_RBRACE] = ACTIONS(1501), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), [aux_sym_SLASH] = ACTIONS(1503), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [305] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1505), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(808), + [anon_sym_RBRACE] = ACTIONS(1505), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1507), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [306] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1505), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1509), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [307] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(1505), - [sym_comment] = ACTIONS(56), - }, - [308] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(1505), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [309] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1507), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [310] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1507), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1509), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -20507,137 +20451,94 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [311] = { - [anon_sym_RPAREN] = ACTIONS(1509), + [308] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1509), [sym_comment] = ACTIONS(56), }, + [309] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(1509), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [310] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1511), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [311] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1511), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, [312] = { - [sym_for_statement] = STATE(601), - [sym_while_statement] = STATE(601), - [sym_if_statement] = STATE(601), - [sym_case_statement] = STATE(601), - [sym_function_definition] = STATE(601), - [sym_subshell] = STATE(601), - [sym_pipeline] = STATE(601), - [sym_list] = STATE(601), - [sym_command] = STATE(601), - [sym_command_name] = STATE(70), - [sym_bracket_command] = STATE(601), - [sym_variable_assignment] = STATE(602), - [sym_declaration_command] = STATE(601), - [sym_unset_command] = STATE(601), - [sym_subscript] = STATE(72), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(63), - [sym_simple_expansion] = STATE(63), - [sym_string_expansion] = STATE(63), - [sym_expansion] = STATE(63), - [sym_command_substitution] = STATE(63), - [sym_process_substitution] = STATE(63), - [aux_sym_command_repeat1] = STATE(74), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(90), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(92), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(94), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(96), - [anon_sym_LBRACK_LBRACK] = ACTIONS(98), - [anon_sym_declare] = ACTIONS(100), - [anon_sym_typeset] = ACTIONS(100), - [anon_sym_export] = ACTIONS(100), - [anon_sym_readonly] = ACTIONS(100), - [anon_sym_local] = ACTIONS(100), - [anon_sym_unset] = ACTIONS(102), - [anon_sym_unsetenv] = ACTIONS(102), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(104), - [anon_sym_DQUOTE] = ACTIONS(106), - [anon_sym_DOLLAR] = ACTIONS(108), - [sym_raw_string] = ACTIONS(110), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), - [anon_sym_BQUOTE] = ACTIONS(116), - [anon_sym_LT_LPAREN] = ACTIONS(118), - [anon_sym_GT_LPAREN] = ACTIONS(118), + [anon_sym_RPAREN] = ACTIONS(1513), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(120), }, [313] = { - [anon_sym_esac] = ACTIONS(1511), - [anon_sym_PIPE] = ACTIONS(1511), - [anon_sym_RPAREN] = ACTIONS(1511), - [anon_sym_SEMI_SEMI] = ACTIONS(1511), - [anon_sym_PIPE_AMP] = ACTIONS(1511), - [anon_sym_AMP_AMP] = ACTIONS(1511), - [anon_sym_PIPE_PIPE] = ACTIONS(1511), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1511), - [anon_sym_LF] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(1511), - }, - [314] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(1513), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(1102), - [sym_raw_string] = ACTIONS(1100), - [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_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1104), - }, - [315] = { - [sym_for_statement] = STATE(810), - [sym_while_statement] = STATE(810), - [sym_if_statement] = STATE(810), - [sym_case_statement] = STATE(810), - [sym_function_definition] = STATE(810), - [sym_subshell] = STATE(810), - [sym_pipeline] = STATE(810), - [sym_list] = STATE(810), - [sym_command] = STATE(810), + [sym_for_statement] = STATE(602), + [sym_while_statement] = STATE(602), + [sym_if_statement] = STATE(602), + [sym_case_statement] = STATE(602), + [sym_function_definition] = STATE(602), + [sym_subshell] = STATE(602), + [sym_pipeline] = STATE(602), + [sym_list] = STATE(602), + [sym_command] = STATE(602), [sym_command_name] = STATE(70), - [sym_bracket_command] = STATE(810), - [sym_variable_assignment] = STATE(811), - [sym_declaration_command] = STATE(810), - [sym_unset_command] = STATE(810), + [sym_bracket_command] = STATE(602), + [sym_variable_assignment] = STATE(603), + [sym_declaration_command] = STATE(602), + [sym_unset_command] = STATE(602), [sym_subscript] = STATE(72), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -20684,246 +20585,358 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(120), }, - [316] = { - [anon_sym_LT] = ACTIONS(1515), - [anon_sym_GT] = ACTIONS(1515), - [anon_sym_GT_GT] = ACTIONS(1517), - [anon_sym_AMP_GT] = ACTIONS(1515), - [anon_sym_AMP_GT_GT] = ACTIONS(1517), - [anon_sym_LT_AMP] = ACTIONS(1517), - [anon_sym_GT_AMP] = ACTIONS(1517), + [314] = { + [anon_sym_esac] = ACTIONS(1515), + [anon_sym_PIPE] = ACTIONS(1515), + [anon_sym_RPAREN] = ACTIONS(1515), + [anon_sym_SEMI_SEMI] = ACTIONS(1515), + [anon_sym_PIPE_AMP] = ACTIONS(1515), + [anon_sym_AMP_AMP] = ACTIONS(1515), + [anon_sym_PIPE_PIPE] = ACTIONS(1515), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1515), + [anon_sym_LF] = ACTIONS(1515), + [anon_sym_AMP] = ACTIONS(1515), + }, + [315] = { + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_RPAREN] = ACTIONS(1517), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1104), + [sym_raw_string] = ACTIONS(1102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), + [anon_sym_BQUOTE] = ACTIONS(1102), + [anon_sym_LT_LPAREN] = ACTIONS(1102), + [anon_sym_GT_LPAREN] = ACTIONS(1102), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1106), + }, + [316] = { + [sym_for_statement] = STATE(813), + [sym_while_statement] = STATE(813), + [sym_if_statement] = STATE(813), + [sym_case_statement] = STATE(813), + [sym_function_definition] = STATE(813), + [sym_subshell] = STATE(813), + [sym_pipeline] = STATE(813), + [sym_list] = STATE(813), + [sym_command] = STATE(813), + [sym_command_name] = STATE(70), + [sym_bracket_command] = STATE(813), + [sym_variable_assignment] = STATE(814), + [sym_declaration_command] = STATE(813), + [sym_unset_command] = STATE(813), + [sym_subscript] = STATE(72), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(63), + [sym_simple_expansion] = STATE(63), + [sym_string_expansion] = STATE(63), + [sym_expansion] = STATE(63), + [sym_command_substitution] = STATE(63), + [sym_process_substitution] = STATE(63), + [aux_sym_command_repeat1] = STATE(74), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(90), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(92), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(94), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(96), + [anon_sym_LBRACK_LBRACK] = ACTIONS(98), + [anon_sym_declare] = ACTIONS(100), + [anon_sym_typeset] = ACTIONS(100), + [anon_sym_export] = ACTIONS(100), + [anon_sym_readonly] = ACTIONS(100), + [anon_sym_local] = ACTIONS(100), + [anon_sym_unset] = ACTIONS(102), + [anon_sym_unsetenv] = ACTIONS(102), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(104), + [anon_sym_DQUOTE] = ACTIONS(106), + [anon_sym_DOLLAR] = ACTIONS(108), + [sym_raw_string] = ACTIONS(110), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(112), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(114), + [anon_sym_BQUOTE] = ACTIONS(116), + [anon_sym_LT_LPAREN] = ACTIONS(118), + [anon_sym_GT_LPAREN] = ACTIONS(118), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(120), }, [317] = { - [sym_concatenation] = STATE(608), - [sym_string] = STATE(814), - [sym_simple_expansion] = STATE(814), - [sym_string_expansion] = STATE(814), - [sym_expansion] = STATE(814), - [sym_command_substitution] = STATE(814), - [sym_process_substitution] = STATE(814), - [sym__special_characters] = ACTIONS(1519), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_DOLLAR] = ACTIONS(568), - [sym_raw_string] = ACTIONS(1521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(574), - [anon_sym_BQUOTE] = ACTIONS(576), - [anon_sym_LT_LPAREN] = ACTIONS(578), - [anon_sym_GT_LPAREN] = ACTIONS(578), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1521), - [sym_regex] = ACTIONS(1114), + [anon_sym_LT] = ACTIONS(1519), + [anon_sym_GT] = ACTIONS(1519), + [anon_sym_GT_GT] = ACTIONS(1521), + [anon_sym_AMP_GT] = ACTIONS(1519), + [anon_sym_AMP_GT_GT] = ACTIONS(1521), + [anon_sym_LT_AMP] = ACTIONS(1521), + [anon_sym_GT_AMP] = ACTIONS(1521), + [sym_comment] = ACTIONS(56), }, [318] = { - [sym_concatenation] = STATE(617), - [sym_string] = STATE(818), - [sym_simple_expansion] = STATE(818), - [sym_string_expansion] = STATE(818), - [sym_expansion] = STATE(818), - [sym_command_substitution] = STATE(818), - [sym_process_substitution] = STATE(818), + [sym_concatenation] = STATE(609), + [sym_string] = STATE(817), + [sym_simple_expansion] = STATE(817), + [sym_string_expansion] = STATE(817), + [sym_expansion] = STATE(817), + [sym_command_substitution] = STATE(817), + [sym_process_substitution] = STATE(817), [sym__special_characters] = ACTIONS(1523), - [anon_sym_DQUOTE] = ACTIONS(1525), - [anon_sym_DOLLAR] = ACTIONS(1527), - [sym_raw_string] = ACTIONS(1529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1531), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1533), - [anon_sym_BQUOTE] = ACTIONS(1535), - [anon_sym_LT_LPAREN] = ACTIONS(1537), - [anon_sym_GT_LPAREN] = ACTIONS(1537), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(570), + [sym_raw_string] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_LT_LPAREN] = ACTIONS(580), + [anon_sym_GT_LPAREN] = ACTIONS(580), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1525), + [sym_regex] = ACTIONS(1116), }, [319] = { - [sym_concatenation] = STATE(623), - [sym_string] = STATE(824), - [sym_simple_expansion] = STATE(824), - [sym_string_expansion] = STATE(824), - [sym_expansion] = STATE(824), - [sym_command_substitution] = STATE(824), - [sym_process_substitution] = STATE(824), - [sym__special_characters] = ACTIONS(1541), - [anon_sym_DQUOTE] = ACTIONS(1525), - [anon_sym_DOLLAR] = ACTIONS(1527), - [sym_raw_string] = ACTIONS(1543), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1531), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1533), - [anon_sym_BQUOTE] = ACTIONS(1535), - [anon_sym_LT_LPAREN] = ACTIONS(1537), - [anon_sym_GT_LPAREN] = ACTIONS(1537), + [sym_concatenation] = STATE(618), + [sym_string] = STATE(821), + [sym_simple_expansion] = STATE(821), + [sym_string_expansion] = STATE(821), + [sym_expansion] = STATE(821), + [sym_command_substitution] = STATE(821), + [sym_process_substitution] = STATE(821), + [sym__special_characters] = ACTIONS(1527), + [anon_sym_DQUOTE] = ACTIONS(1529), + [anon_sym_DOLLAR] = ACTIONS(1531), + [sym_raw_string] = ACTIONS(1533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1535), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1537), + [anon_sym_BQUOTE] = ACTIONS(1539), + [anon_sym_LT_LPAREN] = ACTIONS(1541), + [anon_sym_GT_LPAREN] = ACTIONS(1541), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1545), + [sym_word] = ACTIONS(1543), }, [320] = { - [aux_sym_concatenation_repeat1] = STATE(294), - [sym_file_descriptor] = ACTIONS(606), - [sym__concat] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_RPAREN] = ACTIONS(608), - [anon_sym_SEMI_SEMI] = ACTIONS(608), - [anon_sym_PIPE_AMP] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(608), - [anon_sym_PIPE_PIPE] = ACTIONS(608), - [anon_sym_EQ_TILDE] = ACTIONS(608), - [anon_sym_EQ_EQ] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(608), - [anon_sym_AMP_GT] = ACTIONS(608), - [anon_sym_AMP_GT_GT] = ACTIONS(608), - [anon_sym_LT_AMP] = ACTIONS(608), - [anon_sym_GT_AMP] = ACTIONS(608), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_LT_LT_DASH] = ACTIONS(608), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [sym__special_characters] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [anon_sym_DOLLAR] = ACTIONS(608), - [sym_raw_string] = ACTIONS(608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(608), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(608), - [anon_sym_SEMI] = ACTIONS(608), - [anon_sym_LF] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), + [sym_concatenation] = STATE(624), + [sym_string] = STATE(827), + [sym_simple_expansion] = STATE(827), + [sym_string_expansion] = STATE(827), + [sym_expansion] = STATE(827), + [sym_command_substitution] = STATE(827), + [sym_process_substitution] = STATE(827), + [sym__special_characters] = ACTIONS(1545), + [anon_sym_DQUOTE] = ACTIONS(1529), + [anon_sym_DOLLAR] = ACTIONS(1531), + [sym_raw_string] = ACTIONS(1547), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1535), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1537), + [anon_sym_BQUOTE] = ACTIONS(1539), + [anon_sym_LT_LPAREN] = ACTIONS(1541), + [anon_sym_GT_LPAREN] = ACTIONS(1541), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1549), }, [321] = { - [aux_sym_concatenation_repeat1] = STATE(294), - [sym_file_descriptor] = ACTIONS(622), - [sym__concat] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(624), - [anon_sym_RPAREN] = ACTIONS(624), - [anon_sym_SEMI_SEMI] = ACTIONS(624), - [anon_sym_PIPE_AMP] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_EQ_TILDE] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(624), - [anon_sym_GT] = ACTIONS(624), - [anon_sym_GT_GT] = ACTIONS(624), - [anon_sym_AMP_GT] = ACTIONS(624), - [anon_sym_AMP_GT_GT] = ACTIONS(624), - [anon_sym_LT_AMP] = ACTIONS(624), - [anon_sym_GT_AMP] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(624), - [anon_sym_LT_LT_DASH] = ACTIONS(624), - [anon_sym_LT_LT_LT] = ACTIONS(624), - [sym__special_characters] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(624), - [sym_raw_string] = ACTIONS(624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(624), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), + [aux_sym_concatenation_repeat1] = STATE(295), + [sym_file_descriptor] = ACTIONS(608), + [sym__concat] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_RPAREN] = ACTIONS(610), + [anon_sym_SEMI_SEMI] = ACTIONS(610), + [anon_sym_PIPE_AMP] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(610), + [anon_sym_EQ_TILDE] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_AMP_GT] = ACTIONS(610), + [anon_sym_AMP_GT_GT] = ACTIONS(610), + [anon_sym_LT_AMP] = ACTIONS(610), + [anon_sym_GT_AMP] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_LT_LT_DASH] = ACTIONS(610), + [anon_sym_LT_LT_LT] = ACTIONS(610), + [sym__special_characters] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(610), + [anon_sym_DOLLAR] = ACTIONS(610), + [sym_raw_string] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(610), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(610), + [anon_sym_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(610), + [anon_sym_GT_LPAREN] = ACTIONS(610), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(624), - [anon_sym_SEMI] = ACTIONS(624), - [anon_sym_LF] = ACTIONS(624), - [anon_sym_AMP] = ACTIONS(624), + [sym_word] = ACTIONS(610), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_LF] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(610), }, [322] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(825), - [sym_file_descriptor] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_RPAREN] = ACTIONS(1148), - [anon_sym_SEMI_SEMI] = ACTIONS(1148), - [anon_sym_PIPE_AMP] = ACTIONS(1148), - [anon_sym_AMP_AMP] = ACTIONS(1148), - [anon_sym_PIPE_PIPE] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(560), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(562), + [aux_sym_concatenation_repeat1] = STATE(295), + [sym_file_descriptor] = ACTIONS(624), + [sym__concat] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_RPAREN] = ACTIONS(626), + [anon_sym_SEMI_SEMI] = ACTIONS(626), + [anon_sym_PIPE_AMP] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(626), + [anon_sym_PIPE_PIPE] = ACTIONS(626), + [anon_sym_EQ_TILDE] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(626), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_LT_LT_DASH] = ACTIONS(626), + [anon_sym_LT_LT_LT] = ACTIONS(626), + [sym__special_characters] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(626), + [sym_raw_string] = ACTIONS(626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(626), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_LT_LPAREN] = ACTIONS(626), + [anon_sym_GT_LPAREN] = ACTIONS(626), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), + [sym_word] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_LF] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), }, [323] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(208), - [sym_string] = STATE(321), - [sym_simple_expansion] = STATE(321), - [sym_string_expansion] = STATE(321), - [sym_expansion] = STATE(321), - [sym_command_substitution] = STATE(321), - [sym_process_substitution] = STATE(321), - [aux_sym_while_statement_repeat1] = STATE(826), - [aux_sym_command_repeat2] = STATE(827), - [sym_file_descriptor] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_RPAREN] = ACTIONS(1148), - [anon_sym_SEMI_SEMI] = ACTIONS(1148), - [anon_sym_PIPE_AMP] = ACTIONS(1148), - [anon_sym_AMP_AMP] = ACTIONS(1148), - [anon_sym_PIPE_PIPE] = ACTIONS(1148), - [anon_sym_EQ_TILDE] = ACTIONS(558), - [anon_sym_EQ_EQ] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(560), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), + [aux_sym_while_statement_repeat1] = STATE(828), + [sym_file_descriptor] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(1150), + [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_SEMI_SEMI] = ACTIONS(1150), + [anon_sym_PIPE_AMP] = ACTIONS(1150), + [anon_sym_AMP_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1150), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_AMP_GT] = ACTIONS(562), + [anon_sym_AMP_GT_GT] = ACTIONS(562), + [anon_sym_LT_AMP] = ACTIONS(562), + [anon_sym_GT_AMP] = ACTIONS(562), [anon_sym_LT_LT] = ACTIONS(360), [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(562), - [sym__special_characters] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_DOLLAR] = ACTIONS(568), - [sym_raw_string] = ACTIONS(570), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(574), - [anon_sym_BQUOTE] = ACTIONS(576), - [anon_sym_LT_LPAREN] = ACTIONS(578), - [anon_sym_GT_LPAREN] = ACTIONS(578), + [anon_sym_LT_LT_LT] = ACTIONS(564), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(570), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_LF] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1150), }, [324] = { - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(1547), - [anon_sym_SEMI_SEMI] = ACTIONS(1549), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [sym_concatenation] = STATE(208), + [sym_string] = STATE(322), + [sym_simple_expansion] = STATE(322), + [sym_string_expansion] = STATE(322), + [sym_expansion] = STATE(322), + [sym_command_substitution] = STATE(322), + [sym_process_substitution] = STATE(322), + [aux_sym_while_statement_repeat1] = STATE(829), + [aux_sym_command_repeat2] = STATE(830), + [sym_file_descriptor] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(1150), + [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_SEMI_SEMI] = ACTIONS(1150), + [anon_sym_PIPE_AMP] = ACTIONS(1150), + [anon_sym_AMP_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1150), + [anon_sym_EQ_TILDE] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_AMP_GT] = ACTIONS(562), + [anon_sym_AMP_GT_GT] = ACTIONS(562), + [anon_sym_LT_AMP] = ACTIONS(562), + [anon_sym_GT_AMP] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(564), + [sym__special_characters] = ACTIONS(566), + [anon_sym_DQUOTE] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(570), + [sym_raw_string] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_LT_LPAREN] = ACTIONS(580), + [anon_sym_GT_LPAREN] = ACTIONS(580), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_LF] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), + [sym_word] = ACTIONS(572), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_LF] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1150), }, [325] = { + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_SEMI_SEMI] = ACTIONS(1553), + [anon_sym_PIPE_AMP] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(556), + [anon_sym_PIPE_PIPE] = ACTIONS(556), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1553), + }, + [326] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(1547), - [anon_sym_SEMI_SEMI] = ACTIONS(1549), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_RPAREN] = ACTIONS(1551), + [anon_sym_SEMI_SEMI] = ACTIONS(1553), + [anon_sym_PIPE_AMP] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(556), + [anon_sym_PIPE_PIPE] = ACTIONS(556), [anon_sym_LT] = ACTIONS(382), [anon_sym_GT] = ACTIONS(382), [anon_sym_GT_GT] = ACTIONS(382), @@ -20942,11 +20955,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(1549), - [anon_sym_LF] = ACTIONS(1549), - [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_SEMI] = ACTIONS(1553), + [anon_sym_LF] = ACTIONS(1553), + [anon_sym_AMP] = ACTIONS(1553), }, - [326] = { + [327] = { [sym__terminated_statement] = STATE(25), [sym_for_statement] = STATE(26), [sym_while_statement] = STATE(26), @@ -20971,203 +20984,203 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(326), + [aux_sym_program_repeat1] = STATE(327), [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1150), - [sym_variable_name] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_case] = ACTIONS(1167), - [anon_sym_function] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_typeset] = ACTIONS(1182), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_local] = ACTIONS(1182), - [anon_sym_unset] = ACTIONS(1185), - [anon_sym_unsetenv] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1191), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1191), - [anon_sym_LT_AMP] = ACTIONS(1191), - [anon_sym_GT_AMP] = ACTIONS(1191), - [sym__special_characters] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_raw_string] = ACTIONS(1203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), - [anon_sym_BQUOTE] = ACTIONS(1212), - [anon_sym_LT_LPAREN] = ACTIONS(1215), - [anon_sym_GT_LPAREN] = ACTIONS(1215), + [sym_file_descriptor] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_function] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1184), + [anon_sym_typeset] = ACTIONS(1184), + [anon_sym_export] = ACTIONS(1184), + [anon_sym_readonly] = ACTIONS(1184), + [anon_sym_local] = ACTIONS(1184), + [anon_sym_unset] = ACTIONS(1187), + [anon_sym_unsetenv] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_AMP_GT] = ACTIONS(1190), + [anon_sym_AMP_GT_GT] = ACTIONS(1193), + [anon_sym_LT_AMP] = ACTIONS(1193), + [anon_sym_GT_AMP] = ACTIONS(1193), + [sym__special_characters] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(1202), + [sym_raw_string] = ACTIONS(1205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(1214), + [anon_sym_LT_LPAREN] = ACTIONS(1217), + [anon_sym_GT_LPAREN] = ACTIONS(1217), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1218), + [sym_word] = ACTIONS(1220), }, - [327] = { + [328] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), [sym_concatenation] = STATE(208), - [sym_string] = STATE(321), - [sym_simple_expansion] = STATE(321), - [sym_string_expansion] = STATE(321), - [sym_expansion] = STATE(321), - [sym_command_substitution] = STATE(321), - [sym_process_substitution] = STATE(321), - [aux_sym_while_statement_repeat1] = STATE(826), - [aux_sym_command_repeat2] = STATE(829), - [sym_file_descriptor] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_RPAREN] = ACTIONS(1148), - [anon_sym_SEMI_SEMI] = ACTIONS(1148), - [anon_sym_PIPE_AMP] = ACTIONS(1148), - [anon_sym_AMP_AMP] = ACTIONS(1148), - [anon_sym_PIPE_PIPE] = ACTIONS(1148), - [anon_sym_EQ_TILDE] = ACTIONS(558), - [anon_sym_EQ_EQ] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(560), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), + [sym_string] = STATE(322), + [sym_simple_expansion] = STATE(322), + [sym_string_expansion] = STATE(322), + [sym_expansion] = STATE(322), + [sym_command_substitution] = STATE(322), + [sym_process_substitution] = STATE(322), + [aux_sym_while_statement_repeat1] = STATE(829), + [aux_sym_command_repeat2] = STATE(832), + [sym_file_descriptor] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(1150), + [anon_sym_RPAREN] = ACTIONS(1150), + [anon_sym_SEMI_SEMI] = ACTIONS(1150), + [anon_sym_PIPE_AMP] = ACTIONS(1150), + [anon_sym_AMP_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1150), + [anon_sym_EQ_TILDE] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_AMP_GT] = ACTIONS(562), + [anon_sym_AMP_GT_GT] = ACTIONS(562), + [anon_sym_LT_AMP] = ACTIONS(562), + [anon_sym_GT_AMP] = ACTIONS(562), [anon_sym_LT_LT] = ACTIONS(360), [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(562), - [sym__special_characters] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_DOLLAR] = ACTIONS(568), - [sym_raw_string] = ACTIONS(570), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(574), - [anon_sym_BQUOTE] = ACTIONS(576), - [anon_sym_LT_LPAREN] = ACTIONS(578), - [anon_sym_GT_LPAREN] = ACTIONS(578), + [anon_sym_LT_LT_LT] = ACTIONS(564), + [sym__special_characters] = ACTIONS(566), + [anon_sym_DQUOTE] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(570), + [sym_raw_string] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_LT_LPAREN] = ACTIONS(580), + [anon_sym_GT_LPAREN] = ACTIONS(580), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(570), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), - }, - [328] = { - [aux_sym_concatenation_repeat1] = STATE(332), - [sym__concat] = ACTIONS(602), - [anon_sym_EQ_TILDE] = ACTIONS(1551), - [anon_sym_EQ_EQ] = ACTIONS(1551), - [anon_sym_RBRACK] = ACTIONS(1553), - [sym__special_characters] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(1551), - [sym_raw_string] = ACTIONS(1553), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1553), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1553), - [anon_sym_BQUOTE] = ACTIONS(1553), - [anon_sym_LT_LPAREN] = ACTIONS(1553), - [anon_sym_GT_LPAREN] = ACTIONS(1553), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1555), + [sym_word] = ACTIONS(572), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_LF] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1150), }, [329] = { - [aux_sym_concatenation_repeat1] = STATE(332), - [sym__concat] = ACTIONS(602), - [anon_sym_EQ_TILDE] = ACTIONS(1557), - [anon_sym_EQ_EQ] = ACTIONS(1557), - [anon_sym_RBRACK] = ACTIONS(1559), - [sym__special_characters] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1557), - [sym_raw_string] = ACTIONS(1559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), - [anon_sym_BQUOTE] = ACTIONS(1559), - [anon_sym_LT_LPAREN] = ACTIONS(1559), - [anon_sym_GT_LPAREN] = ACTIONS(1559), + [aux_sym_concatenation_repeat1] = STATE(333), + [sym__concat] = ACTIONS(604), + [anon_sym_EQ_TILDE] = ACTIONS(1555), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_RBRACK] = ACTIONS(1557), + [sym__special_characters] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(1555), + [sym_raw_string] = ACTIONS(1557), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1557), + [anon_sym_BQUOTE] = ACTIONS(1557), + [anon_sym_LT_LPAREN] = ACTIONS(1557), + [anon_sym_GT_LPAREN] = ACTIONS(1557), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1561), + [sym_word] = ACTIONS(1559), }, [330] = { - [anon_sym_EQ_TILDE] = ACTIONS(1557), - [anon_sym_EQ_EQ] = ACTIONS(1557), - [anon_sym_RBRACK] = ACTIONS(1559), - [sym__special_characters] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1557), - [sym_raw_string] = ACTIONS(1559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), - [anon_sym_BQUOTE] = ACTIONS(1559), - [anon_sym_LT_LPAREN] = ACTIONS(1559), - [anon_sym_GT_LPAREN] = ACTIONS(1559), + [aux_sym_concatenation_repeat1] = STATE(333), + [sym__concat] = ACTIONS(604), + [anon_sym_EQ_TILDE] = ACTIONS(1561), + [anon_sym_EQ_EQ] = ACTIONS(1561), + [anon_sym_RBRACK] = ACTIONS(1563), + [sym__special_characters] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_DOLLAR] = ACTIONS(1561), + [sym_raw_string] = ACTIONS(1563), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [anon_sym_LT_LPAREN] = ACTIONS(1563), + [anon_sym_GT_LPAREN] = ACTIONS(1563), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1561), + [sym_word] = ACTIONS(1565), }, [331] = { - [sym_string] = STATE(830), - [sym_simple_expansion] = STATE(830), - [sym_string_expansion] = STATE(830), - [sym_expansion] = STATE(830), - [sym_command_substitution] = STATE(830), - [sym_process_substitution] = STATE(830), - [sym__special_characters] = ACTIONS(1563), + [anon_sym_EQ_TILDE] = ACTIONS(1561), + [anon_sym_EQ_EQ] = ACTIONS(1561), + [anon_sym_RBRACK] = ACTIONS(1563), + [sym__special_characters] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_DOLLAR] = ACTIONS(1561), + [sym_raw_string] = ACTIONS(1563), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [anon_sym_LT_LPAREN] = ACTIONS(1563), + [anon_sym_GT_LPAREN] = ACTIONS(1563), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1565), + }, + [332] = { + [sym_string] = STATE(833), + [sym_simple_expansion] = STATE(833), + [sym_string_expansion] = STATE(833), + [sym_expansion] = STATE(833), + [sym_command_substitution] = STATE(833), + [sym_process_substitution] = STATE(833), + [sym__special_characters] = ACTIONS(1567), [anon_sym_DQUOTE] = ACTIONS(126), [anon_sym_DOLLAR] = ACTIONS(128), - [sym_raw_string] = ACTIONS(1565), + [sym_raw_string] = ACTIONS(1569), [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), [anon_sym_BQUOTE] = ACTIONS(136), [anon_sym_LT_LPAREN] = ACTIONS(138), [anon_sym_GT_LPAREN] = ACTIONS(138), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1563), - }, - [332] = { - [aux_sym_concatenation_repeat1] = STATE(831), - [sym__concat] = ACTIONS(602), - [anon_sym_EQ_TILDE] = ACTIONS(1567), - [anon_sym_EQ_EQ] = ACTIONS(1567), - [anon_sym_RBRACK] = ACTIONS(788), - [sym__special_characters] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(1567), - [sym_raw_string] = ACTIONS(788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LT_LPAREN] = ACTIONS(788), - [anon_sym_GT_LPAREN] = ACTIONS(788), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(790), + [sym_word] = ACTIONS(1567), }, [333] = { - [sym__concat] = ACTIONS(792), - [anon_sym_EQ_TILDE] = ACTIONS(1569), - [anon_sym_EQ_EQ] = ACTIONS(1569), - [anon_sym_RBRACK] = ACTIONS(792), - [sym__special_characters] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(1569), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), + [aux_sym_concatenation_repeat1] = STATE(834), + [sym__concat] = ACTIONS(604), + [anon_sym_EQ_TILDE] = ACTIONS(1571), + [anon_sym_EQ_EQ] = ACTIONS(1571), + [anon_sym_RBRACK] = ACTIONS(790), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(1571), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(794), + [sym_word] = ACTIONS(792), }, [334] = { + [sym__concat] = ACTIONS(794), + [anon_sym_EQ_TILDE] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1573), + [anon_sym_RBRACK] = ACTIONS(794), + [sym__special_characters] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(796), + }, + [335] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(1571), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(1575), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -21175,250 +21188,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [335] = { - [sym__concat] = ACTIONS(824), - [anon_sym_EQ_TILDE] = ACTIONS(1573), - [anon_sym_EQ_EQ] = ACTIONS(1573), - [anon_sym_RBRACK] = ACTIONS(824), - [sym__special_characters] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_LT_LPAREN] = ACTIONS(824), - [anon_sym_GT_LPAREN] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(826), - }, [336] = { - [sym__concat] = ACTIONS(828), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_RBRACK] = ACTIONS(828), - [sym__special_characters] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1575), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(830), - }, - [337] = { - [sym__concat] = ACTIONS(832), + [sym__concat] = ACTIONS(826), [anon_sym_EQ_TILDE] = ACTIONS(1577), [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_RBRACK] = ACTIONS(832), - [sym__special_characters] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_RBRACK] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(826), [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(834), + [sym_word] = ACTIONS(828), + }, + [337] = { + [sym__concat] = ACTIONS(830), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_RBRACK] = ACTIONS(830), + [sym__special_characters] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(1579), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(832), }, [338] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(1579), + [sym__concat] = ACTIONS(834), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_RBRACK] = ACTIONS(834), + [sym__special_characters] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1581), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(836), }, [339] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(836), - [anon_sym_RBRACE] = ACTIONS(1581), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1583), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(1583), + [sym_comment] = ACTIONS(56), }, [340] = { - [sym_subscript] = STATE(840), - [sym_variable_name] = ACTIONS(1585), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_AT] = ACTIONS(1587), - [anon_sym_QMARK] = ACTIONS(1587), - [anon_sym_0] = ACTIONS(1591), - [anon_sym__] = ACTIONS(1591), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(839), + [anon_sym_RBRACE] = ACTIONS(1585), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1587), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [341] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(843), - [anon_sym_RBRACE] = ACTIONS(1593), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1595), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_subscript] = STATE(843), + [sym_variable_name] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1591), + [anon_sym_DASH] = ACTIONS(1591), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1593), + [anon_sym_STAR] = ACTIONS(1591), + [anon_sym_AT] = ACTIONS(1591), + [anon_sym_QMARK] = ACTIONS(1591), + [anon_sym_0] = ACTIONS(1595), + [anon_sym__] = ACTIONS(1595), }, [342] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), [aux_sym_expansion_repeat1] = STATE(846), [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), [aux_sym_SLASH] = ACTIONS(1599), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [343] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1601), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(849), + [anon_sym_RBRACE] = ACTIONS(1601), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1603), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [344] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1601), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1605), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [345] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(1601), - [sym_comment] = ACTIONS(56), - }, - [346] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(1601), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [347] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1603), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [348] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1603), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1605), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -21438,17 +21382,86 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, + [346] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1605), + [sym_comment] = ACTIONS(56), + }, + [347] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(1605), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [348] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, [349] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [350] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(849), + [aux_sym_while_statement_repeat1] = STATE(852), [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(1605), - [anon_sym_SEMI_SEMI] = ACTIONS(1605), - [anon_sym_PIPE_AMP] = ACTIONS(1605), - [anon_sym_AMP_AMP] = ACTIONS(1605), - [anon_sym_PIPE_PIPE] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_SEMI_SEMI] = ACTIONS(1609), + [anon_sym_PIPE_AMP] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1609), + [anon_sym_PIPE_PIPE] = ACTIONS(1609), [anon_sym_LT] = ACTIONS(358), [anon_sym_GT] = ACTIONS(358), [anon_sym_GT_GT] = ACTIONS(358), @@ -21460,11 +21473,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(360), [anon_sym_LT_LT_LT] = ACTIONS(362), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1605), - [anon_sym_LF] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_LF] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1609), }, - [350] = { + [351] = { [sym_concatenation] = STATE(84), [sym_string] = STATE(79), [sym_simple_expansion] = STATE(79), @@ -21472,134 +21485,134 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(79), [sym_command_substitution] = STATE(79), [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(350), - [anon_sym_EQ_TILDE] = ACTIONS(1607), - [anon_sym_EQ_EQ] = ACTIONS(1607), - [anon_sym_RBRACK] = ACTIONS(1559), - [sym__special_characters] = ACTIONS(1610), - [anon_sym_DQUOTE] = ACTIONS(1613), - [anon_sym_DOLLAR] = ACTIONS(1616), - [sym_raw_string] = ACTIONS(1619), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1622), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1625), - [anon_sym_BQUOTE] = ACTIONS(1628), - [anon_sym_LT_LPAREN] = ACTIONS(1631), - [anon_sym_GT_LPAREN] = ACTIONS(1631), + [aux_sym_command_repeat2] = STATE(351), + [anon_sym_EQ_TILDE] = ACTIONS(1611), + [anon_sym_EQ_EQ] = ACTIONS(1611), + [anon_sym_RBRACK] = ACTIONS(1563), + [sym__special_characters] = ACTIONS(1614), + [anon_sym_DQUOTE] = ACTIONS(1617), + [anon_sym_DOLLAR] = ACTIONS(1620), + [sym_raw_string] = ACTIONS(1623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1626), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1629), + [anon_sym_BQUOTE] = ACTIONS(1632), + [anon_sym_LT_LPAREN] = ACTIONS(1635), + [anon_sym_GT_LPAREN] = ACTIONS(1635), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1634), - }, - [351] = { - [aux_sym_concatenation_repeat1] = STATE(355), - [sym__concat] = ACTIONS(658), - [anon_sym_EQ_TILDE] = ACTIONS(1551), - [anon_sym_EQ_EQ] = ACTIONS(1551), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1553), - [sym__special_characters] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(1551), - [sym_raw_string] = ACTIONS(1553), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1553), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1553), - [anon_sym_BQUOTE] = ACTIONS(1553), - [anon_sym_LT_LPAREN] = ACTIONS(1553), - [anon_sym_GT_LPAREN] = ACTIONS(1553), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1555), + [sym_word] = ACTIONS(1638), }, [352] = { - [aux_sym_concatenation_repeat1] = STATE(355), - [sym__concat] = ACTIONS(658), - [anon_sym_EQ_TILDE] = ACTIONS(1557), - [anon_sym_EQ_EQ] = ACTIONS(1557), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1559), - [sym__special_characters] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1557), - [sym_raw_string] = ACTIONS(1559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), - [anon_sym_BQUOTE] = ACTIONS(1559), - [anon_sym_LT_LPAREN] = ACTIONS(1559), - [anon_sym_GT_LPAREN] = ACTIONS(1559), + [aux_sym_concatenation_repeat1] = STATE(356), + [sym__concat] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(1555), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1557), + [sym__special_characters] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(1555), + [sym_raw_string] = ACTIONS(1557), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1557), + [anon_sym_BQUOTE] = ACTIONS(1557), + [anon_sym_LT_LPAREN] = ACTIONS(1557), + [anon_sym_GT_LPAREN] = ACTIONS(1557), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1561), + [sym_word] = ACTIONS(1559), }, [353] = { - [anon_sym_EQ_TILDE] = ACTIONS(1557), - [anon_sym_EQ_EQ] = ACTIONS(1557), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1559), - [sym__special_characters] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1557), - [sym_raw_string] = ACTIONS(1559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), - [anon_sym_BQUOTE] = ACTIONS(1559), - [anon_sym_LT_LPAREN] = ACTIONS(1559), - [anon_sym_GT_LPAREN] = ACTIONS(1559), + [aux_sym_concatenation_repeat1] = STATE(356), + [sym__concat] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(1561), + [anon_sym_EQ_EQ] = ACTIONS(1561), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1563), + [sym__special_characters] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_DOLLAR] = ACTIONS(1561), + [sym_raw_string] = ACTIONS(1563), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [anon_sym_LT_LPAREN] = ACTIONS(1563), + [anon_sym_GT_LPAREN] = ACTIONS(1563), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1561), + [sym_word] = ACTIONS(1565), }, [354] = { - [sym_string] = STATE(850), - [sym_simple_expansion] = STATE(850), - [sym_string_expansion] = STATE(850), - [sym_expansion] = STATE(850), - [sym_command_substitution] = STATE(850), - [sym_process_substitution] = STATE(850), - [sym__special_characters] = ACTIONS(1637), + [anon_sym_EQ_TILDE] = ACTIONS(1561), + [anon_sym_EQ_EQ] = ACTIONS(1561), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1563), + [sym__special_characters] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_DOLLAR] = ACTIONS(1561), + [sym_raw_string] = ACTIONS(1563), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [anon_sym_LT_LPAREN] = ACTIONS(1563), + [anon_sym_GT_LPAREN] = ACTIONS(1563), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1565), + }, + [355] = { + [sym_string] = STATE(853), + [sym_simple_expansion] = STATE(853), + [sym_string_expansion] = STATE(853), + [sym_expansion] = STATE(853), + [sym_command_substitution] = STATE(853), + [sym_process_substitution] = STATE(853), + [sym__special_characters] = ACTIONS(1641), [anon_sym_DQUOTE] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), - [sym_raw_string] = ACTIONS(1639), + [sym_raw_string] = ACTIONS(1643), [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), [anon_sym_BQUOTE] = ACTIONS(156), [anon_sym_LT_LPAREN] = ACTIONS(158), [anon_sym_GT_LPAREN] = ACTIONS(158), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1637), - }, - [355] = { - [aux_sym_concatenation_repeat1] = STATE(851), - [sym__concat] = ACTIONS(658), - [anon_sym_EQ_TILDE] = ACTIONS(1567), - [anon_sym_EQ_EQ] = ACTIONS(1567), - [anon_sym_RBRACK_RBRACK] = ACTIONS(788), - [sym__special_characters] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(1567), - [sym_raw_string] = ACTIONS(788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LT_LPAREN] = ACTIONS(788), - [anon_sym_GT_LPAREN] = ACTIONS(788), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(790), + [sym_word] = ACTIONS(1641), }, [356] = { - [sym__concat] = ACTIONS(792), - [anon_sym_EQ_TILDE] = ACTIONS(1569), - [anon_sym_EQ_EQ] = ACTIONS(1569), - [anon_sym_RBRACK_RBRACK] = ACTIONS(792), - [sym__special_characters] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(1569), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), + [aux_sym_concatenation_repeat1] = STATE(854), + [sym__concat] = ACTIONS(660), + [anon_sym_EQ_TILDE] = ACTIONS(1571), + [anon_sym_EQ_EQ] = ACTIONS(1571), + [anon_sym_RBRACK_RBRACK] = ACTIONS(790), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(1571), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(794), + [sym_word] = ACTIONS(792), }, [357] = { + [sym__concat] = ACTIONS(794), + [anon_sym_EQ_TILDE] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1573), + [anon_sym_RBRACK_RBRACK] = ACTIONS(794), + [sym__special_characters] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(796), + }, + [358] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(1641), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(1645), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -21607,250 +21620,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [358] = { - [sym__concat] = ACTIONS(824), - [anon_sym_EQ_TILDE] = ACTIONS(1573), - [anon_sym_EQ_EQ] = ACTIONS(1573), - [anon_sym_RBRACK_RBRACK] = ACTIONS(824), - [sym__special_characters] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_LT_LPAREN] = ACTIONS(824), - [anon_sym_GT_LPAREN] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(826), - }, [359] = { - [sym__concat] = ACTIONS(828), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_RBRACK_RBRACK] = ACTIONS(828), - [sym__special_characters] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1575), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(830), - }, - [360] = { - [sym__concat] = ACTIONS(832), + [sym__concat] = ACTIONS(826), [anon_sym_EQ_TILDE] = ACTIONS(1577), [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_RBRACK_RBRACK] = ACTIONS(832), - [sym__special_characters] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_RBRACK_RBRACK] = ACTIONS(826), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(826), [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(834), + [sym_word] = ACTIONS(828), + }, + [360] = { + [sym__concat] = ACTIONS(830), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_RBRACK_RBRACK] = ACTIONS(830), + [sym__special_characters] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(1579), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(832), }, [361] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(1643), + [sym__concat] = ACTIONS(834), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_RBRACK_RBRACK] = ACTIONS(834), + [sym__special_characters] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1581), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(836), }, [362] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(856), - [anon_sym_RBRACE] = ACTIONS(1645), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1647), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(1647), + [sym_comment] = ACTIONS(56), }, [363] = { - [sym_subscript] = STATE(860), - [sym_variable_name] = ACTIONS(1649), - [anon_sym_DOLLAR] = ACTIONS(1651), - [anon_sym_DASH] = ACTIONS(1651), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1653), - [anon_sym_STAR] = ACTIONS(1651), - [anon_sym_AT] = ACTIONS(1651), - [anon_sym_QMARK] = ACTIONS(1651), - [anon_sym_0] = ACTIONS(1655), - [anon_sym__] = ACTIONS(1655), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(859), + [anon_sym_RBRACE] = ACTIONS(1649), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1651), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [364] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(863), - [anon_sym_RBRACE] = ACTIONS(1657), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1659), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_subscript] = STATE(863), + [sym_variable_name] = ACTIONS(1653), + [anon_sym_DOLLAR] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1657), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_AT] = ACTIONS(1655), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_0] = ACTIONS(1659), + [anon_sym__] = ACTIONS(1659), }, [365] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), [aux_sym_expansion_repeat1] = STATE(866), [anon_sym_RBRACE] = ACTIONS(1661), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), [aux_sym_SLASH] = ACTIONS(1663), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [366] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1665), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(869), + [anon_sym_RBRACE] = ACTIONS(1665), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1667), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [367] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1665), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [368] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(1665), - [sym_comment] = ACTIONS(56), - }, - [369] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(1665), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [370] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1667), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [371] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1667), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1669), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -21870,7 +21814,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, + [369] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1669), + [sym_comment] = ACTIONS(56), + }, + [370] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(1669), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [371] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, [372] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1671), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [373] = { [sym_concatenation] = STATE(95), [sym_string] = STATE(90), [sym_simple_expansion] = STATE(90), @@ -21878,46 +21891,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(90), [sym_command_substitution] = STATE(90), [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(372), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1559), - [sym__special_characters] = ACTIONS(1672), - [anon_sym_DQUOTE] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1678), - [sym_raw_string] = ACTIONS(1681), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1684), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1687), - [anon_sym_BQUOTE] = ACTIONS(1690), - [anon_sym_LT_LPAREN] = ACTIONS(1693), - [anon_sym_GT_LPAREN] = ACTIONS(1693), + [aux_sym_command_repeat2] = STATE(373), + [anon_sym_EQ_TILDE] = ACTIONS(1673), + [anon_sym_EQ_EQ] = ACTIONS(1673), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1563), + [sym__special_characters] = ACTIONS(1676), + [anon_sym_DQUOTE] = ACTIONS(1679), + [anon_sym_DOLLAR] = ACTIONS(1682), + [sym_raw_string] = ACTIONS(1685), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1691), + [anon_sym_BQUOTE] = ACTIONS(1694), + [anon_sym_LT_LPAREN] = ACTIONS(1697), + [anon_sym_GT_LPAREN] = ACTIONS(1697), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1696), - }, - [373] = { - [sym_concatenation] = STATE(869), - [sym_string] = STATE(872), - [sym_array] = STATE(869), - [sym_simple_expansion] = STATE(872), - [sym_string_expansion] = STATE(872), - [sym_expansion] = STATE(872), - [sym_command_substitution] = STATE(872), - [sym_process_substitution] = STATE(872), - [sym__empty_value] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1701), - [sym__special_characters] = ACTIONS(1703), - [anon_sym_DQUOTE] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1707), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1709), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1711), - [anon_sym_BQUOTE] = ACTIONS(1713), - [anon_sym_LT_LPAREN] = ACTIONS(1715), - [anon_sym_GT_LPAREN] = ACTIONS(1715), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1717), + [sym_word] = ACTIONS(1700), }, [374] = { + [sym_concatenation] = STATE(872), + [sym_string] = STATE(875), + [sym_array] = STATE(872), + [sym_simple_expansion] = STATE(875), + [sym_string_expansion] = STATE(875), + [sym_expansion] = STATE(875), + [sym_command_substitution] = STATE(875), + [sym_process_substitution] = STATE(875), + [sym__empty_value] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1705), + [sym__special_characters] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(1709), + [sym_raw_string] = ACTIONS(1711), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1713), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1715), + [anon_sym_BQUOTE] = ACTIONS(1717), + [anon_sym_LT_LPAREN] = ACTIONS(1719), + [anon_sym_GT_LPAREN] = ACTIONS(1719), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1721), + }, + [375] = { [sym_variable_name] = ACTIONS(440), [anon_sym_PIPE] = ACTIONS(442), [anon_sym_RPAREN] = ACTIONS(442), @@ -21941,80 +21954,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(442), [anon_sym_AMP] = ACTIONS(442), }, - [375] = { - [sym_string] = STATE(873), - [sym_simple_expansion] = STATE(873), - [sym_string_expansion] = STATE(873), - [sym_expansion] = STATE(873), - [sym_command_substitution] = STATE(873), - [sym_process_substitution] = STATE(873), - [sym__special_characters] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(692), - [anon_sym_DOLLAR] = ACTIONS(1705), - [sym_raw_string] = ACTIONS(1721), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1709), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1711), - [anon_sym_BQUOTE] = ACTIONS(1713), - [anon_sym_LT_LPAREN] = ACTIONS(1715), - [anon_sym_GT_LPAREN] = ACTIONS(1715), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1719), - }, [376] = { - [aux_sym_concatenation_repeat1] = STATE(874), - [sym__concat] = ACTIONS(684), - [sym_variable_name] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [sym__special_characters] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(790), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(790), - [sym_word] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), + [sym_string] = STATE(876), + [sym_simple_expansion] = STATE(876), + [sym_string_expansion] = STATE(876), + [sym_expansion] = STATE(876), + [sym_command_substitution] = STATE(876), + [sym_process_substitution] = STATE(876), + [sym__special_characters] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(694), + [anon_sym_DOLLAR] = ACTIONS(1709), + [sym_raw_string] = ACTIONS(1725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1713), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1715), + [anon_sym_BQUOTE] = ACTIONS(1717), + [anon_sym_LT_LPAREN] = ACTIONS(1719), + [anon_sym_GT_LPAREN] = ACTIONS(1719), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1723), }, [377] = { - [sym__concat] = ACTIONS(792), - [sym_variable_name] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [sym__special_characters] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(794), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), + [aux_sym_concatenation_repeat1] = STATE(877), + [sym__concat] = ACTIONS(686), + [sym_variable_name] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(794), - [sym_word] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(792), + [sym_word] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), }, [378] = { + [sym__concat] = ACTIONS(794), + [sym_variable_name] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [sym__special_characters] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(796), + [sym_raw_string] = ACTIONS(796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(796), + [anon_sym_GT_LPAREN] = ACTIONS(796), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(796), + [sym_word] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + }, + [379] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(1723), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(1727), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -22022,271 +22035,202 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [379] = { - [sym__concat] = ACTIONS(824), - [sym_variable_name] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [sym__special_characters] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(826), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(826), - [sym_word] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), - }, [380] = { - [sym__concat] = ACTIONS(828), - [sym_variable_name] = ACTIONS(828), - [anon_sym_PIPE] = 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__special_characters] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(830), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym__concat] = ACTIONS(826), + [sym_variable_name] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(828), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(830), - [sym_word] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(828), + [sym_word] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), }, [381] = { - [sym__concat] = ACTIONS(832), - [sym_variable_name] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [sym__special_characters] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(834), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym__concat] = ACTIONS(830), + [sym_variable_name] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [sym__special_characters] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(834), - [sym_word] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(832), + [sym_word] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), }, [382] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(1725), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(834), + [sym_variable_name] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [sym__special_characters] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [sym_raw_string] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LT_LPAREN] = ACTIONS(836), + [anon_sym_GT_LPAREN] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(836), + [sym_word] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), }, [383] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(879), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(1729), + [sym_comment] = ACTIONS(56), }, [384] = { - [sym_subscript] = STATE(883), - [sym_variable_name] = ACTIONS(1731), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1733), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_AT] = ACTIONS(1733), - [anon_sym_QMARK] = ACTIONS(1733), - [anon_sym_0] = ACTIONS(1737), - [anon_sym__] = ACTIONS(1737), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(882), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1733), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [385] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(886), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1741), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_subscript] = STATE(886), + [sym_variable_name] = ACTIONS(1735), + [anon_sym_DOLLAR] = ACTIONS(1737), + [anon_sym_DASH] = ACTIONS(1737), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1739), + [anon_sym_STAR] = ACTIONS(1737), + [anon_sym_AT] = ACTIONS(1737), + [anon_sym_QMARK] = ACTIONS(1737), + [anon_sym_0] = ACTIONS(1741), + [anon_sym__] = ACTIONS(1741), }, [386] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), [aux_sym_expansion_repeat1] = STATE(889), [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), [aux_sym_SLASH] = ACTIONS(1745), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [387] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(892), + [anon_sym_RBRACE] = ACTIONS(1747), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1749), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [388] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1747), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [389] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(1747), - [sym_comment] = ACTIONS(56), - }, - [390] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(1747), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [391] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1749), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [392] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1749), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -22306,7 +22250,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, + [390] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1751), + [sym_comment] = ACTIONS(56), + }, + [391] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(1751), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [392] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1753), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, [393] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1753), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [394] = { [sym_variable_assignment] = STATE(107), [sym_subscript] = STATE(108), [sym_concatenation] = STATE(107), @@ -22316,101 +22329,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(101), [sym_command_substitution] = STATE(101), [sym_process_substitution] = STATE(101), - [aux_sym_declaration_command_repeat1] = STATE(393), - [sym_variable_name] = ACTIONS(1751), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_SEMI_SEMI] = ACTIONS(1754), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1762), - [sym_raw_string] = ACTIONS(1765), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1768), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1771), - [anon_sym_BQUOTE] = ACTIONS(1774), - [anon_sym_LT_LPAREN] = ACTIONS(1777), - [anon_sym_GT_LPAREN] = ACTIONS(1777), + [aux_sym_declaration_command_repeat1] = STATE(394), + [sym_variable_name] = ACTIONS(1755), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_SEMI_SEMI] = ACTIONS(1758), + [anon_sym_PIPE_AMP] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(1758), + [anon_sym_PIPE_PIPE] = ACTIONS(1758), + [sym__special_characters] = ACTIONS(1760), + [anon_sym_DQUOTE] = ACTIONS(1763), + [anon_sym_DOLLAR] = ACTIONS(1766), + [sym_raw_string] = ACTIONS(1769), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1775), + [anon_sym_BQUOTE] = ACTIONS(1778), + [anon_sym_LT_LPAREN] = ACTIONS(1781), + [anon_sym_GT_LPAREN] = ACTIONS(1781), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1780), - [sym_word] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1754), - }, - [394] = { - [sym_string] = STATE(892), - [sym_simple_expansion] = STATE(892), - [sym_string_expansion] = STATE(892), - [sym_expansion] = STATE(892), - [sym_command_substitution] = STATE(892), - [sym_process_substitution] = STATE(892), - [sym__special_characters] = ACTIONS(1783), - [anon_sym_DQUOTE] = ACTIONS(728), - [anon_sym_DOLLAR] = ACTIONS(1785), - [sym_raw_string] = ACTIONS(1787), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1789), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1791), - [anon_sym_BQUOTE] = ACTIONS(1793), - [anon_sym_LT_LPAREN] = ACTIONS(1795), - [anon_sym_GT_LPAREN] = ACTIONS(1795), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1783), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1784), + [sym_word] = ACTIONS(1769), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_LF] = ACTIONS(1758), + [anon_sym_AMP] = ACTIONS(1758), }, [395] = { - [aux_sym_concatenation_repeat1] = STATE(893), - [sym__concat] = ACTIONS(722), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [sym__special_characters] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(790), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(790), - [sym_word] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), + [sym_string] = STATE(895), + [sym_simple_expansion] = STATE(895), + [sym_string_expansion] = STATE(895), + [sym_expansion] = STATE(895), + [sym_command_substitution] = STATE(895), + [sym_process_substitution] = STATE(895), + [sym__special_characters] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_DOLLAR] = ACTIONS(1789), + [sym_raw_string] = ACTIONS(1791), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1793), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1795), + [anon_sym_BQUOTE] = ACTIONS(1797), + [anon_sym_LT_LPAREN] = ACTIONS(1799), + [anon_sym_GT_LPAREN] = ACTIONS(1799), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1787), }, [396] = { - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [sym__special_characters] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(794), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), + [aux_sym_concatenation_repeat1] = STATE(896), + [sym__concat] = ACTIONS(724), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(794), - [sym_word] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(792), + [sym_word] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), }, [397] = { + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [sym__special_characters] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(796), + [sym_raw_string] = ACTIONS(796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(796), + [anon_sym_GT_LPAREN] = ACTIONS(796), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(796), + [sym_word] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + }, + [398] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(1797), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(1801), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -22418,268 +22431,199 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [398] = { - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [sym__special_characters] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(826), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(826), - [sym_word] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), - }, [399] = { - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = 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__special_characters] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(830), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(828), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(830), - [sym_word] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(828), + [sym_word] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), }, [400] = { - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [sym__special_characters] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(834), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [sym__special_characters] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(834), - [sym_word] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(832), + [sym_word] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), }, [401] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(1799), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [sym__special_characters] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [sym_raw_string] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LT_LPAREN] = ACTIONS(836), + [anon_sym_GT_LPAREN] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(836), + [sym_word] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), }, [402] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(898), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1803), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(1803), + [sym_comment] = ACTIONS(56), }, [403] = { - [sym_subscript] = STATE(902), - [sym_variable_name] = ACTIONS(1805), - [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_AT] = ACTIONS(1807), - [anon_sym_QMARK] = ACTIONS(1807), - [anon_sym_0] = ACTIONS(1811), - [anon_sym__] = ACTIONS(1811), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(901), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1807), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [404] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(905), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1815), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_subscript] = STATE(905), + [sym_variable_name] = ACTIONS(1809), + [anon_sym_DOLLAR] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1813), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(1811), + [anon_sym_QMARK] = ACTIONS(1811), + [anon_sym_0] = ACTIONS(1815), + [anon_sym__] = ACTIONS(1815), }, [405] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), [aux_sym_expansion_repeat1] = STATE(908), [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), [aux_sym_SLASH] = ACTIONS(1819), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [406] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(911), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1823), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [407] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1825), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [408] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(1821), - [sym_comment] = ACTIONS(56), - }, - [409] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(1821), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [410] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [411] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1823), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1825), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -22699,7 +22643,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, + [409] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1825), + [sym_comment] = ACTIONS(56), + }, + [410] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(1825), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [411] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, [412] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1827), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [413] = { [sym_concatenation] = STATE(119), [sym_string] = STATE(113), [sym_simple_expansion] = STATE(113), @@ -22707,100 +22720,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(113), [sym_command_substitution] = STATE(113), [sym_process_substitution] = STATE(113), - [aux_sym_unset_command_repeat1] = STATE(412), - [anon_sym_PIPE] = ACTIONS(1825), - [anon_sym_SEMI_SEMI] = ACTIONS(1825), - [anon_sym_PIPE_AMP] = ACTIONS(1825), - [anon_sym_AMP_AMP] = ACTIONS(1825), - [anon_sym_PIPE_PIPE] = ACTIONS(1825), - [sym__special_characters] = ACTIONS(1827), - [anon_sym_DQUOTE] = ACTIONS(1830), - [anon_sym_DOLLAR] = ACTIONS(1833), - [sym_raw_string] = ACTIONS(1836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1839), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1842), - [anon_sym_BQUOTE] = ACTIONS(1845), - [anon_sym_LT_LPAREN] = ACTIONS(1848), - [anon_sym_GT_LPAREN] = ACTIONS(1848), + [aux_sym_unset_command_repeat1] = STATE(413), + [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_SEMI_SEMI] = ACTIONS(1829), + [anon_sym_PIPE_AMP] = ACTIONS(1829), + [anon_sym_AMP_AMP] = ACTIONS(1829), + [anon_sym_PIPE_PIPE] = ACTIONS(1829), + [sym__special_characters] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1834), + [anon_sym_DOLLAR] = ACTIONS(1837), + [sym_raw_string] = ACTIONS(1840), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1843), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1846), + [anon_sym_BQUOTE] = ACTIONS(1849), + [anon_sym_LT_LPAREN] = ACTIONS(1852), + [anon_sym_GT_LPAREN] = ACTIONS(1852), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1851), - [sym_word] = ACTIONS(1836), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1825), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1855), + [sym_word] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1829), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), }, - [413] = { - [sym_string] = STATE(911), - [sym_simple_expansion] = STATE(911), - [sym_string_expansion] = STATE(911), - [sym_expansion] = STATE(911), - [sym_command_substitution] = STATE(911), - [sym_process_substitution] = STATE(911), - [sym__special_characters] = ACTIONS(1854), + [414] = { + [sym_string] = STATE(914), + [sym_simple_expansion] = STATE(914), + [sym_string_expansion] = STATE(914), + [sym_expansion] = STATE(914), + [sym_command_substitution] = STATE(914), + [sym_process_substitution] = STATE(914), + [sym__special_characters] = ACTIONS(1858), [anon_sym_DQUOTE] = ACTIONS(208), [anon_sym_DOLLAR] = ACTIONS(210), - [sym_raw_string] = ACTIONS(1856), + [sym_raw_string] = ACTIONS(1860), [anon_sym_DOLLAR_LBRACE] = ACTIONS(214), [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), [anon_sym_BQUOTE] = ACTIONS(218), [anon_sym_LT_LPAREN] = ACTIONS(220), [anon_sym_GT_LPAREN] = ACTIONS(220), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1854), - }, - [414] = { - [aux_sym_concatenation_repeat1] = STATE(912), - [sym_file_descriptor] = ACTIONS(788), - [sym__concat] = ACTIONS(756), - [sym_variable_name] = ACTIONS(788), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_GT] = ACTIONS(1567), - [anon_sym_GT_GT] = ACTIONS(788), - [anon_sym_AMP_GT] = ACTIONS(1567), - [anon_sym_AMP_GT_GT] = ACTIONS(788), - [anon_sym_LT_AMP] = ACTIONS(788), - [anon_sym_GT_AMP] = ACTIONS(788), - [sym__special_characters] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(1567), - [sym_raw_string] = ACTIONS(788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LT_LPAREN] = ACTIONS(788), - [anon_sym_GT_LPAREN] = ACTIONS(788), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1567), + [sym_word] = ACTIONS(1858), }, [415] = { - [sym_file_descriptor] = ACTIONS(792), - [sym__concat] = ACTIONS(792), - [sym_variable_name] = ACTIONS(792), - [anon_sym_LT] = ACTIONS(1569), - [anon_sym_GT] = ACTIONS(1569), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_AMP_GT] = ACTIONS(1569), - [anon_sym_AMP_GT_GT] = ACTIONS(792), - [anon_sym_LT_AMP] = ACTIONS(792), - [anon_sym_GT_AMP] = ACTIONS(792), - [sym__special_characters] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(1569), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), + [aux_sym_concatenation_repeat1] = STATE(915), + [sym_file_descriptor] = ACTIONS(790), + [sym__concat] = ACTIONS(758), + [sym_variable_name] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(1571), + [anon_sym_GT] = ACTIONS(1571), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(1571), + [anon_sym_AMP_GT_GT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(790), + [anon_sym_GT_AMP] = ACTIONS(790), + [sym__special_characters] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(1571), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1569), + [sym_word] = ACTIONS(1571), }, [416] = { + [sym_file_descriptor] = ACTIONS(794), + [sym__concat] = ACTIONS(794), + [sym_variable_name] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(794), + [anon_sym_LT_AMP] = ACTIONS(794), + [anon_sym_GT_AMP] = ACTIONS(794), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1573), + }, + [417] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(1858), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(1862), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -22808,521 +22821,199 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [417] = { - [sym_file_descriptor] = ACTIONS(824), - [sym__concat] = ACTIONS(824), - [sym_variable_name] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(824), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(824), - [anon_sym_LT_AMP] = ACTIONS(824), - [anon_sym_GT_AMP] = ACTIONS(824), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_LT_LPAREN] = ACTIONS(824), - [anon_sym_GT_LPAREN] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1573), - }, [418] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [sym_variable_name] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1575), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(1575), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [sym__special_characters] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1575), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1575), - }, - [419] = { - [sym_file_descriptor] = ACTIONS(832), - [sym__concat] = ACTIONS(832), - [sym_variable_name] = ACTIONS(832), + [sym_file_descriptor] = ACTIONS(826), + [sym__concat] = ACTIONS(826), + [sym_variable_name] = ACTIONS(826), [anon_sym_LT] = ACTIONS(1577), [anon_sym_GT] = ACTIONS(1577), - [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_GT_GT] = ACTIONS(826), [anon_sym_AMP_GT] = ACTIONS(1577), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1577), - }, - [420] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(1860), - [sym_comment] = ACTIONS(56), - }, - [421] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(917), - [anon_sym_RBRACE] = ACTIONS(1862), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1864), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [422] = { - [sym_subscript] = STATE(921), - [sym_variable_name] = ACTIONS(1866), - [anon_sym_DOLLAR] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1868), - [anon_sym_QMARK] = ACTIONS(1868), - [anon_sym_0] = ACTIONS(1872), - [anon_sym__] = ACTIONS(1872), - }, - [423] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(924), - [anon_sym_RBRACE] = ACTIONS(1874), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1876), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [424] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(927), - [anon_sym_RBRACE] = ACTIONS(1878), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1880), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [425] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1882), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [426] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1882), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [427] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(1882), - [sym_comment] = ACTIONS(56), - }, - [428] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(1882), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [429] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [430] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1884), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [431] = { - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_EQ_TILDE] = ACTIONS(1888), - [anon_sym_EQ_EQ] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1888), - [anon_sym_LT_LT_LT] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [432] = { - [aux_sym_concatenation_repeat1] = STATE(432), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1890), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_EQ_TILDE] = ACTIONS(1888), - [anon_sym_EQ_EQ] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1888), - [anon_sym_LT_LT_LT] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [433] = { - [sym__concat] = ACTIONS(824), [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(826), - [sym__string_content] = ACTIONS(1573), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(826), [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), [anon_sym_BQUOTE] = ACTIONS(826), - [sym_comment] = ACTIONS(182), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1577), }, - [434] = { - [sym__concat] = ACTIONS(1893), - [anon_sym_DQUOTE] = ACTIONS(1895), - [anon_sym_DOLLAR] = ACTIONS(1895), - [sym__string_content] = ACTIONS(1897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), - [anon_sym_BQUOTE] = ACTIONS(1895), - [sym_comment] = ACTIONS(182), + [419] = { + [sym_file_descriptor] = ACTIONS(830), + [sym__concat] = ACTIONS(830), + [sym_variable_name] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(1579), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [sym__special_characters] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(1579), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1579), }, - [435] = { - [sym__concat] = ACTIONS(832), + [420] = { + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [sym_variable_name] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(1581), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [sym__special_characters] = ACTIONS(1581), [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(834), - [sym__string_content] = ACTIONS(1577), + [anon_sym_DOLLAR] = ACTIONS(1581), + [sym_raw_string] = ACTIONS(834), [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), [anon_sym_BQUOTE] = ACTIONS(834), - [sym_comment] = ACTIONS(182), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1581), }, - [436] = { - [anon_sym_DQUOTE] = ACTIONS(1895), - [anon_sym_DOLLAR] = ACTIONS(1895), - [sym__string_content] = ACTIONS(1897), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1895), - [anon_sym_BQUOTE] = ACTIONS(1895), - [sym_comment] = ACTIONS(182), - }, - [437] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(1899), + [421] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(1864), [sym_comment] = ACTIONS(56), }, - [438] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(934), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1903), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [422] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(920), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1868), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [439] = { - [sym_subscript] = STATE(938), - [sym_variable_name] = ACTIONS(1905), - [anon_sym_DOLLAR] = ACTIONS(1907), - [anon_sym_DASH] = ACTIONS(1907), + [423] = { + [sym_subscript] = STATE(924), + [sym_variable_name] = ACTIONS(1870), + [anon_sym_DOLLAR] = ACTIONS(1872), + [anon_sym_DASH] = ACTIONS(1872), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1909), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_AT] = ACTIONS(1907), - [anon_sym_QMARK] = ACTIONS(1907), - [anon_sym_0] = ACTIONS(1911), - [anon_sym__] = ACTIONS(1911), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_AT] = ACTIONS(1872), + [anon_sym_QMARK] = ACTIONS(1872), + [anon_sym_0] = ACTIONS(1876), + [anon_sym__] = ACTIONS(1876), }, - [440] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(941), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1915), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [424] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(927), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1880), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [441] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(944), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(1919), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [425] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(930), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1884), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [442] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [426] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, - [443] = { + [427] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(1921), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1886), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -23342,21 +23033,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [444] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(1921), + [428] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1886), [sym_comment] = ACTIONS(56), }, - [445] = { + [429] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -23370,186 +23061,508 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(380), [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(1921), + [anon_sym_BQUOTE] = ACTIONS(1886), [anon_sym_LT_LPAREN] = ACTIONS(380), [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [446] = { - [sym_file_descriptor] = ACTIONS(1923), - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [anon_sym_EQ_TILDE] = ACTIONS(1925), - [anon_sym_EQ_EQ] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1925), - [anon_sym_GT_GT] = ACTIONS(1925), - [anon_sym_AMP_GT] = ACTIONS(1925), - [anon_sym_AMP_GT_GT] = ACTIONS(1925), - [anon_sym_LT_AMP] = ACTIONS(1925), - [anon_sym_GT_AMP] = ACTIONS(1925), - [anon_sym_LT_LT] = ACTIONS(1925), - [anon_sym_LT_LT_DASH] = ACTIONS(1925), - [anon_sym_LT_LT_LT] = ACTIONS(1925), - [sym__special_characters] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [sym_raw_string] = ACTIONS(1925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), - [anon_sym_BQUOTE] = ACTIONS(1925), - [anon_sym_LT_LPAREN] = ACTIONS(1925), - [anon_sym_GT_LPAREN] = ACTIONS(1925), + [430] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [431] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1888), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [432] = { + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_EQ_TILDE] = ACTIONS(1892), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1892), + [anon_sym_LT_LT_LT] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [433] = { + [aux_sym_concatenation_repeat1] = STATE(433), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_EQ_TILDE] = ACTIONS(1892), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1892), + [anon_sym_LT_LT_LT] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [434] = { + [sym__concat] = ACTIONS(826), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(828), + [sym__string_content] = ACTIONS(1577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [sym_comment] = ACTIONS(182), + }, + [435] = { + [sym__concat] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1899), + [sym__string_content] = ACTIONS(1901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1899), + [anon_sym_BQUOTE] = ACTIONS(1899), + [sym_comment] = ACTIONS(182), + }, + [436] = { + [sym__concat] = ACTIONS(834), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [sym__string_content] = ACTIONS(1581), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + }, + [437] = { + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1899), + [sym__string_content] = ACTIONS(1901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1899), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1899), + [anon_sym_BQUOTE] = ACTIONS(1899), + [sym_comment] = ACTIONS(182), + }, + [438] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(1903), + [sym_comment] = ACTIONS(56), + }, + [439] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(937), + [anon_sym_RBRACE] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1907), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [440] = { + [sym_subscript] = STATE(941), + [sym_variable_name] = ACTIONS(1909), + [anon_sym_DOLLAR] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1913), + [anon_sym_STAR] = ACTIONS(1911), + [anon_sym_AT] = ACTIONS(1911), + [anon_sym_QMARK] = ACTIONS(1911), + [anon_sym_0] = ACTIONS(1915), + [anon_sym__] = ACTIONS(1915), + }, + [441] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(944), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1919), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [442] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(947), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(1923), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [443] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [444] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(1925), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [445] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(1925), + [sym_comment] = ACTIONS(56), + }, + [446] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(1925), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [447] = { + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [anon_sym_EQ_TILDE] = ACTIONS(1929), + [anon_sym_EQ_EQ] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1929), + [anon_sym_AMP_GT] = ACTIONS(1929), + [anon_sym_AMP_GT_GT] = ACTIONS(1929), + [anon_sym_LT_AMP] = ACTIONS(1929), + [anon_sym_GT_AMP] = ACTIONS(1929), + [anon_sym_LT_LT] = ACTIONS(1929), + [anon_sym_LT_LT_DASH] = ACTIONS(1929), + [anon_sym_LT_LT_LT] = ACTIONS(1929), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), + [anon_sym_BQUOTE] = ACTIONS(1929), + [anon_sym_LT_LPAREN] = ACTIONS(1929), + [anon_sym_GT_LPAREN] = ACTIONS(1929), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), + }, + [448] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(1895), - [anon_sym_DOLLAR] = ACTIONS(1927), - [sym__string_content] = ACTIONS(1930), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1933), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1936), - [anon_sym_BQUOTE] = ACTIONS(1939), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(1899), + [anon_sym_DOLLAR] = ACTIONS(1931), + [sym__string_content] = ACTIONS(1934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1940), + [anon_sym_BQUOTE] = ACTIONS(1943), [sym_comment] = ACTIONS(182), }, - [448] = { - [sym_concatenation] = STATE(948), - [sym_string] = STATE(947), - [sym_simple_expansion] = STATE(947), - [sym_string_expansion] = STATE(947), - [sym_expansion] = STATE(947), - [sym_command_substitution] = STATE(947), - [sym_process_substitution] = STATE(947), - [sym__special_characters] = ACTIONS(1942), + [449] = { + [sym_concatenation] = STATE(951), + [sym_string] = STATE(950), + [sym_simple_expansion] = STATE(950), + [sym_string_expansion] = STATE(950), + [sym_expansion] = STATE(950), + [sym_command_substitution] = STATE(950), + [sym_process_substitution] = STATE(950), + [sym__special_characters] = ACTIONS(1946), [anon_sym_DQUOTE] = ACTIONS(402), [anon_sym_DOLLAR] = ACTIONS(404), - [sym_raw_string] = ACTIONS(1944), + [sym_raw_string] = ACTIONS(1948), [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), [anon_sym_BQUOTE] = ACTIONS(412), [anon_sym_LT_LPAREN] = ACTIONS(414), [anon_sym_GT_LPAREN] = ACTIONS(414), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1946), - }, - [449] = { - [sym_concatenation] = STATE(958), - [sym_string] = STATE(953), - [sym_simple_expansion] = STATE(953), - [sym_string_expansion] = STATE(953), - [sym_expansion] = STATE(953), - [sym_command_substitution] = STATE(953), - [sym_process_substitution] = STATE(953), - [anon_sym_RBRACE] = ACTIONS(1948), - [sym__special_characters] = ACTIONS(1950), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(1956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1966), + [sym_word] = ACTIONS(1950), }, [450] = { - [sym_file_descriptor] = ACTIONS(1968), - [sym__concat] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [anon_sym_EQ_TILDE] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_AMP_GT] = ACTIONS(1970), - [anon_sym_AMP_GT_GT] = ACTIONS(1970), - [anon_sym_LT_AMP] = ACTIONS(1970), - [anon_sym_GT_AMP] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_LT_LT_DASH] = ACTIONS(1970), - [anon_sym_LT_LT_LT] = ACTIONS(1970), - [sym__special_characters] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [sym_raw_string] = ACTIONS(1970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(182), + [sym_concatenation] = STATE(961), + [sym_string] = STATE(956), + [sym_simple_expansion] = STATE(956), + [sym_string_expansion] = STATE(956), + [sym_expansion] = STATE(956), + [sym_command_substitution] = STATE(956), + [sym_process_substitution] = STATE(956), + [anon_sym_RBRACE] = ACTIONS(1952), + [sym__special_characters] = ACTIONS(1954), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(1960), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), }, [451] = { - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_EQ] = ACTIONS(1974), - [sym__special_characters] = ACTIONS(1976), - [anon_sym_DQUOTE] = ACTIONS(1972), + [sym_file_descriptor] = ACTIONS(1972), + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [anon_sym_EQ_TILDE] = ACTIONS(1974), + [anon_sym_EQ_EQ] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_GT] = ACTIONS(1974), + [anon_sym_GT_GT] = ACTIONS(1974), + [anon_sym_AMP_GT] = ACTIONS(1974), + [anon_sym_AMP_GT_GT] = ACTIONS(1974), + [anon_sym_LT_AMP] = ACTIONS(1974), + [anon_sym_GT_AMP] = ACTIONS(1974), + [anon_sym_LT_LT] = ACTIONS(1974), + [anon_sym_LT_LT_DASH] = ACTIONS(1974), + [anon_sym_LT_LT_LT] = ACTIONS(1974), + [sym__special_characters] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), [anon_sym_DOLLAR] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [anon_sym_COLON] = ACTIONS(1974), - [anon_sym_COLON_QMARK] = ACTIONS(1974), - [anon_sym_COLON_DASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1974), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_LT_LPAREN] = ACTIONS(1972), - [anon_sym_GT_LPAREN] = ACTIONS(1972), + [sym_raw_string] = ACTIONS(1974), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [anon_sym_BQUOTE] = ACTIONS(1974), + [anon_sym_LT_LPAREN] = ACTIONS(1974), + [anon_sym_GT_LPAREN] = ACTIONS(1974), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1976), + [sym_word] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), }, [452] = { - [aux_sym_concatenation_repeat1] = STATE(960), - [sym__concat] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1980), - [anon_sym_EQ] = ACTIONS(1982), - [sym__special_characters] = ACTIONS(1984), - [anon_sym_DQUOTE] = ACTIONS(1980), - [anon_sym_DOLLAR] = ACTIONS(1982), - [sym_raw_string] = ACTIONS(1980), - [anon_sym_POUND] = ACTIONS(1980), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1980), - [anon_sym_COLON] = ACTIONS(1982), - [anon_sym_COLON_QMARK] = ACTIONS(1982), - [anon_sym_COLON_DASH] = ACTIONS(1982), - [anon_sym_PERCENT] = ACTIONS(1982), - [anon_sym_DASH] = ACTIONS(1982), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1980), - [anon_sym_BQUOTE] = ACTIONS(1980), - [anon_sym_LT_LPAREN] = ACTIONS(1980), - [anon_sym_GT_LPAREN] = ACTIONS(1980), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_EQ] = ACTIONS(1978), + [sym__special_characters] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(1976), + [anon_sym_DOLLAR] = ACTIONS(1978), + [sym_raw_string] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(1976), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1976), + [anon_sym_COLON] = ACTIONS(1978), + [anon_sym_COLON_QMARK] = ACTIONS(1978), + [anon_sym_COLON_DASH] = ACTIONS(1978), + [anon_sym_PERCENT] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1976), + [anon_sym_BQUOTE] = ACTIONS(1976), + [anon_sym_LT_LPAREN] = ACTIONS(1976), + [anon_sym_GT_LPAREN] = ACTIONS(1976), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1984), + [sym_word] = ACTIONS(1980), }, [453] = { + [aux_sym_concatenation_repeat1] = STATE(963), + [sym__concat] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym_EQ] = ACTIONS(1986), + [sym__special_characters] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1984), + [anon_sym_DOLLAR] = ACTIONS(1986), + [sym_raw_string] = ACTIONS(1984), + [anon_sym_POUND] = ACTIONS(1984), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1984), + [anon_sym_COLON] = ACTIONS(1986), + [anon_sym_COLON_QMARK] = ACTIONS(1986), + [anon_sym_COLON_DASH] = ACTIONS(1986), + [anon_sym_PERCENT] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1984), + [anon_sym_BQUOTE] = ACTIONS(1984), + [anon_sym_LT_LPAREN] = ACTIONS(1984), + [anon_sym_GT_LPAREN] = ACTIONS(1984), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1988), + }, + [454] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(962), - [anon_sym_DQUOTE] = ACTIONS(1986), + [aux_sym_string_repeat1] = STATE(965), + [anon_sym_DQUOTE] = ACTIONS(1990), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -23557,77 +23570,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [454] = { - [sym_string] = STATE(964), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(1988), - [sym_raw_string] = ACTIONS(1990), - [anon_sym_POUND] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1992), - [anon_sym_STAR] = ACTIONS(1988), - [anon_sym_AT] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(1988), - [anon_sym_0] = ACTIONS(1994), - [anon_sym__] = ACTIONS(1994), - }, [455] = { - [aux_sym_concatenation_repeat1] = STATE(960), - [sym__concat] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_EQ] = ACTIONS(1974), - [sym__special_characters] = ACTIONS(1976), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_DOLLAR] = ACTIONS(1974), - [sym_raw_string] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(1972), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), - [anon_sym_COLON] = ACTIONS(1974), - [anon_sym_COLON_QMARK] = ACTIONS(1974), - [anon_sym_COLON_DASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1974), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), - [anon_sym_BQUOTE] = ACTIONS(1972), - [anon_sym_LT_LPAREN] = ACTIONS(1972), - [anon_sym_GT_LPAREN] = ACTIONS(1972), + [sym_string] = STATE(967), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(1992), + [sym_raw_string] = ACTIONS(1994), + [anon_sym_POUND] = ACTIONS(1992), + [anon_sym_DASH] = ACTIONS(1992), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1976), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1992), + [anon_sym_AT] = ACTIONS(1992), + [anon_sym_QMARK] = ACTIONS(1992), + [anon_sym_0] = ACTIONS(1998), + [anon_sym__] = ACTIONS(1998), }, [456] = { - [sym_subscript] = STATE(970), - [sym_variable_name] = ACTIONS(1996), - [anon_sym_DOLLAR] = ACTIONS(1998), - [anon_sym_POUND] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(1998), + [aux_sym_concatenation_repeat1] = STATE(963), + [sym__concat] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_EQ] = ACTIONS(1978), + [sym__special_characters] = ACTIONS(1980), + [anon_sym_DQUOTE] = ACTIONS(1976), + [anon_sym_DOLLAR] = ACTIONS(1978), + [sym_raw_string] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(1976), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1976), + [anon_sym_COLON] = ACTIONS(1978), + [anon_sym_COLON_QMARK] = ACTIONS(1978), + [anon_sym_COLON_DASH] = ACTIONS(1978), + [anon_sym_PERCENT] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1976), + [anon_sym_BQUOTE] = ACTIONS(1976), + [anon_sym_LT_LPAREN] = ACTIONS(1976), + [anon_sym_GT_LPAREN] = ACTIONS(1976), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(1998), - [anon_sym_AT] = ACTIONS(1998), - [anon_sym_QMARK] = ACTIONS(1998), - [anon_sym_0] = ACTIONS(2004), - [anon_sym__] = ACTIONS(2004), + [sym_word] = ACTIONS(1980), }, [457] = { + [sym_subscript] = STATE(973), + [sym_variable_name] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(2002), + [anon_sym_POUND] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2002), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2006), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_AT] = ACTIONS(2002), + [anon_sym_QMARK] = ACTIONS(2002), + [anon_sym_0] = ACTIONS(2008), + [anon_sym__] = ACTIONS(2008), }, [458] = { - [sym_for_statement] = STATE(972), - [sym_while_statement] = STATE(972), - [sym_if_statement] = STATE(972), - [sym_case_statement] = STATE(972), - [sym_function_definition] = STATE(972), - [sym_subshell] = STATE(972), - [sym_pipeline] = STATE(972), - [sym_list] = STATE(972), - [sym_command] = STATE(972), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(2010), + }, + [459] = { + [sym_for_statement] = STATE(975), + [sym_while_statement] = STATE(975), + [sym_if_statement] = STATE(975), + [sym_case_statement] = STATE(975), + [sym_function_definition] = STATE(975), + [sym_subshell] = STATE(975), + [sym_pipeline] = STATE(975), + [sym_list] = STATE(975), + [sym_command] = STATE(975), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(972), - [sym_variable_assignment] = STATE(973), - [sym_declaration_command] = STATE(972), - [sym_unset_command] = STATE(972), + [sym_bracket_command] = STATE(975), + [sym_variable_assignment] = STATE(976), + [sym_declaration_command] = STATE(975), + [sym_unset_command] = STATE(975), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -23674,21 +23687,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [459] = { - [sym_for_statement] = STATE(974), - [sym_while_statement] = STATE(974), - [sym_if_statement] = STATE(974), - [sym_case_statement] = STATE(974), - [sym_function_definition] = STATE(974), - [sym_subshell] = STATE(974), - [sym_pipeline] = STATE(974), - [sym_list] = STATE(974), - [sym_command] = STATE(974), + [460] = { + [sym_for_statement] = STATE(977), + [sym_while_statement] = STATE(977), + [sym_if_statement] = STATE(977), + [sym_case_statement] = STATE(977), + [sym_function_definition] = STATE(977), + [sym_subshell] = STATE(977), + [sym_pipeline] = STATE(977), + [sym_list] = STATE(977), + [sym_command] = STATE(977), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(974), - [sym_variable_assignment] = STATE(975), - [sym_declaration_command] = STATE(974), - [sym_unset_command] = STATE(974), + [sym_bracket_command] = STATE(977), + [sym_variable_assignment] = STATE(978), + [sym_declaration_command] = STATE(977), + [sym_unset_command] = STATE(977), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -23735,21 +23748,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [460] = { - [sym_for_statement] = STATE(976), - [sym_while_statement] = STATE(976), - [sym_if_statement] = STATE(976), - [sym_case_statement] = STATE(976), - [sym_function_definition] = STATE(976), - [sym_subshell] = STATE(976), - [sym_pipeline] = STATE(976), - [sym_list] = STATE(976), - [sym_command] = STATE(976), + [461] = { + [sym_for_statement] = STATE(979), + [sym_while_statement] = STATE(979), + [sym_if_statement] = STATE(979), + [sym_case_statement] = STATE(979), + [sym_function_definition] = STATE(979), + [sym_subshell] = STATE(979), + [sym_pipeline] = STATE(979), + [sym_list] = STATE(979), + [sym_command] = STATE(979), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(976), - [sym_variable_assignment] = STATE(977), - [sym_declaration_command] = STATE(976), - [sym_unset_command] = STATE(976), + [sym_bracket_command] = STATE(979), + [sym_variable_assignment] = STATE(980), + [sym_declaration_command] = STATE(979), + [sym_unset_command] = STATE(979), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -23796,307 +23809,307 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [461] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(2008), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [462] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(2010), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [463] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(983), - [anon_sym_RBRACE] = ACTIONS(2012), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2014), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(2014), + [sym_comment] = ACTIONS(56), }, [464] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), [aux_sym_expansion_repeat1] = STATE(986), [anon_sym_RBRACE] = ACTIONS(2016), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), [aux_sym_SLASH] = ACTIONS(2018), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [465] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(988), - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2020), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(989), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2022), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [466] = { - [sym_file_descriptor] = ACTIONS(2022), - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [anon_sym_EQ_TILDE] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym_AMP_GT] = ACTIONS(2024), - [anon_sym_AMP_GT_GT] = ACTIONS(2024), - [anon_sym_LT_AMP] = ACTIONS(2024), - [anon_sym_GT_AMP] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_LT_LT_DASH] = ACTIONS(2024), - [anon_sym_LT_LT_LT] = ACTIONS(2024), - [sym__special_characters] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_DOLLAR] = ACTIONS(2024), - [sym_raw_string] = ACTIONS(2024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2024), - [anon_sym_LT_LPAREN] = ACTIONS(2024), - [anon_sym_GT_LPAREN] = ACTIONS(2024), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(991), + [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2024), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), + [sym_word] = ACTIONS(866), }, [467] = { + [sym_file_descriptor] = ACTIONS(2026), + [sym__concat] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [anon_sym_EQ_TILDE] = ACTIONS(2028), + [anon_sym_EQ_EQ] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_GT_GT] = ACTIONS(2028), + [anon_sym_AMP_GT] = ACTIONS(2028), + [anon_sym_AMP_GT_GT] = ACTIONS(2028), + [anon_sym_LT_AMP] = ACTIONS(2028), + [anon_sym_GT_AMP] = ACTIONS(2028), + [anon_sym_LT_LT] = ACTIONS(2028), + [anon_sym_LT_LT_DASH] = ACTIONS(2028), + [anon_sym_LT_LT_LT] = ACTIONS(2028), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym_raw_string] = ACTIONS(2028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(2028), + [anon_sym_LT_LPAREN] = ACTIONS(2028), + [anon_sym_GT_LPAREN] = ACTIONS(2028), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2026), + [sym_word] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), }, [468] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(2028), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(2030), }, [469] = { - [sym_file_descriptor] = ACTIONS(2030), - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [anon_sym_EQ_TILDE] = ACTIONS(2032), - [anon_sym_EQ_EQ] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2032), - [anon_sym_GT] = ACTIONS(2032), - [anon_sym_GT_GT] = ACTIONS(2032), - [anon_sym_AMP_GT] = ACTIONS(2032), - [anon_sym_AMP_GT_GT] = ACTIONS(2032), - [anon_sym_LT_AMP] = ACTIONS(2032), - [anon_sym_GT_AMP] = ACTIONS(2032), - [anon_sym_LT_LT] = ACTIONS(2032), - [anon_sym_LT_LT_DASH] = ACTIONS(2032), - [anon_sym_LT_LT_LT] = ACTIONS(2032), - [sym__special_characters] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2032), - [sym_raw_string] = ACTIONS(2032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), - [anon_sym_BQUOTE] = ACTIONS(2032), - [anon_sym_LT_LPAREN] = ACTIONS(2032), - [anon_sym_GT_LPAREN] = ACTIONS(2032), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), + [sym_word] = ACTIONS(866), }, [470] = { + [sym_file_descriptor] = ACTIONS(2034), + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [anon_sym_EQ_TILDE] = ACTIONS(2036), + [anon_sym_EQ_EQ] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_GT] = ACTIONS(2036), + [anon_sym_GT_GT] = ACTIONS(2036), + [anon_sym_AMP_GT] = ACTIONS(2036), + [anon_sym_AMP_GT_GT] = ACTIONS(2036), + [anon_sym_LT_AMP] = ACTIONS(2036), + [anon_sym_GT_AMP] = ACTIONS(2036), + [anon_sym_LT_LT] = ACTIONS(2036), + [anon_sym_LT_LT_DASH] = ACTIONS(2036), + [anon_sym_LT_LT_LT] = ACTIONS(2036), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [anon_sym_LT_LPAREN] = ACTIONS(2036), + [anon_sym_GT_LPAREN] = ACTIONS(2036), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2034), + [sym_word] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), }, [471] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(1948), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(2038), }, [472] = { - [sym_concatenation] = STATE(992), - [sym_string] = STATE(997), - [sym_array] = STATE(992), - [sym_simple_expansion] = STATE(997), - [sym_string_expansion] = STATE(997), - [sym_expansion] = STATE(997), - [sym_command_substitution] = STATE(997), - [sym_process_substitution] = STATE(997), - [sym__empty_value] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym__special_characters] = ACTIONS(2040), - [anon_sym_DQUOTE] = ACTIONS(2042), - [anon_sym_DOLLAR] = ACTIONS(2044), - [sym_raw_string] = ACTIONS(2046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2050), - [anon_sym_BQUOTE] = ACTIONS(2052), - [anon_sym_LT_LPAREN] = ACTIONS(2054), - [anon_sym_GT_LPAREN] = ACTIONS(2054), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2056), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [473] = { + [sym_concatenation] = STATE(995), + [sym_string] = STATE(1000), + [sym_array] = STATE(995), + [sym_simple_expansion] = STATE(1000), + [sym_string_expansion] = STATE(1000), + [sym_expansion] = STATE(1000), + [sym_command_substitution] = STATE(1000), + [sym_process_substitution] = STATE(1000), + [sym__empty_value] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2042), + [sym__special_characters] = ACTIONS(2044), + [anon_sym_DQUOTE] = ACTIONS(2046), + [anon_sym_DOLLAR] = ACTIONS(2048), + [sym_raw_string] = ACTIONS(2050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2052), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2054), + [anon_sym_BQUOTE] = ACTIONS(2056), + [anon_sym_LT_LPAREN] = ACTIONS(2058), + [anon_sym_GT_LPAREN] = ACTIONS(2058), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2060), + }, + [474] = { [sym_file_descriptor] = ACTIONS(440), [sym_variable_name] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(2058), + [anon_sym_PIPE] = ACTIONS(2062), [anon_sym_RPAREN] = ACTIONS(440), [anon_sym_PIPE_AMP] = ACTIONS(440), [anon_sym_AMP_AMP] = ACTIONS(440), [anon_sym_PIPE_PIPE] = ACTIONS(440), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_GT] = ACTIONS(2058), + [anon_sym_LT] = ACTIONS(2062), + [anon_sym_GT] = ACTIONS(2062), [anon_sym_GT_GT] = ACTIONS(440), - [anon_sym_AMP_GT] = ACTIONS(2058), + [anon_sym_AMP_GT] = ACTIONS(2062), [anon_sym_AMP_GT_GT] = ACTIONS(440), [anon_sym_LT_AMP] = ACTIONS(440), [anon_sym_GT_AMP] = ACTIONS(440), - [sym__special_characters] = ACTIONS(2058), + [sym__special_characters] = ACTIONS(2062), [anon_sym_DQUOTE] = ACTIONS(440), - [anon_sym_DOLLAR] = ACTIONS(2058), + [anon_sym_DOLLAR] = ACTIONS(2062), [sym_raw_string] = ACTIONS(440), [anon_sym_DOLLAR_LBRACE] = ACTIONS(440), [anon_sym_DOLLAR_LPAREN] = ACTIONS(440), @@ -24104,76 +24117,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(440), [anon_sym_GT_LPAREN] = ACTIONS(440), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2058), - }, - [474] = { - [anon_sym_in] = ACTIONS(2060), - [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2062), }, [475] = { - [sym_do_group] = STATE(1004), - [anon_sym_do] = ACTIONS(2062), - [sym_comment] = ACTIONS(56), + [anon_sym_in] = ACTIONS(2064), + [anon_sym_SEMI_SEMI] = ACTIONS(2066), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_LF] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2066), }, [476] = { - [anon_sym_then] = ACTIONS(2064), + [sym_do_group] = STATE(1008), + [anon_sym_do] = ACTIONS(2068), [sym_comment] = ACTIONS(56), }, [477] = { - [aux_sym_concatenation_repeat1] = STATE(246), - [sym__concat] = ACTIONS(452), - [anon_sym_in] = ACTIONS(2066), - [anon_sym_SEMI_SEMI] = ACTIONS(2068), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2068), - [anon_sym_LF] = ACTIONS(2068), - [anon_sym_AMP] = ACTIONS(2068), - }, - [478] = { - [aux_sym_concatenation_repeat1] = STATE(246), - [sym__concat] = ACTIONS(452), - [anon_sym_in] = ACTIONS(2070), - [anon_sym_SEMI_SEMI] = ACTIONS(2072), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_LF] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - }, - [479] = { - [anon_sym_in] = ACTIONS(2070), - [anon_sym_SEMI_SEMI] = ACTIONS(2072), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_LF] = ACTIONS(2072), - [anon_sym_AMP] = ACTIONS(2072), - }, - [480] = { - [sym_compound_statement] = STATE(1012), - [anon_sym_LPAREN] = ACTIONS(2074), - [anon_sym_LBRACE] = ACTIONS(2076), + [anon_sym_then] = ACTIONS(2070), [sym_comment] = ACTIONS(56), }, - [481] = { - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(2078), - [anon_sym_SEMI_SEMI] = ACTIONS(2080), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), + [478] = { + [aux_sym_concatenation_repeat1] = STATE(247), + [sym__concat] = ACTIONS(454), + [anon_sym_in] = ACTIONS(2072), + [anon_sym_SEMI_SEMI] = ACTIONS(2074), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_LF] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_LF] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + }, + [479] = { + [aux_sym_concatenation_repeat1] = STATE(247), + [sym__concat] = ACTIONS(454), + [anon_sym_in] = ACTIONS(2076), + [anon_sym_SEMI_SEMI] = ACTIONS(2078), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_LF] = ACTIONS(2078), + [anon_sym_AMP] = ACTIONS(2078), + }, + [480] = { + [anon_sym_in] = ACTIONS(2076), + [anon_sym_SEMI_SEMI] = ACTIONS(2078), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_LF] = ACTIONS(2078), + [anon_sym_AMP] = ACTIONS(2078), + }, + [481] = { + [sym_compound_statement] = STATE(1016), + [anon_sym_LPAREN] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2082), + [sym_comment] = ACTIONS(56), }, [482] = { + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_RPAREN] = ACTIONS(2084), + [anon_sym_SEMI_SEMI] = ACTIONS(2086), + [anon_sym_PIPE_AMP] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(556), + [anon_sym_PIPE_PIPE] = ACTIONS(556), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_LF] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + }, + [483] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(2078), - [anon_sym_SEMI_SEMI] = ACTIONS(2080), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_RPAREN] = ACTIONS(2084), + [anon_sym_SEMI_SEMI] = ACTIONS(2086), + [anon_sym_PIPE_AMP] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(556), + [anon_sym_PIPE_PIPE] = ACTIONS(556), [anon_sym_LT] = ACTIONS(382), [anon_sym_GT] = ACTIONS(382), [anon_sym_GT_GT] = ACTIONS(382), @@ -24192,26 +24209,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2080), - [anon_sym_LF] = ACTIONS(2080), - [anon_sym_AMP] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_LF] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), }, - [483] = { + [484] = { [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(1015), - [sym_while_statement] = STATE(1015), - [sym_if_statement] = STATE(1015), - [sym_case_statement] = STATE(1015), - [sym_function_definition] = STATE(1015), - [sym_subshell] = STATE(1015), - [sym_pipeline] = STATE(1015), - [sym_list] = STATE(1015), - [sym_command] = STATE(1015), + [sym_for_statement] = STATE(1019), + [sym_while_statement] = STATE(1019), + [sym_if_statement] = STATE(1019), + [sym_case_statement] = STATE(1019), + [sym_function_definition] = STATE(1019), + [sym_subshell] = STATE(1019), + [sym_pipeline] = STATE(1019), + [sym_list] = STATE(1019), + [sym_command] = STATE(1019), [sym_command_name] = STATE(70), - [sym_bracket_command] = STATE(1015), - [sym_variable_assignment] = STATE(1016), - [sym_declaration_command] = STATE(1015), - [sym_unset_command] = STATE(1015), + [sym_bracket_command] = STATE(1019), + [sym_variable_assignment] = STATE(1020), + [sym_declaration_command] = STATE(1019), + [sym_unset_command] = STATE(1019), [sym_subscript] = STATE(72), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -24221,7 +24238,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(63), [sym_command_substitution] = STATE(63), [sym_process_substitution] = STATE(63), - [aux_sym_program_repeat1] = STATE(326), + [aux_sym_program_repeat1] = STATE(327), [aux_sym_command_repeat1] = STATE(74), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(90), @@ -24259,7 +24276,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(120), }, - [484] = { + [485] = { [sym_concatenation] = STATE(84), [sym_string] = STATE(79), [sym_simple_expansion] = STATE(79), @@ -24267,11 +24284,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(79), [sym_command_substitution] = STATE(79), [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(350), + [aux_sym_command_repeat2] = STATE(351), [anon_sym_EQ_TILDE] = ACTIONS(122), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_RBRACK] = ACTIONS(2082), - [sym__special_characters] = ACTIONS(638), + [anon_sym_RBRACK] = ACTIONS(2088), + [sym__special_characters] = ACTIONS(640), [anon_sym_DQUOTE] = ACTIONS(126), [anon_sym_DOLLAR] = ACTIONS(128), [sym_raw_string] = ACTIONS(130), @@ -24283,7 +24300,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(140), }, - [485] = { + [486] = { [sym_concatenation] = STATE(95), [sym_string] = STATE(90), [sym_simple_expansion] = STATE(90), @@ -24291,11 +24308,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(90), [sym_command_substitution] = STATE(90), [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(372), + [aux_sym_command_repeat2] = STATE(373), [anon_sym_EQ_TILDE] = ACTIONS(142), [anon_sym_EQ_EQ] = ACTIONS(142), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2082), - [sym__special_characters] = ACTIONS(680), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2088), + [sym__special_characters] = ACTIONS(682), [anon_sym_DQUOTE] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [sym_raw_string] = ACTIONS(150), @@ -24307,41 +24324,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(160), }, - [486] = { - [sym__assignment] = STATE(1019), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(2084), - [anon_sym_PLUS_EQ] = ACTIONS(2084), - [sym_comment] = ACTIONS(56), - }, [487] = { - [aux_sym_concatenation_repeat1] = STATE(1021), - [sym__concat] = ACTIONS(2086), - [sym_variable_name] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(686), - [anon_sym_PIPE_AMP] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(686), - [anon_sym_PIPE_PIPE] = ACTIONS(686), - [sym__special_characters] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(2088), - [sym_raw_string] = ACTIONS(686), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(686), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(686), - [anon_sym_BQUOTE] = ACTIONS(686), - [anon_sym_LT_LPAREN] = ACTIONS(686), - [anon_sym_GT_LPAREN] = ACTIONS(686), + [sym__assignment] = STATE(1023), + [anon_sym_LBRACK] = ACTIONS(64), + [anon_sym_EQ] = ACTIONS(2090), + [anon_sym_PLUS_EQ] = ACTIONS(2090), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2088), - [sym_word] = ACTIONS(688), }, [488] = { + [aux_sym_concatenation_repeat1] = STATE(1025), + [sym__concat] = ACTIONS(2092), + [sym_variable_name] = ACTIONS(688), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_RPAREN] = ACTIONS(688), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [sym__special_characters] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(2094), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2094), + [sym_word] = ACTIONS(690), + }, + [489] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1023), - [anon_sym_DQUOTE] = ACTIONS(2090), + [aux_sym_string_repeat1] = STATE(1027), + [anon_sym_DQUOTE] = ACTIONS(2096), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -24349,180 +24366,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [489] = { - [sym_string] = STATE(1025), - [anon_sym_DQUOTE] = ACTIONS(902), - [anon_sym_DOLLAR] = ACTIONS(2092), - [sym_raw_string] = ACTIONS(2094), - [anon_sym_POUND] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2092), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2096), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_AT] = ACTIONS(2092), - [anon_sym_QMARK] = ACTIONS(2092), - [anon_sym_0] = ACTIONS(2098), - [anon_sym__] = ACTIONS(2098), - }, [490] = { - [aux_sym_concatenation_repeat1] = STATE(1021), - [sym__concat] = ACTIONS(2086), - [sym_variable_name] = ACTIONS(702), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(702), - [anon_sym_PIPE_AMP] = ACTIONS(702), - [anon_sym_AMP_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(702), - [sym__special_characters] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(702), - [anon_sym_DOLLAR] = ACTIONS(2100), - [sym_raw_string] = ACTIONS(702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), - [anon_sym_BQUOTE] = ACTIONS(702), - [anon_sym_LT_LPAREN] = ACTIONS(702), - [anon_sym_GT_LPAREN] = ACTIONS(702), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2100), - [sym_word] = ACTIONS(704), + [sym_string] = STATE(1029), + [anon_sym_DQUOTE] = ACTIONS(904), + [anon_sym_DOLLAR] = ACTIONS(2098), + [sym_raw_string] = ACTIONS(2100), + [anon_sym_POUND] = ACTIONS(2098), + [anon_sym_DASH] = ACTIONS(2098), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2102), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_AT] = ACTIONS(2098), + [anon_sym_QMARK] = ACTIONS(2098), + [anon_sym_0] = ACTIONS(2104), + [anon_sym__] = ACTIONS(2104), }, [491] = { - [sym_subscript] = STATE(1031), - [sym_variable_name] = ACTIONS(2102), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_POUND] = ACTIONS(2106), - [anon_sym_DASH] = ACTIONS(2104), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2108), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_AT] = ACTIONS(2104), - [anon_sym_QMARK] = ACTIONS(2104), - [anon_sym_0] = ACTIONS(2110), - [anon_sym__] = ACTIONS(2110), + [aux_sym_concatenation_repeat1] = STATE(1025), + [sym__concat] = ACTIONS(2092), + [sym_variable_name] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_RPAREN] = ACTIONS(704), + [anon_sym_PIPE_AMP] = ACTIONS(704), + [anon_sym_AMP_AMP] = ACTIONS(704), + [anon_sym_PIPE_PIPE] = ACTIONS(704), + [sym__special_characters] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(2106), + [sym_raw_string] = ACTIONS(704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(704), + [anon_sym_LT_LPAREN] = ACTIONS(704), + [anon_sym_GT_LPAREN] = ACTIONS(704), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2106), + [sym_word] = ACTIONS(706), }, [492] = { - [sym_for_statement] = STATE(1032), - [sym_while_statement] = STATE(1032), - [sym_if_statement] = STATE(1032), - [sym_case_statement] = STATE(1032), - [sym_function_definition] = STATE(1032), - [sym_subshell] = STATE(1032), - [sym_pipeline] = STATE(1032), - [sym_list] = STATE(1032), - [sym_command] = STATE(1032), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1032), - [sym_variable_assignment] = STATE(1033), - [sym_declaration_command] = STATE(1032), - [sym_unset_command] = STATE(1032), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [sym_subscript] = STATE(1035), + [sym_variable_name] = ACTIONS(2108), + [anon_sym_DOLLAR] = ACTIONS(2110), + [anon_sym_POUND] = ACTIONS(2112), + [anon_sym_DASH] = ACTIONS(2110), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_AT] = ACTIONS(2110), + [anon_sym_QMARK] = ACTIONS(2110), + [anon_sym_0] = ACTIONS(2116), + [anon_sym__] = ACTIONS(2116), }, [493] = { - [sym_for_statement] = STATE(1034), - [sym_while_statement] = STATE(1034), - [sym_if_statement] = STATE(1034), - [sym_case_statement] = STATE(1034), - [sym_function_definition] = STATE(1034), - [sym_subshell] = STATE(1034), - [sym_pipeline] = STATE(1034), - [sym_list] = STATE(1034), - [sym_command] = STATE(1034), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1034), - [sym_variable_assignment] = STATE(1035), - [sym_declaration_command] = STATE(1034), - [sym_unset_command] = STATE(1034), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), - }, - [494] = { [sym_for_statement] = STATE(1036), [sym_while_statement] = STATE(1036), [sym_if_statement] = STATE(1036), @@ -24583,242 +24478,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [495] = { - [sym_variable_name] = ACTIONS(716), - [anon_sym_PIPE] = ACTIONS(2112), - [anon_sym_RPAREN] = ACTIONS(716), - [anon_sym_PIPE_AMP] = ACTIONS(716), - [anon_sym_AMP_AMP] = ACTIONS(716), - [anon_sym_PIPE_PIPE] = ACTIONS(716), - [sym__special_characters] = ACTIONS(2112), - [anon_sym_DQUOTE] = ACTIONS(716), - [anon_sym_DOLLAR] = ACTIONS(2112), - [sym_raw_string] = ACTIONS(716), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(716), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(716), - [anon_sym_BQUOTE] = ACTIONS(716), - [anon_sym_LT_LPAREN] = ACTIONS(716), - [anon_sym_GT_LPAREN] = ACTIONS(716), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2112), - [sym_word] = ACTIONS(718), - }, - [496] = { - [sym_variable_name] = ACTIONS(702), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_RPAREN] = ACTIONS(702), - [anon_sym_PIPE_AMP] = ACTIONS(702), - [anon_sym_AMP_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(702), - [sym__special_characters] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(702), - [anon_sym_DOLLAR] = ACTIONS(2100), - [sym_raw_string] = ACTIONS(702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), - [anon_sym_BQUOTE] = ACTIONS(702), - [anon_sym_LT_LPAREN] = ACTIONS(702), - [anon_sym_GT_LPAREN] = ACTIONS(702), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2100), - [sym_word] = ACTIONS(704), - }, - [497] = { - [sym__assignment] = STATE(1019), - [anon_sym_EQ] = ACTIONS(2084), - [anon_sym_PLUS_EQ] = ACTIONS(2084), - [sym_comment] = ACTIONS(56), - }, - [498] = { - [sym_variable_assignment] = STATE(496), - [sym_subscript] = STATE(497), - [sym_concatenation] = STATE(496), - [sym_string] = STATE(490), - [sym_simple_expansion] = STATE(490), - [sym_string_expansion] = STATE(490), - [sym_expansion] = STATE(490), - [sym_command_substitution] = STATE(490), - [sym_process_substitution] = STATE(490), - [aux_sym_declaration_command_repeat1] = STATE(1038), - [sym_variable_name] = ACTIONS(894), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_RPAREN] = ACTIONS(2116), - [anon_sym_PIPE_AMP] = ACTIONS(2116), - [anon_sym_AMP_AMP] = ACTIONS(2116), - [anon_sym_PIPE_PIPE] = ACTIONS(2116), - [sym__special_characters] = ACTIONS(900), - [anon_sym_DQUOTE] = ACTIONS(902), - [anon_sym_DOLLAR] = ACTIONS(904), - [sym_raw_string] = ACTIONS(906), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(908), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(910), - [anon_sym_BQUOTE] = ACTIONS(912), - [anon_sym_LT_LPAREN] = ACTIONS(914), - [anon_sym_GT_LPAREN] = ACTIONS(914), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(916), - [sym_word] = ACTIONS(918), - }, - [499] = { - [aux_sym_concatenation_repeat1] = STATE(1040), - [sym__concat] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_RPAREN] = ACTIONS(2122), - [anon_sym_PIPE_AMP] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [sym__special_characters] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2120), - [sym_raw_string] = ACTIONS(2122), - [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_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2120), - [sym_word] = ACTIONS(724), - }, - [500] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1042), - [anon_sym_DQUOTE] = ACTIONS(2124), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [501] = { - [sym_string] = STATE(1044), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_DOLLAR] = ACTIONS(2126), - [sym_raw_string] = ACTIONS(2128), - [anon_sym_POUND] = ACTIONS(2126), - [anon_sym_DASH] = ACTIONS(2126), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2130), - [anon_sym_STAR] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(2126), - [anon_sym_QMARK] = ACTIONS(2126), - [anon_sym_0] = ACTIONS(2132), - [anon_sym__] = ACTIONS(2132), - }, - [502] = { - [aux_sym_concatenation_repeat1] = STATE(1040), - [sym__concat] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_PIPE_AMP] = ACTIONS(2136), - [anon_sym_AMP_AMP] = ACTIONS(2136), - [anon_sym_PIPE_PIPE] = ACTIONS(2136), - [sym__special_characters] = ACTIONS(2134), - [anon_sym_DQUOTE] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2136), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2136), - [anon_sym_BQUOTE] = ACTIONS(2136), - [anon_sym_LT_LPAREN] = ACTIONS(2136), - [anon_sym_GT_LPAREN] = ACTIONS(2136), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), - [sym_word] = ACTIONS(738), - }, - [503] = { - [sym_subscript] = STATE(1050), - [sym_variable_name] = ACTIONS(2138), - [anon_sym_DOLLAR] = ACTIONS(2140), - [anon_sym_POUND] = ACTIONS(2142), - [anon_sym_DASH] = ACTIONS(2140), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2144), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_QMARK] = ACTIONS(2140), - [anon_sym_0] = ACTIONS(2146), - [anon_sym__] = ACTIONS(2146), - }, - [504] = { - [sym_for_statement] = STATE(1051), - [sym_while_statement] = STATE(1051), - [sym_if_statement] = STATE(1051), - [sym_case_statement] = STATE(1051), - [sym_function_definition] = STATE(1051), - [sym_subshell] = STATE(1051), - [sym_pipeline] = STATE(1051), - [sym_list] = STATE(1051), - [sym_command] = STATE(1051), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1051), - [sym_variable_assignment] = STATE(1052), - [sym_declaration_command] = STATE(1051), - [sym_unset_command] = STATE(1051), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [505] = { - [sym_for_statement] = STATE(1053), - [sym_while_statement] = STATE(1053), - [sym_if_statement] = STATE(1053), - [sym_case_statement] = STATE(1053), - [sym_function_definition] = STATE(1053), - [sym_subshell] = STATE(1053), - [sym_pipeline] = STATE(1053), - [sym_list] = STATE(1053), - [sym_command] = STATE(1053), + [494] = { + [sym_for_statement] = STATE(1038), + [sym_while_statement] = STATE(1038), + [sym_if_statement] = STATE(1038), + [sym_case_statement] = STATE(1038), + [sym_function_definition] = STATE(1038), + [sym_subshell] = STATE(1038), + [sym_pipeline] = STATE(1038), + [sym_list] = STATE(1038), + [sym_command] = STATE(1038), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1053), - [sym_variable_assignment] = STATE(1054), - [sym_declaration_command] = STATE(1053), - [sym_unset_command] = STATE(1053), + [sym_bracket_command] = STATE(1038), + [sym_variable_assignment] = STATE(1039), + [sym_declaration_command] = STATE(1038), + [sym_unset_command] = STATE(1038), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -24865,7 +24539,228 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [506] = { + [495] = { + [sym_for_statement] = STATE(1040), + [sym_while_statement] = STATE(1040), + [sym_if_statement] = STATE(1040), + [sym_case_statement] = STATE(1040), + [sym_function_definition] = STATE(1040), + [sym_subshell] = STATE(1040), + [sym_pipeline] = STATE(1040), + [sym_list] = STATE(1040), + [sym_command] = STATE(1040), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1040), + [sym_variable_assignment] = STATE(1041), + [sym_declaration_command] = STATE(1040), + [sym_unset_command] = STATE(1040), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(302), + }, + [496] = { + [sym_variable_name] = ACTIONS(718), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_PIPE_AMP] = ACTIONS(718), + [anon_sym_AMP_AMP] = ACTIONS(718), + [anon_sym_PIPE_PIPE] = ACTIONS(718), + [sym__special_characters] = ACTIONS(2118), + [anon_sym_DQUOTE] = ACTIONS(718), + [anon_sym_DOLLAR] = ACTIONS(2118), + [sym_raw_string] = ACTIONS(718), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(718), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(718), + [anon_sym_BQUOTE] = ACTIONS(718), + [anon_sym_LT_LPAREN] = ACTIONS(718), + [anon_sym_GT_LPAREN] = ACTIONS(718), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2118), + [sym_word] = ACTIONS(720), + }, + [497] = { + [sym_variable_name] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_RPAREN] = ACTIONS(704), + [anon_sym_PIPE_AMP] = ACTIONS(704), + [anon_sym_AMP_AMP] = ACTIONS(704), + [anon_sym_PIPE_PIPE] = ACTIONS(704), + [sym__special_characters] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(2106), + [sym_raw_string] = ACTIONS(704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(704), + [anon_sym_LT_LPAREN] = ACTIONS(704), + [anon_sym_GT_LPAREN] = ACTIONS(704), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2106), + [sym_word] = ACTIONS(706), + }, + [498] = { + [sym__assignment] = STATE(1023), + [anon_sym_EQ] = ACTIONS(2090), + [anon_sym_PLUS_EQ] = ACTIONS(2090), + [sym_comment] = ACTIONS(56), + }, + [499] = { + [sym_variable_assignment] = STATE(497), + [sym_subscript] = STATE(498), + [sym_concatenation] = STATE(497), + [sym_string] = STATE(491), + [sym_simple_expansion] = STATE(491), + [sym_string_expansion] = STATE(491), + [sym_expansion] = STATE(491), + [sym_command_substitution] = STATE(491), + [sym_process_substitution] = STATE(491), + [aux_sym_declaration_command_repeat1] = STATE(1042), + [sym_variable_name] = ACTIONS(896), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_RPAREN] = ACTIONS(2122), + [anon_sym_PIPE_AMP] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [sym__special_characters] = ACTIONS(902), + [anon_sym_DQUOTE] = ACTIONS(904), + [anon_sym_DOLLAR] = ACTIONS(906), + [sym_raw_string] = ACTIONS(908), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(910), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(912), + [anon_sym_BQUOTE] = ACTIONS(914), + [anon_sym_LT_LPAREN] = ACTIONS(916), + [anon_sym_GT_LPAREN] = ACTIONS(916), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(918), + [sym_word] = ACTIONS(920), + }, + [500] = { + [aux_sym_concatenation_repeat1] = STATE(1044), + [sym__concat] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_RPAREN] = ACTIONS(2128), + [anon_sym_PIPE_AMP] = ACTIONS(2128), + [anon_sym_AMP_AMP] = ACTIONS(2128), + [anon_sym_PIPE_PIPE] = ACTIONS(2128), + [sym__special_characters] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2128), + [anon_sym_DOLLAR] = ACTIONS(2126), + [sym_raw_string] = ACTIONS(2128), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2128), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2128), + [anon_sym_BQUOTE] = ACTIONS(2128), + [anon_sym_LT_LPAREN] = ACTIONS(2128), + [anon_sym_GT_LPAREN] = ACTIONS(2128), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2126), + [sym_word] = ACTIONS(726), + }, + [501] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1046), + [anon_sym_DQUOTE] = ACTIONS(2130), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [502] = { + [sym_string] = STATE(1048), + [anon_sym_DQUOTE] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(2132), + [sym_raw_string] = ACTIONS(2134), + [anon_sym_POUND] = ACTIONS(2132), + [anon_sym_DASH] = ACTIONS(2132), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2132), + [anon_sym_AT] = ACTIONS(2132), + [anon_sym_QMARK] = ACTIONS(2132), + [anon_sym_0] = ACTIONS(2138), + [anon_sym__] = ACTIONS(2138), + }, + [503] = { + [aux_sym_concatenation_repeat1] = STATE(1044), + [sym__concat] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_RPAREN] = ACTIONS(2142), + [anon_sym_PIPE_AMP] = ACTIONS(2142), + [anon_sym_AMP_AMP] = ACTIONS(2142), + [anon_sym_PIPE_PIPE] = ACTIONS(2142), + [sym__special_characters] = ACTIONS(2140), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_DOLLAR] = ACTIONS(2140), + [sym_raw_string] = ACTIONS(2142), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2142), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2142), + [anon_sym_BQUOTE] = ACTIONS(2142), + [anon_sym_LT_LPAREN] = ACTIONS(2142), + [anon_sym_GT_LPAREN] = ACTIONS(2142), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2140), + [sym_word] = ACTIONS(740), + }, + [504] = { + [sym_subscript] = STATE(1054), + [sym_variable_name] = ACTIONS(2144), + [anon_sym_DOLLAR] = ACTIONS(2146), + [anon_sym_POUND] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2146), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2150), + [anon_sym_STAR] = ACTIONS(2146), + [anon_sym_AT] = ACTIONS(2146), + [anon_sym_QMARK] = ACTIONS(2146), + [anon_sym_0] = ACTIONS(2152), + [anon_sym__] = ACTIONS(2152), + }, + [505] = { [sym_for_statement] = STATE(1055), [sym_while_statement] = STATE(1055), [sym_if_statement] = STATE(1055), @@ -24926,1189 +24821,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [507] = { - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_PIPE_AMP] = ACTIONS(2150), - [anon_sym_AMP_AMP] = ACTIONS(2150), - [anon_sym_PIPE_PIPE] = ACTIONS(2150), - [sym__special_characters] = ACTIONS(2148), - [anon_sym_DQUOTE] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2148), - [sym_raw_string] = ACTIONS(2150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2150), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2150), - [anon_sym_BQUOTE] = ACTIONS(2150), - [anon_sym_LT_LPAREN] = ACTIONS(2150), - [anon_sym_GT_LPAREN] = ACTIONS(2150), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2148), - [sym_word] = ACTIONS(750), - }, - [508] = { - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_RPAREN] = ACTIONS(2136), - [anon_sym_PIPE_AMP] = ACTIONS(2136), - [anon_sym_AMP_AMP] = ACTIONS(2136), - [anon_sym_PIPE_PIPE] = ACTIONS(2136), - [sym__special_characters] = ACTIONS(2134), - [anon_sym_DQUOTE] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2136), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2136), - [anon_sym_BQUOTE] = ACTIONS(2136), - [anon_sym_LT_LPAREN] = ACTIONS(2136), - [anon_sym_GT_LPAREN] = ACTIONS(2136), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), - [sym_word] = ACTIONS(738), - }, - [509] = { - [sym_concatenation] = STATE(508), - [sym_string] = STATE(502), - [sym_simple_expansion] = STATE(502), - [sym_string_expansion] = STATE(502), - [sym_expansion] = STATE(502), - [sym_command_substitution] = STATE(502), - [sym_process_substitution] = STATE(502), - [aux_sym_unset_command_repeat1] = STATE(1057), - [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), - [sym__special_characters] = ACTIONS(924), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_DOLLAR] = ACTIONS(928), - [sym_raw_string] = 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_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(940), - [sym_word] = ACTIONS(942), - }, - [510] = { - [sym_string] = STATE(1058), - [sym_simple_expansion] = STATE(1058), - [sym_string_expansion] = STATE(1058), - [sym_expansion] = STATE(1058), - [sym_command_substitution] = STATE(1058), - [sym_process_substitution] = STATE(1058), - [sym__special_characters] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(2158), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2156), - }, - [511] = { - [aux_sym_concatenation_repeat1] = STATE(1059), - [sym_file_descriptor] = ACTIONS(788), - [sym__concat] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_PIPE_AMP] = ACTIONS(788), - [anon_sym_AMP_AMP] = ACTIONS(788), - [anon_sym_PIPE_PIPE] = ACTIONS(788), - [anon_sym_EQ_TILDE] = ACTIONS(1567), - [anon_sym_EQ_EQ] = ACTIONS(1567), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_GT] = ACTIONS(1567), - [anon_sym_GT_GT] = ACTIONS(788), - [anon_sym_AMP_GT] = ACTIONS(1567), - [anon_sym_AMP_GT_GT] = ACTIONS(788), - [anon_sym_LT_AMP] = ACTIONS(788), - [anon_sym_GT_AMP] = ACTIONS(788), - [anon_sym_LT_LT] = ACTIONS(1567), - [anon_sym_LT_LT_DASH] = ACTIONS(788), - [anon_sym_LT_LT_LT] = ACTIONS(788), - [sym__special_characters] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(1567), - [sym_raw_string] = ACTIONS(788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LT_LPAREN] = ACTIONS(788), - [anon_sym_GT_LPAREN] = ACTIONS(788), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(790), - }, - [512] = { - [sym_file_descriptor] = ACTIONS(792), - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_EQ_TILDE] = ACTIONS(1569), - [anon_sym_EQ_EQ] = ACTIONS(1569), - [anon_sym_LT] = ACTIONS(1569), - [anon_sym_GT] = ACTIONS(1569), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_AMP_GT] = ACTIONS(1569), - [anon_sym_AMP_GT_GT] = ACTIONS(792), - [anon_sym_LT_AMP] = ACTIONS(792), - [anon_sym_GT_AMP] = ACTIONS(792), - [anon_sym_LT_LT] = ACTIONS(1569), - [anon_sym_LT_LT_DASH] = ACTIONS(792), - [anon_sym_LT_LT_LT] = ACTIONS(792), - [sym__special_characters] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(1569), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(794), - }, - [513] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [514] = { - [sym_file_descriptor] = ACTIONS(824), - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_PIPE_AMP] = ACTIONS(824), - [anon_sym_AMP_AMP] = ACTIONS(824), - [anon_sym_PIPE_PIPE] = ACTIONS(824), - [anon_sym_EQ_TILDE] = ACTIONS(1573), - [anon_sym_EQ_EQ] = ACTIONS(1573), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(824), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(824), - [anon_sym_LT_AMP] = ACTIONS(824), - [anon_sym_GT_AMP] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(1573), - [anon_sym_LT_LT_DASH] = ACTIONS(824), - [anon_sym_LT_LT_LT] = ACTIONS(824), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_LT_LPAREN] = ACTIONS(824), - [anon_sym_GT_LPAREN] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(826), - }, - [515] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1575), - [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_EQ_TILDE] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1575), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(1575), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [anon_sym_LT_LT] = ACTIONS(1575), - [anon_sym_LT_LT_DASH] = ACTIONS(828), - [anon_sym_LT_LT_LT] = ACTIONS(828), - [sym__special_characters] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1575), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(830), - }, - [516] = { - [sym_file_descriptor] = ACTIONS(832), - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_EQ_TILDE] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1577), - [anon_sym_GT_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(1577), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT_LT_DASH] = ACTIONS(832), - [anon_sym_LT_LT_LT] = ACTIONS(832), - [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(834), - }, - [517] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(2162), - [sym_comment] = ACTIONS(56), - }, - [518] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1064), - [anon_sym_RBRACE] = ACTIONS(2164), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2166), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [519] = { - [sym_subscript] = STATE(1068), - [sym_variable_name] = ACTIONS(2168), - [anon_sym_DOLLAR] = ACTIONS(2170), - [anon_sym_DASH] = ACTIONS(2170), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2172), - [anon_sym_STAR] = ACTIONS(2170), - [anon_sym_AT] = ACTIONS(2170), - [anon_sym_QMARK] = ACTIONS(2170), - [anon_sym_0] = ACTIONS(2174), - [anon_sym__] = ACTIONS(2174), - }, - [520] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1071), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2178), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [521] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1074), - [anon_sym_RBRACE] = ACTIONS(2180), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2182), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [522] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2184), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [523] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2184), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [524] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(2184), - [sym_comment] = ACTIONS(56), - }, - [525] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(2184), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [526] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [527] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [528] = { - [anon_sym_RPAREN] = ACTIONS(2188), - [sym_comment] = ACTIONS(56), - }, - [529] = { - [sym_for_statement] = STATE(1078), - [sym_while_statement] = STATE(1078), - [sym_if_statement] = STATE(1078), - [sym_case_statement] = STATE(1078), - [sym_function_definition] = STATE(1078), - [sym_subshell] = STATE(1078), - [sym_pipeline] = STATE(1078), - [sym_list] = STATE(1078), - [sym_command] = STATE(1078), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1078), - [sym_variable_assignment] = STATE(1079), - [sym_declaration_command] = STATE(1078), - [sym_unset_command] = STATE(1078), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [530] = { - [sym_file_descriptor] = ACTIONS(2190), - [sym__concat] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_AMP_GT] = ACTIONS(2192), - [anon_sym_AMP_GT_GT] = ACTIONS(2192), - [anon_sym_LT_AMP] = ACTIONS(2192), - [anon_sym_GT_AMP] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_LT_LT_DASH] = ACTIONS(2192), - [anon_sym_LT_LT_LT] = ACTIONS(2192), - [sym__special_characters] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [sym_raw_string] = ACTIONS(2192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), - [anon_sym_BQUOTE] = ACTIONS(2192), - [anon_sym_LT_LPAREN] = ACTIONS(2192), - [anon_sym_GT_LPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), - }, - [531] = { - [sym_for_statement] = STATE(1080), - [sym_while_statement] = STATE(1080), - [sym_if_statement] = STATE(1080), - [sym_case_statement] = STATE(1080), - [sym_function_definition] = STATE(1080), - [sym_subshell] = STATE(1080), - [sym_pipeline] = STATE(1080), - [sym_list] = STATE(1080), - [sym_command] = STATE(1080), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1080), - [sym_variable_assignment] = STATE(1081), - [sym_declaration_command] = STATE(1080), - [sym_unset_command] = STATE(1080), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [532] = { - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2194), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_AMP_GT] = ACTIONS(2194), - [anon_sym_AMP_GT_GT] = ACTIONS(2196), - [anon_sym_LT_AMP] = ACTIONS(2196), - [anon_sym_GT_AMP] = ACTIONS(2196), - [sym_comment] = ACTIONS(56), - }, - [533] = { - [sym_concatenation] = STATE(1085), - [sym_string] = STATE(1084), - [sym_simple_expansion] = STATE(1084), - [sym_string_expansion] = STATE(1084), - [sym_expansion] = STATE(1084), - [sym_command_substitution] = STATE(1084), - [sym_process_substitution] = STATE(1084), - [sym__special_characters] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2200), - [anon_sym_DOLLAR] = ACTIONS(2202), - [sym_raw_string] = ACTIONS(2204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2208), - [anon_sym_BQUOTE] = ACTIONS(2210), - [anon_sym_LT_LPAREN] = ACTIONS(2212), - [anon_sym_GT_LPAREN] = ACTIONS(2212), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2204), - [sym_regex] = ACTIONS(2214), - }, - [534] = { - [sym_concatenation] = STATE(1094), - [sym_string] = STATE(1089), - [sym_simple_expansion] = STATE(1089), - [sym_string_expansion] = STATE(1089), - [sym_expansion] = STATE(1089), - [sym_command_substitution] = STATE(1089), - [sym_process_substitution] = STATE(1089), - [sym__special_characters] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2220), - [sym_raw_string] = ACTIONS(2222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2226), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2230), - [anon_sym_GT_LPAREN] = ACTIONS(2230), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2232), - }, - [535] = { - [sym_heredoc] = STATE(1097), - [sym__simple_heredoc] = ACTIONS(2234), - [sym__heredoc_beginning] = ACTIONS(2236), - [sym_comment] = ACTIONS(56), - }, - [536] = { - [sym_concatenation] = STATE(1100), - [sym_string] = STATE(1099), - [sym_simple_expansion] = STATE(1099), - [sym_string_expansion] = STATE(1099), - [sym_expansion] = STATE(1099), - [sym_command_substitution] = STATE(1099), - [sym_process_substitution] = STATE(1099), - [sym__special_characters] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2220), - [sym_raw_string] = ACTIONS(2240), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2226), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2230), - [anon_sym_GT_LPAREN] = ACTIONS(2230), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2242), - }, - [537] = { - [aux_sym_concatenation_repeat1] = STATE(511), - [sym_file_descriptor] = ACTIONS(606), - [sym__concat] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(604), - [anon_sym_RPAREN] = ACTIONS(606), - [anon_sym_PIPE_AMP] = ACTIONS(606), - [anon_sym_AMP_AMP] = ACTIONS(606), - [anon_sym_PIPE_PIPE] = ACTIONS(606), - [anon_sym_EQ_TILDE] = ACTIONS(604), - [anon_sym_EQ_EQ] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(604), - [anon_sym_GT] = ACTIONS(604), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_AMP_GT] = ACTIONS(604), - [anon_sym_AMP_GT_GT] = ACTIONS(606), - [anon_sym_LT_AMP] = ACTIONS(606), - [anon_sym_GT_AMP] = ACTIONS(606), - [anon_sym_LT_LT] = ACTIONS(604), - [anon_sym_LT_LT_DASH] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(606), - [sym__special_characters] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(606), - [anon_sym_DOLLAR] = ACTIONS(604), - [sym_raw_string] = ACTIONS(606), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(606), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), - [anon_sym_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(606), - [anon_sym_GT_LPAREN] = ACTIONS(606), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(608), - }, - [538] = { - [aux_sym_concatenation_repeat1] = STATE(511), - [sym_file_descriptor] = ACTIONS(622), - [sym__concat] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(620), - [anon_sym_RPAREN] = ACTIONS(622), - [anon_sym_PIPE_AMP] = ACTIONS(622), - [anon_sym_AMP_AMP] = ACTIONS(622), - [anon_sym_PIPE_PIPE] = ACTIONS(622), - [anon_sym_EQ_TILDE] = ACTIONS(620), - [anon_sym_EQ_EQ] = ACTIONS(620), - [anon_sym_LT] = ACTIONS(620), - [anon_sym_GT] = ACTIONS(620), - [anon_sym_GT_GT] = ACTIONS(622), - [anon_sym_AMP_GT] = ACTIONS(620), - [anon_sym_AMP_GT_GT] = ACTIONS(622), - [anon_sym_LT_AMP] = ACTIONS(622), - [anon_sym_GT_AMP] = ACTIONS(622), - [anon_sym_LT_LT] = ACTIONS(620), - [anon_sym_LT_LT_DASH] = ACTIONS(622), - [anon_sym_LT_LT_LT] = ACTIONS(622), - [sym__special_characters] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(622), - [anon_sym_DOLLAR] = ACTIONS(620), - [sym_raw_string] = ACTIONS(622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(622), - [anon_sym_BQUOTE] = ACTIONS(622), - [anon_sym_LT_LPAREN] = ACTIONS(622), - [anon_sym_GT_LPAREN] = ACTIONS(622), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(624), - }, - [539] = { - [sym_file_descriptor] = ACTIONS(1144), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_RPAREN] = ACTIONS(1144), - [anon_sym_PIPE_AMP] = ACTIONS(1144), - [anon_sym_AMP_AMP] = ACTIONS(1144), - [anon_sym_PIPE_PIPE] = ACTIONS(1144), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_GT] = ACTIONS(2244), - [anon_sym_GT_GT] = ACTIONS(1144), - [anon_sym_AMP_GT] = ACTIONS(2244), - [anon_sym_AMP_GT_GT] = ACTIONS(1144), - [anon_sym_LT_AMP] = ACTIONS(1144), - [anon_sym_GT_AMP] = ACTIONS(1144), - [anon_sym_LT_LT] = ACTIONS(2244), - [anon_sym_LT_LT_DASH] = ACTIONS(1144), - [anon_sym_LT_LT_LT] = ACTIONS(1144), - [anon_sym_BQUOTE] = ACTIONS(1144), - [sym_comment] = ACTIONS(56), - }, - [540] = { - [sym_file_descriptor] = ACTIONS(622), - [anon_sym_PIPE] = ACTIONS(620), - [anon_sym_RPAREN] = ACTIONS(622), - [anon_sym_PIPE_AMP] = ACTIONS(622), - [anon_sym_AMP_AMP] = ACTIONS(622), - [anon_sym_PIPE_PIPE] = ACTIONS(622), - [anon_sym_EQ_TILDE] = ACTIONS(620), - [anon_sym_EQ_EQ] = ACTIONS(620), - [anon_sym_LT] = ACTIONS(620), - [anon_sym_GT] = ACTIONS(620), - [anon_sym_GT_GT] = ACTIONS(622), - [anon_sym_AMP_GT] = ACTIONS(620), - [anon_sym_AMP_GT_GT] = ACTIONS(622), - [anon_sym_LT_AMP] = ACTIONS(622), - [anon_sym_GT_AMP] = ACTIONS(622), - [anon_sym_LT_LT] = ACTIONS(620), - [anon_sym_LT_LT_DASH] = ACTIONS(622), - [anon_sym_LT_LT_LT] = ACTIONS(622), - [sym__special_characters] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(622), - [anon_sym_DOLLAR] = ACTIONS(620), - [sym_raw_string] = ACTIONS(622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(622), - [anon_sym_BQUOTE] = ACTIONS(622), - [anon_sym_LT_LPAREN] = ACTIONS(622), - [anon_sym_GT_LPAREN] = ACTIONS(622), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(624), - }, - [541] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1101), - [sym_file_descriptor] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(2248), - [anon_sym_PIPE_AMP] = ACTIONS(2248), - [anon_sym_AMP_AMP] = ACTIONS(2248), - [anon_sym_PIPE_PIPE] = ACTIONS(2248), - [anon_sym_LT] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_AMP_GT] = ACTIONS(988), - [anon_sym_AMP_GT_GT] = ACTIONS(990), - [anon_sym_LT_AMP] = ACTIONS(990), - [anon_sym_GT_AMP] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(996), - [sym_comment] = ACTIONS(56), - }, - [542] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [sym_concatenation] = STATE(540), - [sym_string] = STATE(538), - [sym_simple_expansion] = STATE(538), - [sym_string_expansion] = STATE(538), - [sym_expansion] = STATE(538), - [sym_command_substitution] = STATE(538), - [sym_process_substitution] = STATE(538), - [aux_sym_while_statement_repeat1] = STATE(1102), - [aux_sym_command_repeat2] = STATE(1103), - [sym_file_descriptor] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(2248), - [anon_sym_PIPE_AMP] = ACTIONS(2248), - [anon_sym_AMP_AMP] = ACTIONS(2248), - [anon_sym_PIPE_PIPE] = ACTIONS(2248), - [anon_sym_EQ_TILDE] = ACTIONS(986), - [anon_sym_EQ_EQ] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_AMP_GT] = ACTIONS(988), - [anon_sym_AMP_GT_GT] = ACTIONS(990), - [anon_sym_LT_AMP] = ACTIONS(990), - [anon_sym_GT_AMP] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(996), - [sym__special_characters] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(1000), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1002), - }, - [543] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [sym_concatenation] = STATE(540), - [sym_string] = STATE(538), - [sym_simple_expansion] = STATE(538), - [sym_string_expansion] = STATE(538), - [sym_expansion] = STATE(538), - [sym_command_substitution] = STATE(538), - [sym_process_substitution] = STATE(538), - [aux_sym_while_statement_repeat1] = STATE(1102), - [aux_sym_command_repeat2] = STATE(1104), - [sym_file_descriptor] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_RPAREN] = ACTIONS(2248), - [anon_sym_PIPE_AMP] = ACTIONS(2248), - [anon_sym_AMP_AMP] = ACTIONS(2248), - [anon_sym_PIPE_PIPE] = ACTIONS(2248), - [anon_sym_EQ_TILDE] = ACTIONS(986), - [anon_sym_EQ_EQ] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_AMP_GT] = ACTIONS(988), - [anon_sym_AMP_GT_GT] = ACTIONS(990), - [anon_sym_LT_AMP] = ACTIONS(990), - [anon_sym_GT_AMP] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(996), - [sym__special_characters] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(1000), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1002), - }, - [544] = { - [sym_concatenation] = STATE(992), - [sym_string] = STATE(1108), - [sym_array] = STATE(992), - [sym_simple_expansion] = STATE(1108), - [sym_string_expansion] = STATE(1108), - [sym_expansion] = STATE(1108), - [sym_command_substitution] = STATE(1108), - [sym_process_substitution] = STATE(1108), - [sym__empty_value] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym__special_characters] = ACTIONS(2250), - [anon_sym_DQUOTE] = ACTIONS(2252), - [anon_sym_DOLLAR] = ACTIONS(2254), - [sym_raw_string] = ACTIONS(2256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2260), - [anon_sym_BQUOTE] = ACTIONS(2262), - [anon_sym_LT_LPAREN] = ACTIONS(2264), - [anon_sym_GT_LPAREN] = ACTIONS(2264), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2266), - }, - [545] = { - [sym_do_group] = STATE(1113), - [anon_sym_do] = ACTIONS(2062), - [sym_comment] = ACTIONS(56), - }, - [546] = { - [sym_compound_statement] = STATE(1115), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2076), - [sym_comment] = ACTIONS(56), - }, - [547] = { - [sym_concatenation] = STATE(84), - [sym_string] = STATE(79), - [sym_simple_expansion] = STATE(79), - [sym_string_expansion] = STATE(79), - [sym_expansion] = STATE(79), - [sym_command_substitution] = STATE(79), - [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(350), - [anon_sym_EQ_TILDE] = ACTIONS(122), - [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_RBRACK] = ACTIONS(2270), - [sym__special_characters] = ACTIONS(638), - [anon_sym_DQUOTE] = ACTIONS(126), - [anon_sym_DOLLAR] = ACTIONS(128), - [sym_raw_string] = ACTIONS(130), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), - [anon_sym_BQUOTE] = ACTIONS(136), - [anon_sym_LT_LPAREN] = ACTIONS(138), - [anon_sym_GT_LPAREN] = ACTIONS(138), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(140), - }, - [548] = { - [sym_concatenation] = STATE(95), - [sym_string] = STATE(90), - [sym_simple_expansion] = STATE(90), - [sym_string_expansion] = STATE(90), - [sym_expansion] = STATE(90), - [sym_command_substitution] = STATE(90), - [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(372), - [anon_sym_EQ_TILDE] = ACTIONS(142), - [anon_sym_EQ_EQ] = ACTIONS(142), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2270), - [sym__special_characters] = ACTIONS(680), - [anon_sym_DQUOTE] = ACTIONS(146), - [anon_sym_DOLLAR] = ACTIONS(148), - [sym_raw_string] = ACTIONS(150), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), - [anon_sym_BQUOTE] = ACTIONS(156), - [anon_sym_LT_LPAREN] = ACTIONS(158), - [anon_sym_GT_LPAREN] = ACTIONS(158), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(160), - }, - [549] = { - [sym__assignment] = STATE(1019), - [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(2272), - [anon_sym_PLUS_EQ] = ACTIONS(2272), - [sym_comment] = ACTIONS(56), - }, - [550] = { - [aux_sym_concatenation_repeat1] = STATE(1119), - [sym__concat] = ACTIONS(2274), - [sym_variable_name] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_PIPE_AMP] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(686), - [anon_sym_PIPE_PIPE] = ACTIONS(686), - [sym__special_characters] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(2088), - [sym_raw_string] = ACTIONS(686), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(686), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(686), - [anon_sym_BQUOTE] = ACTIONS(686), - [anon_sym_LT_LPAREN] = ACTIONS(686), - [anon_sym_GT_LPAREN] = ACTIONS(686), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2088), - [sym_word] = ACTIONS(688), - }, - [551] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1121), - [anon_sym_DQUOTE] = ACTIONS(2276), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [552] = { - [sym_string] = STATE(1123), - [anon_sym_DQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(2278), - [sym_raw_string] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(2278), - [anon_sym_DASH] = ACTIONS(2278), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2282), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_AT] = ACTIONS(2278), - [anon_sym_QMARK] = ACTIONS(2278), - [anon_sym_0] = ACTIONS(2284), - [anon_sym__] = ACTIONS(2284), - }, - [553] = { - [aux_sym_concatenation_repeat1] = STATE(1119), - [sym__concat] = ACTIONS(2274), - [sym_variable_name] = ACTIONS(702), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_PIPE_AMP] = ACTIONS(702), - [anon_sym_AMP_AMP] = ACTIONS(702), - [anon_sym_PIPE_PIPE] = ACTIONS(702), - [sym__special_characters] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(702), - [anon_sym_DOLLAR] = ACTIONS(2100), - [sym_raw_string] = ACTIONS(702), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(702), - [anon_sym_BQUOTE] = ACTIONS(702), - [anon_sym_LT_LPAREN] = ACTIONS(702), - [anon_sym_GT_LPAREN] = ACTIONS(702), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2100), - [sym_word] = ACTIONS(704), - }, - [554] = { - [sym_subscript] = STATE(1129), - [sym_variable_name] = ACTIONS(2286), - [anon_sym_DOLLAR] = ACTIONS(2288), - [anon_sym_POUND] = ACTIONS(2290), - [anon_sym_DASH] = ACTIONS(2288), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_QMARK] = ACTIONS(2288), - [anon_sym_0] = ACTIONS(2294), - [anon_sym__] = ACTIONS(2294), - }, - [555] = { - [sym_for_statement] = STATE(1130), - [sym_while_statement] = STATE(1130), - [sym_if_statement] = STATE(1130), - [sym_case_statement] = STATE(1130), - [sym_function_definition] = STATE(1130), - [sym_subshell] = STATE(1130), - [sym_pipeline] = STATE(1130), - [sym_list] = STATE(1130), - [sym_command] = STATE(1130), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1130), - [sym_variable_assignment] = STATE(1131), - [sym_declaration_command] = STATE(1130), - [sym_unset_command] = STATE(1130), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [556] = { - [sym_for_statement] = STATE(1132), - [sym_while_statement] = STATE(1132), - [sym_if_statement] = STATE(1132), - [sym_case_statement] = STATE(1132), - [sym_function_definition] = STATE(1132), - [sym_subshell] = STATE(1132), - [sym_pipeline] = STATE(1132), - [sym_list] = STATE(1132), - [sym_command] = STATE(1132), + [506] = { + [sym_for_statement] = STATE(1057), + [sym_while_statement] = STATE(1057), + [sym_if_statement] = STATE(1057), + [sym_case_statement] = STATE(1057), + [sym_function_definition] = STATE(1057), + [sym_subshell] = STATE(1057), + [sym_pipeline] = STATE(1057), + [sym_list] = STATE(1057), + [sym_command] = STATE(1057), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1132), - [sym_variable_assignment] = STATE(1133), - [sym_declaration_command] = STATE(1132), - [sym_unset_command] = STATE(1132), + [sym_bracket_command] = STATE(1057), + [sym_variable_assignment] = STATE(1058), + [sym_declaration_command] = STATE(1057), + [sym_unset_command] = STATE(1057), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -26155,7 +24882,1175 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [557] = { + [507] = { + [sym_for_statement] = STATE(1059), + [sym_while_statement] = STATE(1059), + [sym_if_statement] = STATE(1059), + [sym_case_statement] = STATE(1059), + [sym_function_definition] = STATE(1059), + [sym_subshell] = STATE(1059), + [sym_pipeline] = STATE(1059), + [sym_list] = STATE(1059), + [sym_command] = STATE(1059), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1059), + [sym_variable_assignment] = STATE(1060), + [sym_declaration_command] = STATE(1059), + [sym_unset_command] = STATE(1059), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(302), + }, + [508] = { + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_RPAREN] = ACTIONS(2156), + [anon_sym_PIPE_AMP] = ACTIONS(2156), + [anon_sym_AMP_AMP] = ACTIONS(2156), + [anon_sym_PIPE_PIPE] = ACTIONS(2156), + [sym__special_characters] = ACTIONS(2154), + [anon_sym_DQUOTE] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(2154), + [sym_raw_string] = ACTIONS(2156), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2156), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2156), + [anon_sym_BQUOTE] = ACTIONS(2156), + [anon_sym_LT_LPAREN] = ACTIONS(2156), + [anon_sym_GT_LPAREN] = ACTIONS(2156), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2154), + [sym_word] = ACTIONS(752), + }, + [509] = { + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_RPAREN] = ACTIONS(2142), + [anon_sym_PIPE_AMP] = ACTIONS(2142), + [anon_sym_AMP_AMP] = ACTIONS(2142), + [anon_sym_PIPE_PIPE] = ACTIONS(2142), + [sym__special_characters] = ACTIONS(2140), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_DOLLAR] = ACTIONS(2140), + [sym_raw_string] = ACTIONS(2142), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2142), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2142), + [anon_sym_BQUOTE] = ACTIONS(2142), + [anon_sym_LT_LPAREN] = ACTIONS(2142), + [anon_sym_GT_LPAREN] = ACTIONS(2142), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2140), + [sym_word] = ACTIONS(740), + }, + [510] = { + [sym_concatenation] = STATE(509), + [sym_string] = STATE(503), + [sym_simple_expansion] = STATE(503), + [sym_string_expansion] = STATE(503), + [sym_expansion] = STATE(503), + [sym_command_substitution] = STATE(503), + [sym_process_substitution] = STATE(503), + [aux_sym_unset_command_repeat1] = STATE(1061), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_RPAREN] = ACTIONS(2160), + [anon_sym_PIPE_AMP] = ACTIONS(2160), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [sym__special_characters] = ACTIONS(926), + [anon_sym_DQUOTE] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(930), + [sym_raw_string] = ACTIONS(932), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(936), + [anon_sym_BQUOTE] = ACTIONS(938), + [anon_sym_LT_LPAREN] = ACTIONS(940), + [anon_sym_GT_LPAREN] = ACTIONS(940), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(942), + [sym_word] = ACTIONS(944), + }, + [511] = { + [sym_string] = STATE(1062), + [sym_simple_expansion] = STATE(1062), + [sym_string_expansion] = STATE(1062), + [sym_expansion] = STATE(1062), + [sym_command_substitution] = STATE(1062), + [sym_process_substitution] = STATE(1062), + [sym__special_characters] = ACTIONS(2162), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(2164), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2162), + }, + [512] = { + [aux_sym_concatenation_repeat1] = STATE(1063), + [sym_file_descriptor] = ACTIONS(790), + [sym__concat] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_EQ_TILDE] = ACTIONS(1571), + [anon_sym_EQ_EQ] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(1571), + [anon_sym_GT] = ACTIONS(1571), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(1571), + [anon_sym_AMP_GT_GT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(790), + [anon_sym_GT_AMP] = ACTIONS(790), + [anon_sym_LT_LT] = ACTIONS(1571), + [anon_sym_LT_LT_DASH] = ACTIONS(790), + [anon_sym_LT_LT_LT] = ACTIONS(790), + [sym__special_characters] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(1571), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(792), + }, + [513] = { + [sym_file_descriptor] = ACTIONS(794), + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_EQ_TILDE] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1573), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(794), + [anon_sym_LT_AMP] = ACTIONS(794), + [anon_sym_GT_AMP] = ACTIONS(794), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_LT_LT_DASH] = ACTIONS(794), + [anon_sym_LT_LT_LT] = ACTIONS(794), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(796), + }, + [514] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(2166), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [515] = { + [sym_file_descriptor] = ACTIONS(826), + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_EQ_TILDE] = ACTIONS(1577), + [anon_sym_EQ_EQ] = ACTIONS(1577), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(1577), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(1577), + [anon_sym_LT_LT_DASH] = ACTIONS(826), + [anon_sym_LT_LT_LT] = ACTIONS(826), + [sym__special_characters] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(828), + }, + [516] = { + [sym_file_descriptor] = ACTIONS(830), + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(1579), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [anon_sym_LT_LT] = ACTIONS(1579), + [anon_sym_LT_LT_DASH] = ACTIONS(830), + [anon_sym_LT_LT_LT] = ACTIONS(830), + [sym__special_characters] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(1579), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(832), + }, + [517] = { + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(1581), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_LT_LT_DASH] = ACTIONS(834), + [anon_sym_LT_LT_LT] = ACTIONS(834), + [sym__special_characters] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1581), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(836), + }, + [518] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(2168), + [sym_comment] = ACTIONS(56), + }, + [519] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1068), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2172), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [520] = { + [sym_subscript] = STATE(1072), + [sym_variable_name] = ACTIONS(2174), + [anon_sym_DOLLAR] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2176), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2176), + [anon_sym_AT] = ACTIONS(2176), + [anon_sym_QMARK] = ACTIONS(2176), + [anon_sym_0] = ACTIONS(2180), + [anon_sym__] = ACTIONS(2180), + }, + [521] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1075), + [anon_sym_RBRACE] = ACTIONS(2182), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2184), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [522] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1078), + [anon_sym_RBRACE] = ACTIONS(2186), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2188), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [523] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [524] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [525] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(2190), + [sym_comment] = ACTIONS(56), + }, + [526] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(2190), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [527] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [528] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [529] = { + [anon_sym_RPAREN] = ACTIONS(2194), + [sym_comment] = ACTIONS(56), + }, + [530] = { + [sym_for_statement] = STATE(1082), + [sym_while_statement] = STATE(1082), + [sym_if_statement] = STATE(1082), + [sym_case_statement] = STATE(1082), + [sym_function_definition] = STATE(1082), + [sym_subshell] = STATE(1082), + [sym_pipeline] = STATE(1082), + [sym_list] = STATE(1082), + [sym_command] = STATE(1082), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1082), + [sym_variable_assignment] = STATE(1083), + [sym_declaration_command] = STATE(1082), + [sym_unset_command] = STATE(1082), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(302), + }, + [531] = { + [sym_file_descriptor] = ACTIONS(2196), + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [anon_sym_EQ_TILDE] = ACTIONS(2198), + [anon_sym_EQ_EQ] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_GT] = ACTIONS(2198), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_AMP_GT] = ACTIONS(2198), + [anon_sym_AMP_GT_GT] = ACTIONS(2198), + [anon_sym_LT_AMP] = ACTIONS(2198), + [anon_sym_GT_AMP] = ACTIONS(2198), + [anon_sym_LT_LT] = ACTIONS(2198), + [anon_sym_LT_LT_DASH] = ACTIONS(2198), + [anon_sym_LT_LT_LT] = ACTIONS(2198), + [sym__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + }, + [532] = { + [sym_for_statement] = STATE(1084), + [sym_while_statement] = STATE(1084), + [sym_if_statement] = STATE(1084), + [sym_case_statement] = STATE(1084), + [sym_function_definition] = STATE(1084), + [sym_subshell] = STATE(1084), + [sym_pipeline] = STATE(1084), + [sym_list] = STATE(1084), + [sym_command] = STATE(1084), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1084), + [sym_variable_assignment] = STATE(1085), + [sym_declaration_command] = STATE(1084), + [sym_unset_command] = STATE(1084), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(302), + }, + [533] = { + [anon_sym_LT] = ACTIONS(2200), + [anon_sym_GT] = ACTIONS(2200), + [anon_sym_GT_GT] = ACTIONS(2202), + [anon_sym_AMP_GT] = ACTIONS(2200), + [anon_sym_AMP_GT_GT] = ACTIONS(2202), + [anon_sym_LT_AMP] = ACTIONS(2202), + [anon_sym_GT_AMP] = ACTIONS(2202), + [sym_comment] = ACTIONS(56), + }, + [534] = { + [sym_concatenation] = STATE(1089), + [sym_string] = STATE(1088), + [sym_simple_expansion] = STATE(1088), + [sym_string_expansion] = STATE(1088), + [sym_expansion] = STATE(1088), + [sym_command_substitution] = STATE(1088), + [sym_process_substitution] = STATE(1088), + [sym__special_characters] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2206), + [anon_sym_DOLLAR] = ACTIONS(2208), + [sym_raw_string] = ACTIONS(2210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2212), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2214), + [anon_sym_BQUOTE] = ACTIONS(2216), + [anon_sym_LT_LPAREN] = ACTIONS(2218), + [anon_sym_GT_LPAREN] = ACTIONS(2218), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2210), + [sym_regex] = ACTIONS(2220), + }, + [535] = { + [sym_concatenation] = STATE(1098), + [sym_string] = STATE(1093), + [sym_simple_expansion] = STATE(1093), + [sym_string_expansion] = STATE(1093), + [sym_expansion] = STATE(1093), + [sym_command_substitution] = STATE(1093), + [sym_process_substitution] = STATE(1093), + [sym__special_characters] = ACTIONS(2222), + [anon_sym_DQUOTE] = ACTIONS(2224), + [anon_sym_DOLLAR] = ACTIONS(2226), + [sym_raw_string] = ACTIONS(2228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2232), + [anon_sym_BQUOTE] = ACTIONS(2234), + [anon_sym_LT_LPAREN] = ACTIONS(2236), + [anon_sym_GT_LPAREN] = ACTIONS(2236), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2238), + }, + [536] = { + [sym_heredoc] = STATE(1101), + [sym__simple_heredoc] = ACTIONS(2240), + [sym__heredoc_beginning] = ACTIONS(2242), + [sym_comment] = ACTIONS(56), + }, + [537] = { + [sym_concatenation] = STATE(1104), + [sym_string] = STATE(1103), + [sym_simple_expansion] = STATE(1103), + [sym_string_expansion] = STATE(1103), + [sym_expansion] = STATE(1103), + [sym_command_substitution] = STATE(1103), + [sym_process_substitution] = STATE(1103), + [sym__special_characters] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2224), + [anon_sym_DOLLAR] = ACTIONS(2226), + [sym_raw_string] = ACTIONS(2246), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2232), + [anon_sym_BQUOTE] = ACTIONS(2234), + [anon_sym_LT_LPAREN] = ACTIONS(2236), + [anon_sym_GT_LPAREN] = ACTIONS(2236), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2248), + }, + [538] = { + [aux_sym_concatenation_repeat1] = STATE(512), + [sym_file_descriptor] = ACTIONS(608), + [sym__concat] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_RPAREN] = ACTIONS(608), + [anon_sym_PIPE_AMP] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_EQ_TILDE] = ACTIONS(606), + [anon_sym_EQ_EQ] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_AMP_GT] = ACTIONS(606), + [anon_sym_AMP_GT_GT] = ACTIONS(608), + [anon_sym_LT_AMP] = ACTIONS(608), + [anon_sym_GT_AMP] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(606), + [anon_sym_LT_LT_DASH] = ACTIONS(608), + [anon_sym_LT_LT_LT] = ACTIONS(608), + [sym__special_characters] = ACTIONS(606), + [anon_sym_DQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(606), + [sym_raw_string] = ACTIONS(608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_LT_LPAREN] = ACTIONS(608), + [anon_sym_GT_LPAREN] = ACTIONS(608), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(610), + }, + [539] = { + [aux_sym_concatenation_repeat1] = STATE(512), + [sym_file_descriptor] = ACTIONS(624), + [sym__concat] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_RPAREN] = ACTIONS(624), + [anon_sym_PIPE_AMP] = ACTIONS(624), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_EQ_TILDE] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(624), + [anon_sym_AMP_GT] = ACTIONS(622), + [anon_sym_AMP_GT_GT] = ACTIONS(624), + [anon_sym_LT_AMP] = ACTIONS(624), + [anon_sym_GT_AMP] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_LT_LT_DASH] = ACTIONS(624), + [anon_sym_LT_LT_LT] = ACTIONS(624), + [sym__special_characters] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(622), + [sym_raw_string] = ACTIONS(624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), + [anon_sym_BQUOTE] = ACTIONS(624), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(626), + }, + [540] = { + [sym_file_descriptor] = ACTIONS(1146), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_RPAREN] = ACTIONS(1146), + [anon_sym_PIPE_AMP] = ACTIONS(1146), + [anon_sym_AMP_AMP] = ACTIONS(1146), + [anon_sym_PIPE_PIPE] = ACTIONS(1146), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(1146), + [anon_sym_AMP_GT] = ACTIONS(2250), + [anon_sym_AMP_GT_GT] = ACTIONS(1146), + [anon_sym_LT_AMP] = ACTIONS(1146), + [anon_sym_GT_AMP] = ACTIONS(1146), + [anon_sym_LT_LT] = ACTIONS(2250), + [anon_sym_LT_LT_DASH] = ACTIONS(1146), + [anon_sym_LT_LT_LT] = ACTIONS(1146), + [anon_sym_BQUOTE] = ACTIONS(1146), + [sym_comment] = ACTIONS(56), + }, + [541] = { + [sym_file_descriptor] = ACTIONS(624), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_RPAREN] = ACTIONS(624), + [anon_sym_PIPE_AMP] = ACTIONS(624), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_EQ_TILDE] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(624), + [anon_sym_AMP_GT] = ACTIONS(622), + [anon_sym_AMP_GT_GT] = ACTIONS(624), + [anon_sym_LT_AMP] = ACTIONS(624), + [anon_sym_GT_AMP] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_LT_LT_DASH] = ACTIONS(624), + [anon_sym_LT_LT_LT] = ACTIONS(624), + [sym__special_characters] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(622), + [sym_raw_string] = ACTIONS(624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), + [anon_sym_BQUOTE] = ACTIONS(624), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(626), + }, + [542] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [aux_sym_while_statement_repeat1] = STATE(1105), + [sym_file_descriptor] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [anon_sym_GT_GT] = ACTIONS(992), + [anon_sym_AMP_GT] = ACTIONS(990), + [anon_sym_AMP_GT_GT] = ACTIONS(992), + [anon_sym_LT_AMP] = ACTIONS(992), + [anon_sym_GT_AMP] = ACTIONS(992), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(998), + [sym_comment] = ACTIONS(56), + }, + [543] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [sym_concatenation] = STATE(541), + [sym_string] = STATE(539), + [sym_simple_expansion] = STATE(539), + [sym_string_expansion] = STATE(539), + [sym_expansion] = STATE(539), + [sym_command_substitution] = STATE(539), + [sym_process_substitution] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1106), + [aux_sym_command_repeat2] = STATE(1107), + [sym_file_descriptor] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_EQ_TILDE] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [anon_sym_GT_GT] = ACTIONS(992), + [anon_sym_AMP_GT] = ACTIONS(990), + [anon_sym_AMP_GT_GT] = ACTIONS(992), + [anon_sym_LT_AMP] = ACTIONS(992), + [anon_sym_GT_AMP] = ACTIONS(992), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(998), + [sym__special_characters] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1004), + }, + [544] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [sym_concatenation] = STATE(541), + [sym_string] = STATE(539), + [sym_simple_expansion] = STATE(539), + [sym_string_expansion] = STATE(539), + [sym_expansion] = STATE(539), + [sym_command_substitution] = STATE(539), + [sym_process_substitution] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1106), + [aux_sym_command_repeat2] = STATE(1108), + [sym_file_descriptor] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_RPAREN] = ACTIONS(2254), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_EQ_TILDE] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [anon_sym_GT_GT] = ACTIONS(992), + [anon_sym_AMP_GT] = ACTIONS(990), + [anon_sym_AMP_GT_GT] = ACTIONS(992), + [anon_sym_LT_AMP] = ACTIONS(992), + [anon_sym_GT_AMP] = ACTIONS(992), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(998), + [sym__special_characters] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(1002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1004), + }, + [545] = { + [sym_concatenation] = STATE(995), + [sym_string] = STATE(1112), + [sym_array] = STATE(995), + [sym_simple_expansion] = STATE(1112), + [sym_string_expansion] = STATE(1112), + [sym_expansion] = STATE(1112), + [sym_command_substitution] = STATE(1112), + [sym_process_substitution] = STATE(1112), + [sym__empty_value] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2042), + [sym__special_characters] = ACTIONS(2256), + [anon_sym_DQUOTE] = ACTIONS(2258), + [anon_sym_DOLLAR] = ACTIONS(2260), + [sym_raw_string] = ACTIONS(2262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2266), + [anon_sym_BQUOTE] = ACTIONS(2268), + [anon_sym_LT_LPAREN] = ACTIONS(2270), + [anon_sym_GT_LPAREN] = ACTIONS(2270), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2272), + }, + [546] = { + [sym_do_group] = STATE(1117), + [anon_sym_do] = ACTIONS(2068), + [sym_comment] = ACTIONS(56), + }, + [547] = { + [sym_compound_statement] = STATE(1119), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_LBRACE] = ACTIONS(2082), + [sym_comment] = ACTIONS(56), + }, + [548] = { + [sym_concatenation] = STATE(84), + [sym_string] = STATE(79), + [sym_simple_expansion] = STATE(79), + [sym_string_expansion] = STATE(79), + [sym_expansion] = STATE(79), + [sym_command_substitution] = STATE(79), + [sym_process_substitution] = STATE(79), + [aux_sym_command_repeat2] = STATE(351), + [anon_sym_EQ_TILDE] = ACTIONS(122), + [anon_sym_EQ_EQ] = ACTIONS(122), + [anon_sym_RBRACK] = ACTIONS(2276), + [sym__special_characters] = ACTIONS(640), + [anon_sym_DQUOTE] = ACTIONS(126), + [anon_sym_DOLLAR] = ACTIONS(128), + [sym_raw_string] = ACTIONS(130), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(132), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(134), + [anon_sym_BQUOTE] = ACTIONS(136), + [anon_sym_LT_LPAREN] = ACTIONS(138), + [anon_sym_GT_LPAREN] = ACTIONS(138), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(140), + }, + [549] = { + [sym_concatenation] = STATE(95), + [sym_string] = STATE(90), + [sym_simple_expansion] = STATE(90), + [sym_string_expansion] = STATE(90), + [sym_expansion] = STATE(90), + [sym_command_substitution] = STATE(90), + [sym_process_substitution] = STATE(90), + [aux_sym_command_repeat2] = STATE(373), + [anon_sym_EQ_TILDE] = ACTIONS(142), + [anon_sym_EQ_EQ] = ACTIONS(142), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2276), + [sym__special_characters] = ACTIONS(682), + [anon_sym_DQUOTE] = ACTIONS(146), + [anon_sym_DOLLAR] = ACTIONS(148), + [sym_raw_string] = ACTIONS(150), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(152), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(154), + [anon_sym_BQUOTE] = ACTIONS(156), + [anon_sym_LT_LPAREN] = ACTIONS(158), + [anon_sym_GT_LPAREN] = ACTIONS(158), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(160), + }, + [550] = { + [sym__assignment] = STATE(1023), + [anon_sym_LBRACK] = ACTIONS(64), + [anon_sym_EQ] = ACTIONS(2278), + [anon_sym_PLUS_EQ] = ACTIONS(2278), + [sym_comment] = ACTIONS(56), + }, + [551] = { + [aux_sym_concatenation_repeat1] = STATE(1123), + [sym__concat] = ACTIONS(2280), + [sym_variable_name] = ACTIONS(688), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_PIPE_AMP] = ACTIONS(688), + [anon_sym_AMP_AMP] = ACTIONS(688), + [anon_sym_PIPE_PIPE] = ACTIONS(688), + [sym__special_characters] = ACTIONS(2094), + [anon_sym_DQUOTE] = ACTIONS(688), + [anon_sym_DOLLAR] = ACTIONS(2094), + [sym_raw_string] = ACTIONS(688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), + [anon_sym_BQUOTE] = ACTIONS(688), + [anon_sym_LT_LPAREN] = ACTIONS(688), + [anon_sym_GT_LPAREN] = ACTIONS(688), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2094), + [sym_word] = ACTIONS(690), + }, + [552] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1125), + [anon_sym_DQUOTE] = ACTIONS(2282), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [553] = { + [sym_string] = STATE(1127), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(2284), + [sym_raw_string] = ACTIONS(2286), + [anon_sym_POUND] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2284), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2284), + [anon_sym_AT] = ACTIONS(2284), + [anon_sym_QMARK] = ACTIONS(2284), + [anon_sym_0] = ACTIONS(2290), + [anon_sym__] = ACTIONS(2290), + }, + [554] = { + [aux_sym_concatenation_repeat1] = STATE(1123), + [sym__concat] = ACTIONS(2280), + [sym_variable_name] = ACTIONS(704), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_PIPE_AMP] = ACTIONS(704), + [anon_sym_AMP_AMP] = ACTIONS(704), + [anon_sym_PIPE_PIPE] = ACTIONS(704), + [sym__special_characters] = ACTIONS(2106), + [anon_sym_DQUOTE] = ACTIONS(704), + [anon_sym_DOLLAR] = ACTIONS(2106), + [sym_raw_string] = ACTIONS(704), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), + [anon_sym_BQUOTE] = ACTIONS(704), + [anon_sym_LT_LPAREN] = ACTIONS(704), + [anon_sym_GT_LPAREN] = ACTIONS(704), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2106), + [sym_word] = ACTIONS(706), + }, + [555] = { + [sym_subscript] = STATE(1133), + [sym_variable_name] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2298), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_AT] = ACTIONS(2294), + [anon_sym_QMARK] = ACTIONS(2294), + [anon_sym_0] = ACTIONS(2300), + [anon_sym__] = ACTIONS(2300), + }, + [556] = { [sym_for_statement] = STATE(1134), [sym_while_statement] = STATE(1134), [sym_if_statement] = STATE(1134), @@ -26216,199 +26111,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [558] = { - [sym__assignment] = STATE(1019), - [anon_sym_EQ] = ACTIONS(2272), - [anon_sym_PLUS_EQ] = ACTIONS(2272), - [sym_comment] = ACTIONS(56), - }, - [559] = { - [sym_variable_assignment] = STATE(496), - [sym_subscript] = STATE(558), - [sym_concatenation] = STATE(496), - [sym_string] = STATE(553), - [sym_simple_expansion] = STATE(553), - [sym_string_expansion] = STATE(553), - [sym_expansion] = STATE(553), - [sym_command_substitution] = STATE(553), - [sym_process_substitution] = STATE(553), - [aux_sym_declaration_command_repeat1] = STATE(1136), - [sym_variable_name] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(2114), - [anon_sym_PIPE_AMP] = ACTIONS(2116), - [anon_sym_AMP_AMP] = ACTIONS(2116), - [anon_sym_PIPE_PIPE] = ACTIONS(2116), - [sym__special_characters] = ACTIONS(1014), - [anon_sym_DQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1018), - [sym_raw_string] = ACTIONS(1020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1024), - [anon_sym_BQUOTE] = ACTIONS(2116), - [anon_sym_LT_LPAREN] = ACTIONS(1026), - [anon_sym_GT_LPAREN] = ACTIONS(1026), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(916), - [sym_word] = ACTIONS(1028), - }, - [560] = { - [aux_sym_concatenation_repeat1] = STATE(1138), - [sym__concat] = ACTIONS(2296), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_PIPE_AMP] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [sym__special_characters] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2120), - [sym_raw_string] = ACTIONS(2122), - [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_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2120), - [sym_word] = ACTIONS(724), - }, - [561] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1140), - [anon_sym_DQUOTE] = ACTIONS(2298), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [562] = { - [sym_string] = STATE(1142), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(2300), - [sym_raw_string] = ACTIONS(2302), - [anon_sym_POUND] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2304), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2300), - [anon_sym_QMARK] = ACTIONS(2300), - [anon_sym_0] = ACTIONS(2306), - [anon_sym__] = ACTIONS(2306), - }, - [563] = { - [aux_sym_concatenation_repeat1] = STATE(1138), - [sym__concat] = ACTIONS(2296), - [anon_sym_PIPE] = ACTIONS(2134), - [anon_sym_PIPE_AMP] = ACTIONS(2136), - [anon_sym_AMP_AMP] = ACTIONS(2136), - [anon_sym_PIPE_PIPE] = ACTIONS(2136), - [sym__special_characters] = ACTIONS(2134), - [anon_sym_DQUOTE] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2134), - [sym_raw_string] = ACTIONS(2136), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2136), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2136), - [anon_sym_BQUOTE] = ACTIONS(2136), - [anon_sym_LT_LPAREN] = ACTIONS(2136), - [anon_sym_GT_LPAREN] = ACTIONS(2136), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2134), - [sym_word] = ACTIONS(738), - }, - [564] = { - [sym_subscript] = STATE(1148), - [sym_variable_name] = ACTIONS(2308), - [anon_sym_DOLLAR] = ACTIONS(2310), - [anon_sym_POUND] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2310), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_AT] = ACTIONS(2310), - [anon_sym_QMARK] = ACTIONS(2310), - [anon_sym_0] = ACTIONS(2316), - [anon_sym__] = ACTIONS(2316), - }, - [565] = { - [sym_for_statement] = STATE(1149), - [sym_while_statement] = STATE(1149), - [sym_if_statement] = STATE(1149), - [sym_case_statement] = STATE(1149), - [sym_function_definition] = STATE(1149), - [sym_subshell] = STATE(1149), - [sym_pipeline] = STATE(1149), - [sym_list] = STATE(1149), - [sym_command] = STATE(1149), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1149), - [sym_variable_assignment] = STATE(1150), - [sym_declaration_command] = STATE(1149), - [sym_unset_command] = STATE(1149), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [566] = { - [sym_for_statement] = STATE(1151), - [sym_while_statement] = STATE(1151), - [sym_if_statement] = STATE(1151), - [sym_case_statement] = STATE(1151), - [sym_function_definition] = STATE(1151), - [sym_subshell] = STATE(1151), - [sym_pipeline] = STATE(1151), - [sym_list] = STATE(1151), - [sym_command] = STATE(1151), + [557] = { + [sym_for_statement] = STATE(1136), + [sym_while_statement] = STATE(1136), + [sym_if_statement] = STATE(1136), + [sym_case_statement] = STATE(1136), + [sym_function_definition] = STATE(1136), + [sym_subshell] = STATE(1136), + [sym_pipeline] = STATE(1136), + [sym_list] = STATE(1136), + [sym_command] = STATE(1136), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1151), - [sym_variable_assignment] = STATE(1152), - [sym_declaration_command] = STATE(1151), - [sym_unset_command] = STATE(1151), + [sym_bracket_command] = STATE(1136), + [sym_variable_assignment] = STATE(1137), + [sym_declaration_command] = STATE(1136), + [sym_unset_command] = STATE(1136), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -26455,7 +26172,185 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [567] = { + [558] = { + [sym_for_statement] = STATE(1138), + [sym_while_statement] = STATE(1138), + [sym_if_statement] = STATE(1138), + [sym_case_statement] = STATE(1138), + [sym_function_definition] = STATE(1138), + [sym_subshell] = STATE(1138), + [sym_pipeline] = STATE(1138), + [sym_list] = STATE(1138), + [sym_command] = STATE(1138), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1138), + [sym_variable_assignment] = STATE(1139), + [sym_declaration_command] = STATE(1138), + [sym_unset_command] = STATE(1138), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(302), + }, + [559] = { + [sym__assignment] = STATE(1023), + [anon_sym_EQ] = ACTIONS(2278), + [anon_sym_PLUS_EQ] = ACTIONS(2278), + [sym_comment] = ACTIONS(56), + }, + [560] = { + [sym_variable_assignment] = STATE(497), + [sym_subscript] = STATE(559), + [sym_concatenation] = STATE(497), + [sym_string] = STATE(554), + [sym_simple_expansion] = STATE(554), + [sym_string_expansion] = STATE(554), + [sym_expansion] = STATE(554), + [sym_command_substitution] = STATE(554), + [sym_process_substitution] = STATE(554), + [aux_sym_declaration_command_repeat1] = STATE(1140), + [sym_variable_name] = ACTIONS(1014), + [anon_sym_PIPE] = ACTIONS(2120), + [anon_sym_PIPE_AMP] = ACTIONS(2122), + [anon_sym_AMP_AMP] = ACTIONS(2122), + [anon_sym_PIPE_PIPE] = ACTIONS(2122), + [sym__special_characters] = ACTIONS(1016), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1020), + [sym_raw_string] = ACTIONS(1022), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1026), + [anon_sym_BQUOTE] = ACTIONS(2122), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(918), + [sym_word] = ACTIONS(1030), + }, + [561] = { + [aux_sym_concatenation_repeat1] = STATE(1142), + [sym__concat] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PIPE_AMP] = ACTIONS(2128), + [anon_sym_AMP_AMP] = ACTIONS(2128), + [anon_sym_PIPE_PIPE] = ACTIONS(2128), + [sym__special_characters] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2128), + [anon_sym_DOLLAR] = ACTIONS(2126), + [sym_raw_string] = ACTIONS(2128), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2128), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2128), + [anon_sym_BQUOTE] = ACTIONS(2128), + [anon_sym_LT_LPAREN] = ACTIONS(2128), + [anon_sym_GT_LPAREN] = ACTIONS(2128), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2126), + [sym_word] = ACTIONS(726), + }, + [562] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1144), + [anon_sym_DQUOTE] = ACTIONS(2304), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [563] = { + [sym_string] = STATE(1146), + [anon_sym_DQUOTE] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(2306), + [sym_raw_string] = ACTIONS(2308), + [anon_sym_POUND] = ACTIONS(2306), + [anon_sym_DASH] = ACTIONS(2306), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2310), + [anon_sym_STAR] = ACTIONS(2306), + [anon_sym_AT] = ACTIONS(2306), + [anon_sym_QMARK] = ACTIONS(2306), + [anon_sym_0] = ACTIONS(2312), + [anon_sym__] = ACTIONS(2312), + }, + [564] = { + [aux_sym_concatenation_repeat1] = STATE(1142), + [sym__concat] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2140), + [anon_sym_PIPE_AMP] = ACTIONS(2142), + [anon_sym_AMP_AMP] = ACTIONS(2142), + [anon_sym_PIPE_PIPE] = ACTIONS(2142), + [sym__special_characters] = ACTIONS(2140), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_DOLLAR] = ACTIONS(2140), + [sym_raw_string] = ACTIONS(2142), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2142), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2142), + [anon_sym_BQUOTE] = ACTIONS(2142), + [anon_sym_LT_LPAREN] = ACTIONS(2142), + [anon_sym_GT_LPAREN] = ACTIONS(2142), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2140), + [sym_word] = ACTIONS(740), + }, + [565] = { + [sym_subscript] = STATE(1152), + [sym_variable_name] = ACTIONS(2314), + [anon_sym_DOLLAR] = ACTIONS(2316), + [anon_sym_POUND] = ACTIONS(2318), + [anon_sym_DASH] = ACTIONS(2316), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2320), + [anon_sym_STAR] = ACTIONS(2316), + [anon_sym_AT] = ACTIONS(2316), + [anon_sym_QMARK] = ACTIONS(2316), + [anon_sym_0] = ACTIONS(2322), + [anon_sym__] = ACTIONS(2322), + }, + [566] = { [sym_for_statement] = STATE(1153), [sym_while_statement] = STATE(1153), [sym_if_statement] = STATE(1153), @@ -26516,451 +26411,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [568] = { - [sym_concatenation] = STATE(508), - [sym_string] = STATE(563), - [sym_simple_expansion] = STATE(563), - [sym_string_expansion] = STATE(563), - [sym_expansion] = STATE(563), - [sym_command_substitution] = STATE(563), - [sym_process_substitution] = STATE(563), - [aux_sym_unset_command_repeat1] = STATE(1155), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_PIPE_AMP] = ACTIONS(2154), - [anon_sym_AMP_AMP] = ACTIONS(2154), - [anon_sym_PIPE_PIPE] = ACTIONS(2154), - [sym__special_characters] = ACTIONS(1030), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(1036), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1040), - [anon_sym_BQUOTE] = ACTIONS(2154), - [anon_sym_LT_LPAREN] = ACTIONS(1042), - [anon_sym_GT_LPAREN] = ACTIONS(1042), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(940), - [sym_word] = ACTIONS(1044), - }, - [569] = { - [sym_string] = STATE(1156), - [sym_simple_expansion] = STATE(1156), - [sym_string_expansion] = STATE(1156), - [sym_expansion] = STATE(1156), - [sym_command_substitution] = STATE(1156), - [sym_process_substitution] = STATE(1156), - [sym__special_characters] = ACTIONS(2318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(2320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2318), - }, - [570] = { - [aux_sym_concatenation_repeat1] = STATE(1157), - [sym_file_descriptor] = ACTIONS(788), - [sym__concat] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_PIPE_AMP] = ACTIONS(788), - [anon_sym_AMP_AMP] = ACTIONS(788), - [anon_sym_PIPE_PIPE] = ACTIONS(788), - [anon_sym_EQ_TILDE] = ACTIONS(1567), - [anon_sym_EQ_EQ] = ACTIONS(1567), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_GT] = ACTIONS(1567), - [anon_sym_GT_GT] = ACTIONS(788), - [anon_sym_AMP_GT] = ACTIONS(1567), - [anon_sym_AMP_GT_GT] = ACTIONS(788), - [anon_sym_LT_AMP] = ACTIONS(788), - [anon_sym_GT_AMP] = ACTIONS(788), - [anon_sym_LT_LT] = ACTIONS(1567), - [anon_sym_LT_LT_DASH] = ACTIONS(788), - [anon_sym_LT_LT_LT] = ACTIONS(788), - [sym__special_characters] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(1567), - [sym_raw_string] = ACTIONS(788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LT_LPAREN] = ACTIONS(788), - [anon_sym_GT_LPAREN] = ACTIONS(788), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(790), - }, - [571] = { - [sym_file_descriptor] = ACTIONS(792), - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_EQ_TILDE] = ACTIONS(1569), - [anon_sym_EQ_EQ] = ACTIONS(1569), - [anon_sym_LT] = ACTIONS(1569), - [anon_sym_GT] = ACTIONS(1569), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_AMP_GT] = ACTIONS(1569), - [anon_sym_AMP_GT_GT] = ACTIONS(792), - [anon_sym_LT_AMP] = ACTIONS(792), - [anon_sym_GT_AMP] = ACTIONS(792), - [anon_sym_LT_LT] = ACTIONS(1569), - [anon_sym_LT_LT_DASH] = ACTIONS(792), - [anon_sym_LT_LT_LT] = ACTIONS(792), - [sym__special_characters] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(1569), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(794), - }, - [572] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(2322), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [573] = { - [sym_file_descriptor] = ACTIONS(824), - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_PIPE_AMP] = ACTIONS(824), - [anon_sym_AMP_AMP] = ACTIONS(824), - [anon_sym_PIPE_PIPE] = ACTIONS(824), - [anon_sym_EQ_TILDE] = ACTIONS(1573), - [anon_sym_EQ_EQ] = ACTIONS(1573), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(824), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(824), - [anon_sym_LT_AMP] = ACTIONS(824), - [anon_sym_GT_AMP] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(1573), - [anon_sym_LT_LT_DASH] = ACTIONS(824), - [anon_sym_LT_LT_LT] = ACTIONS(824), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_LT_LPAREN] = ACTIONS(824), - [anon_sym_GT_LPAREN] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(826), - }, - [574] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [anon_sym_EQ_TILDE] = ACTIONS(1575), - [anon_sym_EQ_EQ] = ACTIONS(1575), - [anon_sym_LT] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1575), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(1575), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [anon_sym_LT_LT] = ACTIONS(1575), - [anon_sym_LT_LT_DASH] = ACTIONS(828), - [anon_sym_LT_LT_LT] = ACTIONS(828), - [sym__special_characters] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1575), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(830), - }, - [575] = { - [sym_file_descriptor] = ACTIONS(832), - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_EQ_TILDE] = ACTIONS(1577), - [anon_sym_EQ_EQ] = ACTIONS(1577), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1577), - [anon_sym_GT_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(1577), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT_LT_DASH] = ACTIONS(832), - [anon_sym_LT_LT_LT] = ACTIONS(832), - [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(834), - }, - [576] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(2324), - [sym_comment] = ACTIONS(56), - }, - [577] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1162), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2328), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [578] = { - [sym_subscript] = STATE(1166), - [sym_variable_name] = ACTIONS(2330), - [anon_sym_DOLLAR] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_QMARK] = ACTIONS(2332), - [anon_sym_0] = ACTIONS(2336), - [anon_sym__] = ACTIONS(2336), - }, - [579] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1169), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2340), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [580] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1172), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2344), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [581] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2346), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [582] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2346), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [583] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(2346), - [sym_comment] = ACTIONS(56), - }, - [584] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(2346), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [585] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2348), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [586] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2348), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [587] = { - [anon_sym_RPAREN] = ACTIONS(2350), - [sym_comment] = ACTIONS(56), - }, - [588] = { - [sym_for_statement] = STATE(1078), - [sym_while_statement] = STATE(1078), - [sym_if_statement] = STATE(1078), - [sym_case_statement] = STATE(1078), - [sym_function_definition] = STATE(1078), - [sym_subshell] = STATE(1078), - [sym_pipeline] = STATE(1078), - [sym_list] = STATE(1078), - [sym_command] = STATE(1078), + [567] = { + [sym_for_statement] = STATE(1155), + [sym_while_statement] = STATE(1155), + [sym_if_statement] = STATE(1155), + [sym_case_statement] = STATE(1155), + [sym_function_definition] = STATE(1155), + [sym_subshell] = STATE(1155), + [sym_pipeline] = STATE(1155), + [sym_list] = STATE(1155), + [sym_command] = STATE(1155), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1078), - [sym_variable_assignment] = STATE(1176), - [sym_declaration_command] = STATE(1078), - [sym_unset_command] = STATE(1078), + [sym_bracket_command] = STATE(1155), + [sym_variable_assignment] = STATE(1156), + [sym_declaration_command] = STATE(1155), + [sym_unset_command] = STATE(1155), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -27007,21 +26472,512 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, + [568] = { + [sym_for_statement] = STATE(1157), + [sym_while_statement] = STATE(1157), + [sym_if_statement] = STATE(1157), + [sym_case_statement] = STATE(1157), + [sym_function_definition] = STATE(1157), + [sym_subshell] = STATE(1157), + [sym_pipeline] = STATE(1157), + [sym_list] = STATE(1157), + [sym_command] = STATE(1157), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1157), + [sym_variable_assignment] = STATE(1158), + [sym_declaration_command] = STATE(1157), + [sym_unset_command] = STATE(1157), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(302), + }, + [569] = { + [sym_concatenation] = STATE(509), + [sym_string] = STATE(564), + [sym_simple_expansion] = STATE(564), + [sym_string_expansion] = STATE(564), + [sym_expansion] = STATE(564), + [sym_command_substitution] = STATE(564), + [sym_process_substitution] = STATE(564), + [aux_sym_unset_command_repeat1] = STATE(1159), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_PIPE_AMP] = ACTIONS(2160), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [sym__special_characters] = ACTIONS(1032), + [anon_sym_DQUOTE] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1036), + [sym_raw_string] = ACTIONS(1038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1042), + [anon_sym_BQUOTE] = ACTIONS(2160), + [anon_sym_LT_LPAREN] = ACTIONS(1044), + [anon_sym_GT_LPAREN] = ACTIONS(1044), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(942), + [sym_word] = ACTIONS(1046), + }, + [570] = { + [sym_string] = STATE(1160), + [sym_simple_expansion] = STATE(1160), + [sym_string_expansion] = STATE(1160), + [sym_expansion] = STATE(1160), + [sym_command_substitution] = STATE(1160), + [sym_process_substitution] = STATE(1160), + [sym__special_characters] = ACTIONS(2324), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(2326), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2324), + }, + [571] = { + [aux_sym_concatenation_repeat1] = STATE(1161), + [sym_file_descriptor] = ACTIONS(790), + [sym__concat] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_EQ_TILDE] = ACTIONS(1571), + [anon_sym_EQ_EQ] = ACTIONS(1571), + [anon_sym_LT] = ACTIONS(1571), + [anon_sym_GT] = ACTIONS(1571), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(1571), + [anon_sym_AMP_GT_GT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(790), + [anon_sym_GT_AMP] = ACTIONS(790), + [anon_sym_LT_LT] = ACTIONS(1571), + [anon_sym_LT_LT_DASH] = ACTIONS(790), + [anon_sym_LT_LT_LT] = ACTIONS(790), + [sym__special_characters] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(1571), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(792), + }, + [572] = { + [sym_file_descriptor] = ACTIONS(794), + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_EQ_TILDE] = ACTIONS(1573), + [anon_sym_EQ_EQ] = ACTIONS(1573), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(794), + [anon_sym_LT_AMP] = ACTIONS(794), + [anon_sym_GT_AMP] = ACTIONS(794), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_LT_LT_DASH] = ACTIONS(794), + [anon_sym_LT_LT_LT] = ACTIONS(794), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(796), + }, + [573] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(2328), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [574] = { + [sym_file_descriptor] = ACTIONS(826), + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_EQ_TILDE] = ACTIONS(1577), + [anon_sym_EQ_EQ] = ACTIONS(1577), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(1577), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(1577), + [anon_sym_LT_LT_DASH] = ACTIONS(826), + [anon_sym_LT_LT_LT] = ACTIONS(826), + [sym__special_characters] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(828), + }, + [575] = { + [sym_file_descriptor] = ACTIONS(830), + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_EQ_TILDE] = ACTIONS(1579), + [anon_sym_EQ_EQ] = ACTIONS(1579), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(1579), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [anon_sym_LT_LT] = ACTIONS(1579), + [anon_sym_LT_LT_DASH] = ACTIONS(830), + [anon_sym_LT_LT_LT] = ACTIONS(830), + [sym__special_characters] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(1579), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(832), + }, + [576] = { + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_EQ_TILDE] = ACTIONS(1581), + [anon_sym_EQ_EQ] = ACTIONS(1581), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(1581), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_LT_LT_DASH] = ACTIONS(834), + [anon_sym_LT_LT_LT] = ACTIONS(834), + [sym__special_characters] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1581), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(836), + }, + [577] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(2330), + [sym_comment] = ACTIONS(56), + }, + [578] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1166), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2334), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [579] = { + [sym_subscript] = STATE(1170), + [sym_variable_name] = ACTIONS(2336), + [anon_sym_DOLLAR] = ACTIONS(2338), + [anon_sym_DASH] = ACTIONS(2338), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2338), + [anon_sym_AT] = ACTIONS(2338), + [anon_sym_QMARK] = ACTIONS(2338), + [anon_sym_0] = ACTIONS(2342), + [anon_sym__] = ACTIONS(2342), + }, + [580] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1173), + [anon_sym_RBRACE] = ACTIONS(2344), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2346), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [581] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1176), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2350), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [582] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2352), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [583] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2352), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [584] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(2352), + [sym_comment] = ACTIONS(56), + }, + [585] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(2352), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [586] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2354), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [587] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2354), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [588] = { + [anon_sym_RPAREN] = ACTIONS(2356), + [sym_comment] = ACTIONS(56), + }, [589] = { - [sym_for_statement] = STATE(1177), - [sym_while_statement] = STATE(1177), - [sym_if_statement] = STATE(1177), - [sym_case_statement] = STATE(1177), - [sym_function_definition] = STATE(1177), - [sym_subshell] = STATE(1177), - [sym_pipeline] = STATE(1177), - [sym_list] = STATE(1177), - [sym_command] = STATE(1177), + [sym_for_statement] = STATE(1082), + [sym_while_statement] = STATE(1082), + [sym_if_statement] = STATE(1082), + [sym_case_statement] = STATE(1082), + [sym_function_definition] = STATE(1082), + [sym_subshell] = STATE(1082), + [sym_pipeline] = STATE(1082), + [sym_list] = STATE(1082), + [sym_command] = STATE(1082), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1177), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(1177), - [sym_unset_command] = STATE(1177), + [sym_bracket_command] = STATE(1082), + [sym_variable_assignment] = STATE(1180), + [sym_declaration_command] = STATE(1082), + [sym_unset_command] = STATE(1082), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -27069,665 +27025,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(334), }, [590] = { - [anon_sym_LT] = ACTIONS(2352), - [anon_sym_GT] = ACTIONS(2352), - [anon_sym_GT_GT] = ACTIONS(2354), - [anon_sym_AMP_GT] = ACTIONS(2352), - [anon_sym_AMP_GT_GT] = ACTIONS(2354), - [anon_sym_LT_AMP] = ACTIONS(2354), - [anon_sym_GT_AMP] = ACTIONS(2354), - [sym_comment] = ACTIONS(56), - }, - [591] = { - [sym_concatenation] = STATE(1085), - [sym_string] = STATE(1181), - [sym_simple_expansion] = STATE(1181), - [sym_string_expansion] = STATE(1181), - [sym_expansion] = STATE(1181), - [sym_command_substitution] = STATE(1181), - [sym_process_substitution] = STATE(1181), - [sym__special_characters] = ACTIONS(2356), - [anon_sym_DQUOTE] = ACTIONS(2358), - [anon_sym_DOLLAR] = ACTIONS(2360), - [sym_raw_string] = ACTIONS(2362), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2364), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2366), - [anon_sym_BQUOTE] = ACTIONS(2368), - [anon_sym_LT_LPAREN] = ACTIONS(2370), - [anon_sym_GT_LPAREN] = ACTIONS(2370), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2362), - [sym_regex] = ACTIONS(2214), - }, - [592] = { - [sym_concatenation] = STATE(1094), - [sym_string] = STATE(1185), - [sym_simple_expansion] = STATE(1185), - [sym_string_expansion] = STATE(1185), - [sym_expansion] = STATE(1185), - [sym_command_substitution] = STATE(1185), - [sym_process_substitution] = STATE(1185), - [sym__special_characters] = ACTIONS(2372), - [anon_sym_DQUOTE] = ACTIONS(2374), - [anon_sym_DOLLAR] = ACTIONS(2376), - [sym_raw_string] = ACTIONS(2378), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2382), - [anon_sym_BQUOTE] = ACTIONS(2384), - [anon_sym_LT_LPAREN] = ACTIONS(2386), - [anon_sym_GT_LPAREN] = ACTIONS(2386), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2388), - }, - [593] = { - [sym_concatenation] = STATE(1100), - [sym_string] = STATE(1191), - [sym_simple_expansion] = STATE(1191), - [sym_string_expansion] = STATE(1191), - [sym_expansion] = STATE(1191), - [sym_command_substitution] = STATE(1191), - [sym_process_substitution] = STATE(1191), - [sym__special_characters] = ACTIONS(2390), - [anon_sym_DQUOTE] = ACTIONS(2374), - [anon_sym_DOLLAR] = ACTIONS(2376), - [sym_raw_string] = ACTIONS(2392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2382), - [anon_sym_BQUOTE] = ACTIONS(2384), - [anon_sym_LT_LPAREN] = ACTIONS(2386), - [anon_sym_GT_LPAREN] = ACTIONS(2386), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2394), - }, - [594] = { - [aux_sym_concatenation_repeat1] = STATE(570), - [sym_file_descriptor] = ACTIONS(606), - [sym__concat] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(604), - [anon_sym_PIPE_AMP] = ACTIONS(606), - [anon_sym_AMP_AMP] = ACTIONS(606), - [anon_sym_PIPE_PIPE] = ACTIONS(606), - [anon_sym_EQ_TILDE] = ACTIONS(604), - [anon_sym_EQ_EQ] = ACTIONS(604), - [anon_sym_LT] = ACTIONS(604), - [anon_sym_GT] = ACTIONS(604), - [anon_sym_GT_GT] = ACTIONS(606), - [anon_sym_AMP_GT] = ACTIONS(604), - [anon_sym_AMP_GT_GT] = ACTIONS(606), - [anon_sym_LT_AMP] = ACTIONS(606), - [anon_sym_GT_AMP] = ACTIONS(606), - [anon_sym_LT_LT] = ACTIONS(604), - [anon_sym_LT_LT_DASH] = ACTIONS(606), - [anon_sym_LT_LT_LT] = ACTIONS(606), - [sym__special_characters] = ACTIONS(604), - [anon_sym_DQUOTE] = ACTIONS(606), - [anon_sym_DOLLAR] = ACTIONS(604), - [sym_raw_string] = ACTIONS(606), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(606), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(606), - [anon_sym_BQUOTE] = ACTIONS(606), - [anon_sym_LT_LPAREN] = ACTIONS(606), - [anon_sym_GT_LPAREN] = ACTIONS(606), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(608), - }, - [595] = { - [aux_sym_concatenation_repeat1] = STATE(570), - [sym_file_descriptor] = ACTIONS(622), - [sym__concat] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(620), - [anon_sym_PIPE_AMP] = ACTIONS(622), - [anon_sym_AMP_AMP] = ACTIONS(622), - [anon_sym_PIPE_PIPE] = ACTIONS(622), - [anon_sym_EQ_TILDE] = ACTIONS(620), - [anon_sym_EQ_EQ] = ACTIONS(620), - [anon_sym_LT] = ACTIONS(620), - [anon_sym_GT] = ACTIONS(620), - [anon_sym_GT_GT] = ACTIONS(622), - [anon_sym_AMP_GT] = ACTIONS(620), - [anon_sym_AMP_GT_GT] = ACTIONS(622), - [anon_sym_LT_AMP] = ACTIONS(622), - [anon_sym_GT_AMP] = ACTIONS(622), - [anon_sym_LT_LT] = ACTIONS(620), - [anon_sym_LT_LT_DASH] = ACTIONS(622), - [anon_sym_LT_LT_LT] = ACTIONS(622), - [sym__special_characters] = ACTIONS(620), - [anon_sym_DQUOTE] = ACTIONS(622), - [anon_sym_DOLLAR] = ACTIONS(620), - [sym_raw_string] = ACTIONS(622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(622), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(622), - [anon_sym_BQUOTE] = ACTIONS(622), - [anon_sym_LT_LPAREN] = ACTIONS(622), - [anon_sym_GT_LPAREN] = ACTIONS(622), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(624), - }, - [596] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1192), - [sym_file_descriptor] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_PIPE_AMP] = ACTIONS(2248), - [anon_sym_AMP_AMP] = ACTIONS(2248), - [anon_sym_PIPE_PIPE] = ACTIONS(2248), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_GT_GT] = ACTIONS(1082), - [anon_sym_AMP_GT] = ACTIONS(1080), - [anon_sym_AMP_GT_GT] = ACTIONS(1082), - [anon_sym_LT_AMP] = ACTIONS(1082), - [anon_sym_GT_AMP] = ACTIONS(1082), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(1084), - [anon_sym_BQUOTE] = ACTIONS(2248), - [sym_comment] = ACTIONS(56), - }, - [597] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [sym_concatenation] = STATE(540), - [sym_string] = STATE(595), - [sym_simple_expansion] = STATE(595), - [sym_string_expansion] = STATE(595), - [sym_expansion] = STATE(595), - [sym_command_substitution] = STATE(595), - [sym_process_substitution] = STATE(595), - [aux_sym_while_statement_repeat1] = STATE(1193), - [aux_sym_command_repeat2] = STATE(1194), - [sym_file_descriptor] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_PIPE_AMP] = ACTIONS(2248), - [anon_sym_AMP_AMP] = ACTIONS(2248), - [anon_sym_PIPE_PIPE] = ACTIONS(2248), - [anon_sym_EQ_TILDE] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_GT_GT] = ACTIONS(1082), - [anon_sym_AMP_GT] = ACTIONS(1080), - [anon_sym_AMP_GT_GT] = ACTIONS(1082), - [anon_sym_LT_AMP] = ACTIONS(1082), - [anon_sym_GT_AMP] = ACTIONS(1082), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(1084), - [sym__special_characters] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(1088), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1090), - }, - [598] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [sym_concatenation] = STATE(540), - [sym_string] = STATE(595), - [sym_simple_expansion] = STATE(595), - [sym_string_expansion] = STATE(595), - [sym_expansion] = STATE(595), - [sym_command_substitution] = STATE(595), - [sym_process_substitution] = STATE(595), - [aux_sym_while_statement_repeat1] = STATE(1193), - [aux_sym_command_repeat2] = STATE(1195), - [sym_file_descriptor] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_PIPE_AMP] = ACTIONS(2248), - [anon_sym_AMP_AMP] = ACTIONS(2248), - [anon_sym_PIPE_PIPE] = ACTIONS(2248), - [anon_sym_EQ_TILDE] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_GT_GT] = ACTIONS(1082), - [anon_sym_AMP_GT] = ACTIONS(1080), - [anon_sym_AMP_GT_GT] = ACTIONS(1082), - [anon_sym_LT_AMP] = ACTIONS(1082), - [anon_sym_GT_AMP] = ACTIONS(1082), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(1084), - [sym__special_characters] = ACTIONS(1086), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(1088), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(2248), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1090), - }, - [599] = { - [sym_file_descriptor] = ACTIONS(2396), - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_EQ_TILDE] = ACTIONS(2398), - [anon_sym_EQ_EQ] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_GT] = ACTIONS(2398), - [anon_sym_GT_GT] = ACTIONS(2398), - [anon_sym_AMP_GT] = ACTIONS(2398), - [anon_sym_AMP_GT_GT] = ACTIONS(2398), - [anon_sym_LT_AMP] = ACTIONS(2398), - [anon_sym_GT_AMP] = ACTIONS(2398), - [anon_sym_LT_LT] = ACTIONS(2398), - [anon_sym_LT_LT_DASH] = ACTIONS(2398), - [anon_sym_LT_LT_LT] = ACTIONS(2398), - [sym__special_characters] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), - [anon_sym_BQUOTE] = ACTIONS(2398), - [anon_sym_LT_LPAREN] = ACTIONS(2398), - [anon_sym_GT_LPAREN] = ACTIONS(2398), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - }, - [600] = { - [sym_compound_statement] = STATE(1196), - [anon_sym_LBRACE] = ACTIONS(484), - [sym_comment] = ACTIONS(56), - }, - [601] = { - [anon_sym_esac] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_RPAREN] = ACTIONS(2400), - [anon_sym_SEMI_SEMI] = ACTIONS(2400), - [anon_sym_PIPE_AMP] = ACTIONS(2400), - [anon_sym_AMP_AMP] = ACTIONS(2400), - [anon_sym_PIPE_PIPE] = ACTIONS(2400), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2400), - [anon_sym_LF] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2400), - }, - [602] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_RPAREN] = ACTIONS(2400), - [anon_sym_SEMI_SEMI] = ACTIONS(2400), - [anon_sym_PIPE_AMP] = ACTIONS(2400), - [anon_sym_AMP_AMP] = ACTIONS(2400), - [anon_sym_PIPE_PIPE] = ACTIONS(2400), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2400), - [anon_sym_LF] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2400), - }, - [603] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(2402), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_LF] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - }, - [604] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(2402), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_LF] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - }, - [605] = { - [sym_concatenation] = STATE(1199), - [sym_string] = STATE(1198), - [sym_simple_expansion] = STATE(1198), - [sym_string_expansion] = STATE(1198), - [sym_expansion] = STATE(1198), - [sym_command_substitution] = STATE(1198), - [sym_process_substitution] = STATE(1198), - [sym__special_characters] = ACTIONS(2404), - [anon_sym_DQUOTE] = ACTIONS(1118), - [anon_sym_DOLLAR] = ACTIONS(1120), - [sym_raw_string] = ACTIONS(2406), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1124), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1130), - [anon_sym_GT_LPAREN] = ACTIONS(1130), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2408), - }, - [606] = { - [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(1553), - [sym__concat] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(1555), - [anon_sym_SEMI_SEMI] = ACTIONS(1555), - [anon_sym_PIPE_AMP] = ACTIONS(1555), - [anon_sym_AMP_AMP] = ACTIONS(1555), - [anon_sym_PIPE_PIPE] = ACTIONS(1555), - [anon_sym_EQ_TILDE] = ACTIONS(1555), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_GT] = ACTIONS(1555), - [anon_sym_GT_GT] = ACTIONS(1555), - [anon_sym_AMP_GT] = ACTIONS(1555), - [anon_sym_AMP_GT_GT] = ACTIONS(1555), - [anon_sym_LT_AMP] = ACTIONS(1555), - [anon_sym_GT_AMP] = ACTIONS(1555), - [anon_sym_LT_LT] = ACTIONS(1555), - [anon_sym_LT_LT_DASH] = ACTIONS(1555), - [anon_sym_LT_LT_LT] = ACTIONS(1555), - [sym__special_characters] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1555), - [anon_sym_DOLLAR] = ACTIONS(1555), - [sym_raw_string] = ACTIONS(1555), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1555), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1555), - [anon_sym_BQUOTE] = ACTIONS(1555), - [anon_sym_LT_LPAREN] = ACTIONS(1555), - [anon_sym_GT_LPAREN] = ACTIONS(1555), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_LF] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1555), - }, - [607] = { - [aux_sym_concatenation_repeat1] = STATE(131), - [sym_file_descriptor] = ACTIONS(1559), - [sym__concat] = ACTIONS(226), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_SEMI_SEMI] = ACTIONS(1561), - [anon_sym_PIPE_AMP] = ACTIONS(1561), - [anon_sym_AMP_AMP] = ACTIONS(1561), - [anon_sym_PIPE_PIPE] = ACTIONS(1561), - [anon_sym_EQ_TILDE] = ACTIONS(1561), - [anon_sym_EQ_EQ] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1561), - [anon_sym_AMP_GT] = ACTIONS(1561), - [anon_sym_AMP_GT_GT] = ACTIONS(1561), - [anon_sym_LT_AMP] = ACTIONS(1561), - [anon_sym_GT_AMP] = ACTIONS(1561), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_LT_LT_DASH] = ACTIONS(1561), - [anon_sym_LT_LT_LT] = ACTIONS(1561), - [sym__special_characters] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1561), - [sym_raw_string] = ACTIONS(1561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1561), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1561), - [anon_sym_BQUOTE] = ACTIONS(1561), - [anon_sym_LT_LPAREN] = ACTIONS(1561), - [anon_sym_GT_LPAREN] = ACTIONS(1561), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_LF] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1561), - }, - [608] = { - [sym_file_descriptor] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_RPAREN] = ACTIONS(1561), - [anon_sym_SEMI_SEMI] = ACTIONS(1561), - [anon_sym_PIPE_AMP] = ACTIONS(1561), - [anon_sym_AMP_AMP] = ACTIONS(1561), - [anon_sym_PIPE_PIPE] = ACTIONS(1561), - [anon_sym_EQ_TILDE] = ACTIONS(1561), - [anon_sym_EQ_EQ] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1561), - [anon_sym_AMP_GT] = ACTIONS(1561), - [anon_sym_AMP_GT_GT] = ACTIONS(1561), - [anon_sym_LT_AMP] = ACTIONS(1561), - [anon_sym_GT_AMP] = ACTIONS(1561), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_LT_LT_DASH] = ACTIONS(1561), - [anon_sym_LT_LT_LT] = ACTIONS(1561), - [sym__special_characters] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1561), - [sym_raw_string] = ACTIONS(1561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1561), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1561), - [anon_sym_BQUOTE] = ACTIONS(1561), - [anon_sym_LT_LPAREN] = ACTIONS(1561), - [anon_sym_GT_LPAREN] = ACTIONS(1561), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_LF] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1561), - }, - [609] = { - [aux_sym_concatenation_repeat1] = STATE(1201), - [sym_file_descriptor] = ACTIONS(754), - [sym__concat] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2412), - [anon_sym_SEMI_SEMI] = ACTIONS(2412), - [anon_sym_PIPE_AMP] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_LT] = ACTIONS(2412), - [anon_sym_GT] = ACTIONS(2412), - [anon_sym_GT_GT] = ACTIONS(2412), - [anon_sym_AMP_GT] = ACTIONS(2412), - [anon_sym_AMP_GT_GT] = ACTIONS(2412), - [anon_sym_LT_AMP] = ACTIONS(2412), - [anon_sym_GT_AMP] = ACTIONS(2412), - [anon_sym_LT_LT] = ACTIONS(2412), - [anon_sym_LT_LT_DASH] = ACTIONS(2412), - [anon_sym_LT_LT_LT] = ACTIONS(2412), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_LF] = ACTIONS(2412), - [anon_sym_AMP] = ACTIONS(2412), - }, - [610] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1203), - [anon_sym_DQUOTE] = ACTIONS(2414), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [611] = { - [sym_string] = STATE(1205), - [anon_sym_DQUOTE] = ACTIONS(1118), - [anon_sym_DOLLAR] = ACTIONS(2416), - [sym_raw_string] = ACTIONS(2418), - [anon_sym_POUND] = ACTIONS(2416), - [anon_sym_DASH] = ACTIONS(2416), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_AT] = ACTIONS(2416), - [anon_sym_QMARK] = ACTIONS(2416), - [anon_sym_0] = ACTIONS(2422), - [anon_sym__] = ACTIONS(2422), - }, - [612] = { - [aux_sym_concatenation_repeat1] = STATE(1201), - [sym_file_descriptor] = ACTIONS(770), - [sym__concat] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_SEMI_SEMI] = ACTIONS(2424), - [anon_sym_PIPE_AMP] = ACTIONS(2424), - [anon_sym_AMP_AMP] = ACTIONS(2424), - [anon_sym_PIPE_PIPE] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2424), - [anon_sym_GT_GT] = ACTIONS(2424), - [anon_sym_AMP_GT] = ACTIONS(2424), - [anon_sym_AMP_GT_GT] = ACTIONS(2424), - [anon_sym_LT_AMP] = ACTIONS(2424), - [anon_sym_GT_AMP] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2424), - [anon_sym_LT_LT_DASH] = ACTIONS(2424), - [anon_sym_LT_LT_LT] = ACTIONS(2424), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_LF] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2424), - }, - [613] = { - [sym_subscript] = STATE(1211), - [sym_variable_name] = ACTIONS(2426), - [anon_sym_DOLLAR] = ACTIONS(2428), - [anon_sym_POUND] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2428), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2432), - [anon_sym_STAR] = ACTIONS(2428), - [anon_sym_AT] = ACTIONS(2428), - [anon_sym_QMARK] = ACTIONS(2428), - [anon_sym_0] = ACTIONS(2434), - [anon_sym__] = ACTIONS(2434), - }, - [614] = { - [sym_for_statement] = STATE(1212), - [sym_while_statement] = STATE(1212), - [sym_if_statement] = STATE(1212), - [sym_case_statement] = STATE(1212), - [sym_function_definition] = STATE(1212), - [sym_subshell] = STATE(1212), - [sym_pipeline] = STATE(1212), - [sym_list] = STATE(1212), - [sym_command] = STATE(1212), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1212), - [sym_variable_assignment] = STATE(1213), - [sym_declaration_command] = STATE(1212), - [sym_unset_command] = STATE(1212), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [615] = { - [sym_for_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_if_statement] = STATE(1214), - [sym_case_statement] = STATE(1214), - [sym_function_definition] = STATE(1214), - [sym_subshell] = STATE(1214), - [sym_pipeline] = STATE(1214), - [sym_list] = STATE(1214), - [sym_command] = STATE(1214), + [sym_for_statement] = STATE(1181), + [sym_while_statement] = STATE(1181), + [sym_if_statement] = STATE(1181), + [sym_case_statement] = STATE(1181), + [sym_function_definition] = STATE(1181), + [sym_subshell] = STATE(1181), + [sym_pipeline] = STATE(1181), + [sym_list] = STATE(1181), + [sym_command] = STATE(1181), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1214), - [sym_variable_assignment] = STATE(1215), - [sym_declaration_command] = STATE(1214), - [sym_unset_command] = STATE(1214), + [sym_bracket_command] = STATE(1181), + [sym_variable_assignment] = STATE(1182), + [sym_declaration_command] = STATE(1181), + [sym_unset_command] = STATE(1181), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -27774,7 +27085,591 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [616] = { + [591] = { + [anon_sym_LT] = ACTIONS(2358), + [anon_sym_GT] = ACTIONS(2358), + [anon_sym_GT_GT] = ACTIONS(2360), + [anon_sym_AMP_GT] = ACTIONS(2358), + [anon_sym_AMP_GT_GT] = ACTIONS(2360), + [anon_sym_LT_AMP] = ACTIONS(2360), + [anon_sym_GT_AMP] = ACTIONS(2360), + [sym_comment] = ACTIONS(56), + }, + [592] = { + [sym_concatenation] = STATE(1089), + [sym_string] = STATE(1185), + [sym_simple_expansion] = STATE(1185), + [sym_string_expansion] = STATE(1185), + [sym_expansion] = STATE(1185), + [sym_command_substitution] = STATE(1185), + [sym_process_substitution] = STATE(1185), + [sym__special_characters] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2364), + [anon_sym_DOLLAR] = ACTIONS(2366), + [sym_raw_string] = ACTIONS(2368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2372), + [anon_sym_BQUOTE] = ACTIONS(2374), + [anon_sym_LT_LPAREN] = ACTIONS(2376), + [anon_sym_GT_LPAREN] = ACTIONS(2376), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2368), + [sym_regex] = ACTIONS(2220), + }, + [593] = { + [sym_concatenation] = STATE(1098), + [sym_string] = STATE(1189), + [sym_simple_expansion] = STATE(1189), + [sym_string_expansion] = STATE(1189), + [sym_expansion] = STATE(1189), + [sym_command_substitution] = STATE(1189), + [sym_process_substitution] = STATE(1189), + [sym__special_characters] = ACTIONS(2378), + [anon_sym_DQUOTE] = ACTIONS(2380), + [anon_sym_DOLLAR] = ACTIONS(2382), + [sym_raw_string] = ACTIONS(2384), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2388), + [anon_sym_BQUOTE] = ACTIONS(2390), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2394), + }, + [594] = { + [sym_concatenation] = STATE(1104), + [sym_string] = STATE(1195), + [sym_simple_expansion] = STATE(1195), + [sym_string_expansion] = STATE(1195), + [sym_expansion] = STATE(1195), + [sym_command_substitution] = STATE(1195), + [sym_process_substitution] = STATE(1195), + [sym__special_characters] = ACTIONS(2396), + [anon_sym_DQUOTE] = ACTIONS(2380), + [anon_sym_DOLLAR] = ACTIONS(2382), + [sym_raw_string] = ACTIONS(2398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2388), + [anon_sym_BQUOTE] = ACTIONS(2390), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2400), + }, + [595] = { + [aux_sym_concatenation_repeat1] = STATE(571), + [sym_file_descriptor] = ACTIONS(608), + [sym__concat] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_PIPE_AMP] = ACTIONS(608), + [anon_sym_AMP_AMP] = ACTIONS(608), + [anon_sym_PIPE_PIPE] = ACTIONS(608), + [anon_sym_EQ_TILDE] = ACTIONS(606), + [anon_sym_EQ_EQ] = ACTIONS(606), + [anon_sym_LT] = ACTIONS(606), + [anon_sym_GT] = ACTIONS(606), + [anon_sym_GT_GT] = ACTIONS(608), + [anon_sym_AMP_GT] = ACTIONS(606), + [anon_sym_AMP_GT_GT] = ACTIONS(608), + [anon_sym_LT_AMP] = ACTIONS(608), + [anon_sym_GT_AMP] = ACTIONS(608), + [anon_sym_LT_LT] = ACTIONS(606), + [anon_sym_LT_LT_DASH] = ACTIONS(608), + [anon_sym_LT_LT_LT] = ACTIONS(608), + [sym__special_characters] = ACTIONS(606), + [anon_sym_DQUOTE] = ACTIONS(608), + [anon_sym_DOLLAR] = ACTIONS(606), + [sym_raw_string] = ACTIONS(608), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), + [anon_sym_BQUOTE] = ACTIONS(608), + [anon_sym_LT_LPAREN] = ACTIONS(608), + [anon_sym_GT_LPAREN] = ACTIONS(608), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(610), + }, + [596] = { + [aux_sym_concatenation_repeat1] = STATE(571), + [sym_file_descriptor] = ACTIONS(624), + [sym__concat] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(622), + [anon_sym_PIPE_AMP] = ACTIONS(624), + [anon_sym_AMP_AMP] = ACTIONS(624), + [anon_sym_PIPE_PIPE] = ACTIONS(624), + [anon_sym_EQ_TILDE] = ACTIONS(622), + [anon_sym_EQ_EQ] = ACTIONS(622), + [anon_sym_LT] = ACTIONS(622), + [anon_sym_GT] = ACTIONS(622), + [anon_sym_GT_GT] = ACTIONS(624), + [anon_sym_AMP_GT] = ACTIONS(622), + [anon_sym_AMP_GT_GT] = ACTIONS(624), + [anon_sym_LT_AMP] = ACTIONS(624), + [anon_sym_GT_AMP] = ACTIONS(624), + [anon_sym_LT_LT] = ACTIONS(622), + [anon_sym_LT_LT_DASH] = ACTIONS(624), + [anon_sym_LT_LT_LT] = ACTIONS(624), + [sym__special_characters] = ACTIONS(622), + [anon_sym_DQUOTE] = ACTIONS(624), + [anon_sym_DOLLAR] = ACTIONS(622), + [sym_raw_string] = ACTIONS(624), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), + [anon_sym_BQUOTE] = ACTIONS(624), + [anon_sym_LT_LPAREN] = ACTIONS(624), + [anon_sym_GT_LPAREN] = ACTIONS(624), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(626), + }, + [597] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [aux_sym_while_statement_repeat1] = STATE(1196), + [sym_file_descriptor] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1084), + [anon_sym_LT_AMP] = ACTIONS(1084), + [anon_sym_GT_AMP] = ACTIONS(1084), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_BQUOTE] = ACTIONS(2254), + [sym_comment] = ACTIONS(56), + }, + [598] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [sym_concatenation] = STATE(541), + [sym_string] = STATE(596), + [sym_simple_expansion] = STATE(596), + [sym_string_expansion] = STATE(596), + [sym_expansion] = STATE(596), + [sym_command_substitution] = STATE(596), + [sym_process_substitution] = STATE(596), + [aux_sym_while_statement_repeat1] = STATE(1197), + [aux_sym_command_repeat2] = STATE(1198), + [sym_file_descriptor] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_EQ_TILDE] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1084), + [anon_sym_LT_AMP] = ACTIONS(1084), + [anon_sym_GT_AMP] = ACTIONS(1084), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [sym__special_characters] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(1090), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(2254), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1092), + }, + [599] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [sym_concatenation] = STATE(541), + [sym_string] = STATE(596), + [sym_simple_expansion] = STATE(596), + [sym_string_expansion] = STATE(596), + [sym_expansion] = STATE(596), + [sym_command_substitution] = STATE(596), + [sym_process_substitution] = STATE(596), + [aux_sym_while_statement_repeat1] = STATE(1197), + [aux_sym_command_repeat2] = STATE(1199), + [sym_file_descriptor] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(2252), + [anon_sym_PIPE_AMP] = ACTIONS(2254), + [anon_sym_AMP_AMP] = ACTIONS(2254), + [anon_sym_PIPE_PIPE] = ACTIONS(2254), + [anon_sym_EQ_TILDE] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1084), + [anon_sym_LT_AMP] = ACTIONS(1084), + [anon_sym_GT_AMP] = ACTIONS(1084), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [sym__special_characters] = ACTIONS(1088), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(1090), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(2254), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1092), + }, + [600] = { + [sym_file_descriptor] = ACTIONS(2402), + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_EQ_TILDE] = ACTIONS(2404), + [anon_sym_EQ_EQ] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_AMP_GT] = ACTIONS(2404), + [anon_sym_AMP_GT_GT] = ACTIONS(2404), + [anon_sym_LT_AMP] = ACTIONS(2404), + [anon_sym_GT_AMP] = ACTIONS(2404), + [anon_sym_LT_LT] = ACTIONS(2404), + [anon_sym_LT_LT_DASH] = ACTIONS(2404), + [anon_sym_LT_LT_LT] = ACTIONS(2404), + [sym__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(2404), + [sym_raw_string] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2404), + [anon_sym_LT_LPAREN] = ACTIONS(2404), + [anon_sym_GT_LPAREN] = ACTIONS(2404), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + }, + [601] = { + [sym_compound_statement] = STATE(1200), + [anon_sym_LBRACE] = ACTIONS(486), + [sym_comment] = ACTIONS(56), + }, + [602] = { + [anon_sym_esac] = ACTIONS(2406), + [anon_sym_PIPE] = ACTIONS(2406), + [anon_sym_RPAREN] = ACTIONS(2406), + [anon_sym_SEMI_SEMI] = ACTIONS(2406), + [anon_sym_PIPE_AMP] = ACTIONS(2406), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_PIPE_PIPE] = ACTIONS(2406), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2406), + [anon_sym_LF] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2406), + }, + [603] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(2406), + [anon_sym_RPAREN] = ACTIONS(2406), + [anon_sym_SEMI_SEMI] = ACTIONS(2406), + [anon_sym_PIPE_AMP] = ACTIONS(2406), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_PIPE_PIPE] = ACTIONS(2406), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(2406), + [anon_sym_LF] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2406), + }, + [604] = { + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(2408), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(2408), + [anon_sym_PIPE_PIPE] = ACTIONS(2408), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2408), + [anon_sym_LF] = ACTIONS(2408), + [anon_sym_AMP] = ACTIONS(2408), + }, + [605] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(2408), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(2408), + [anon_sym_PIPE_PIPE] = ACTIONS(2408), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(2408), + [anon_sym_LF] = ACTIONS(2408), + [anon_sym_AMP] = ACTIONS(2408), + }, + [606] = { + [sym_concatenation] = STATE(1203), + [sym_string] = STATE(1202), + [sym_simple_expansion] = STATE(1202), + [sym_string_expansion] = STATE(1202), + [sym_expansion] = STATE(1202), + [sym_command_substitution] = STATE(1202), + [sym_process_substitution] = STATE(1202), + [sym__special_characters] = ACTIONS(2410), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1122), + [sym_raw_string] = ACTIONS(2412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1132), + [anon_sym_GT_LPAREN] = ACTIONS(1132), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2414), + }, + [607] = { + [aux_sym_concatenation_repeat1] = STATE(131), + [sym_file_descriptor] = ACTIONS(1557), + [sym__concat] = ACTIONS(226), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_SEMI_SEMI] = ACTIONS(1559), + [anon_sym_PIPE_AMP] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_EQ_TILDE] = ACTIONS(1559), + [anon_sym_EQ_EQ] = ACTIONS(1559), + [anon_sym_LT] = ACTIONS(1559), + [anon_sym_GT] = ACTIONS(1559), + [anon_sym_GT_GT] = ACTIONS(1559), + [anon_sym_AMP_GT] = ACTIONS(1559), + [anon_sym_AMP_GT_GT] = ACTIONS(1559), + [anon_sym_LT_AMP] = ACTIONS(1559), + [anon_sym_GT_AMP] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1559), + [anon_sym_LT_LT_DASH] = ACTIONS(1559), + [anon_sym_LT_LT_LT] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_DOLLAR] = ACTIONS(1559), + [sym_raw_string] = ACTIONS(1559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [anon_sym_LT_LPAREN] = ACTIONS(1559), + [anon_sym_GT_LPAREN] = ACTIONS(1559), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1559), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_LF] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + }, + [608] = { + [aux_sym_concatenation_repeat1] = STATE(131), + [sym_file_descriptor] = ACTIONS(1563), + [sym__concat] = ACTIONS(226), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_SEMI_SEMI] = ACTIONS(1565), + [anon_sym_PIPE_AMP] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1565), + [anon_sym_EQ_TILDE] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1565), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_AMP_GT] = ACTIONS(1565), + [anon_sym_AMP_GT_GT] = ACTIONS(1565), + [anon_sym_LT_AMP] = ACTIONS(1565), + [anon_sym_GT_AMP] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT_LT_DASH] = ACTIONS(1565), + [anon_sym_LT_LT_LT] = ACTIONS(1565), + [sym__special_characters] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1565), + [sym_raw_string] = ACTIONS(1565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1565), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1565), + [anon_sym_BQUOTE] = ACTIONS(1565), + [anon_sym_LT_LPAREN] = ACTIONS(1565), + [anon_sym_GT_LPAREN] = ACTIONS(1565), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1565), + [anon_sym_LF] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + }, + [609] = { + [sym_file_descriptor] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1565), + [anon_sym_SEMI_SEMI] = ACTIONS(1565), + [anon_sym_PIPE_AMP] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1565), + [anon_sym_EQ_TILDE] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1565), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_AMP_GT] = ACTIONS(1565), + [anon_sym_AMP_GT_GT] = ACTIONS(1565), + [anon_sym_LT_AMP] = ACTIONS(1565), + [anon_sym_GT_AMP] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT_LT_DASH] = ACTIONS(1565), + [anon_sym_LT_LT_LT] = ACTIONS(1565), + [sym__special_characters] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1565), + [sym_raw_string] = ACTIONS(1565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1565), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1565), + [anon_sym_BQUOTE] = ACTIONS(1565), + [anon_sym_LT_LPAREN] = ACTIONS(1565), + [anon_sym_GT_LPAREN] = ACTIONS(1565), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1565), + [anon_sym_LF] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + }, + [610] = { + [aux_sym_concatenation_repeat1] = STATE(1205), + [sym_file_descriptor] = ACTIONS(756), + [sym__concat] = ACTIONS(2416), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_SEMI_SEMI] = ACTIONS(2418), + [anon_sym_PIPE_AMP] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_GT] = ACTIONS(2418), + [anon_sym_AMP_GT] = ACTIONS(2418), + [anon_sym_AMP_GT_GT] = ACTIONS(2418), + [anon_sym_LT_AMP] = ACTIONS(2418), + [anon_sym_GT_AMP] = ACTIONS(2418), + [anon_sym_LT_LT] = ACTIONS(2418), + [anon_sym_LT_LT_DASH] = ACTIONS(2418), + [anon_sym_LT_LT_LT] = ACTIONS(2418), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LF] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + }, + [611] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1207), + [anon_sym_DQUOTE] = ACTIONS(2420), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [612] = { + [sym_string] = STATE(1209), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(2422), + [sym_raw_string] = ACTIONS(2424), + [anon_sym_POUND] = ACTIONS(2422), + [anon_sym_DASH] = ACTIONS(2422), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_AT] = ACTIONS(2422), + [anon_sym_QMARK] = ACTIONS(2422), + [anon_sym_0] = ACTIONS(2428), + [anon_sym__] = ACTIONS(2428), + }, + [613] = { + [aux_sym_concatenation_repeat1] = STATE(1205), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(2416), + [anon_sym_PIPE] = ACTIONS(2430), + [anon_sym_SEMI_SEMI] = ACTIONS(2430), + [anon_sym_PIPE_AMP] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_PIPE_PIPE] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_GT] = ACTIONS(2430), + [anon_sym_GT_GT] = ACTIONS(2430), + [anon_sym_AMP_GT] = ACTIONS(2430), + [anon_sym_AMP_GT_GT] = ACTIONS(2430), + [anon_sym_LT_AMP] = ACTIONS(2430), + [anon_sym_GT_AMP] = ACTIONS(2430), + [anon_sym_LT_LT] = ACTIONS(2430), + [anon_sym_LT_LT_DASH] = ACTIONS(2430), + [anon_sym_LT_LT_LT] = ACTIONS(2430), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_LF] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + }, + [614] = { + [sym_subscript] = STATE(1215), + [sym_variable_name] = ACTIONS(2432), + [anon_sym_DOLLAR] = ACTIONS(2434), + [anon_sym_POUND] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2434), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_AT] = ACTIONS(2434), + [anon_sym_QMARK] = ACTIONS(2434), + [anon_sym_0] = ACTIONS(2440), + [anon_sym__] = ACTIONS(2440), + }, + [615] = { [sym_for_statement] = STATE(1216), [sym_while_statement] = STATE(1216), [sym_if_statement] = STATE(1216), @@ -27835,811 +27730,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [617] = { - [sym_file_descriptor] = ACTIONS(770), - [anon_sym_esac] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_RPAREN] = ACTIONS(2424), - [anon_sym_SEMI_SEMI] = ACTIONS(2424), - [anon_sym_PIPE_AMP] = ACTIONS(2424), - [anon_sym_AMP_AMP] = ACTIONS(2424), - [anon_sym_PIPE_PIPE] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2424), - [anon_sym_GT_GT] = ACTIONS(2424), - [anon_sym_AMP_GT] = ACTIONS(2424), - [anon_sym_AMP_GT_GT] = ACTIONS(2424), - [anon_sym_LT_AMP] = ACTIONS(2424), - [anon_sym_GT_AMP] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2424), - [anon_sym_LT_LT_DASH] = ACTIONS(2424), - [anon_sym_LT_LT_LT] = ACTIONS(2424), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_LF] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2424), - }, - [618] = { - [sym_file_descriptor] = ACTIONS(2436), - [anon_sym_esac] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2438), - [anon_sym_RPAREN] = ACTIONS(2438), - [anon_sym_SEMI_SEMI] = ACTIONS(2438), - [anon_sym_PIPE_AMP] = ACTIONS(2438), - [anon_sym_AMP_AMP] = ACTIONS(2438), - [anon_sym_PIPE_PIPE] = ACTIONS(2438), - [anon_sym_LT] = ACTIONS(2438), - [anon_sym_GT] = ACTIONS(2438), - [anon_sym_GT_GT] = ACTIONS(2438), - [anon_sym_AMP_GT] = ACTIONS(2438), - [anon_sym_AMP_GT_GT] = ACTIONS(2438), - [anon_sym_LT_AMP] = ACTIONS(2438), - [anon_sym_GT_AMP] = ACTIONS(2438), - [anon_sym_LT_LT] = ACTIONS(2438), - [anon_sym_LT_LT_DASH] = ACTIONS(2438), - [anon_sym_LT_LT_LT] = ACTIONS(2438), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2438), - [anon_sym_LF] = ACTIONS(2438), - [anon_sym_AMP] = ACTIONS(2438), - }, - [619] = { - [sym_simple_expansion] = STATE(1218), - [sym_expansion] = STATE(1218), - [aux_sym_heredoc_repeat1] = STATE(1222), - [sym__heredoc_middle] = ACTIONS(2440), - [sym__heredoc_end] = ACTIONS(2442), - [anon_sym_DOLLAR] = ACTIONS(2444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), - [sym_comment] = ACTIONS(56), - }, - [620] = { - [sym_file_descriptor] = ACTIONS(2448), - [anon_sym_esac] = ACTIONS(2450), - [anon_sym_PIPE] = ACTIONS(2450), - [anon_sym_RPAREN] = ACTIONS(2450), - [anon_sym_SEMI_SEMI] = ACTIONS(2450), - [anon_sym_PIPE_AMP] = ACTIONS(2450), - [anon_sym_AMP_AMP] = ACTIONS(2450), - [anon_sym_PIPE_PIPE] = ACTIONS(2450), - [anon_sym_LT] = ACTIONS(2450), - [anon_sym_GT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_AMP_GT] = ACTIONS(2450), - [anon_sym_AMP_GT_GT] = ACTIONS(2450), - [anon_sym_LT_AMP] = ACTIONS(2450), - [anon_sym_GT_AMP] = ACTIONS(2450), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_LT_LT_DASH] = ACTIONS(2450), - [anon_sym_LT_LT_LT] = ACTIONS(2450), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2450), - [anon_sym_LF] = ACTIONS(2450), - [anon_sym_AMP] = ACTIONS(2450), - }, - [621] = { - [aux_sym_concatenation_repeat1] = STATE(1201), - [sym_file_descriptor] = ACTIONS(2452), - [sym__concat] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2454), - [anon_sym_SEMI_SEMI] = ACTIONS(2454), - [anon_sym_PIPE_AMP] = ACTIONS(2454), - [anon_sym_AMP_AMP] = ACTIONS(2454), - [anon_sym_PIPE_PIPE] = ACTIONS(2454), - [anon_sym_LT] = ACTIONS(2454), - [anon_sym_GT] = ACTIONS(2454), - [anon_sym_GT_GT] = ACTIONS(2454), - [anon_sym_AMP_GT] = ACTIONS(2454), - [anon_sym_AMP_GT_GT] = ACTIONS(2454), - [anon_sym_LT_AMP] = ACTIONS(2454), - [anon_sym_GT_AMP] = ACTIONS(2454), - [anon_sym_LT_LT] = ACTIONS(2454), - [anon_sym_LT_LT_DASH] = ACTIONS(2454), - [anon_sym_LT_LT_LT] = ACTIONS(2454), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_LF] = ACTIONS(2454), - [anon_sym_AMP] = ACTIONS(2454), - }, - [622] = { - [aux_sym_concatenation_repeat1] = STATE(1201), - [sym_file_descriptor] = ACTIONS(2456), - [sym__concat] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(2458), - [anon_sym_SEMI_SEMI] = ACTIONS(2458), - [anon_sym_PIPE_AMP] = ACTIONS(2458), - [anon_sym_AMP_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2458), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_GT] = ACTIONS(2458), - [anon_sym_GT_GT] = ACTIONS(2458), - [anon_sym_AMP_GT] = ACTIONS(2458), - [anon_sym_AMP_GT_GT] = ACTIONS(2458), - [anon_sym_LT_AMP] = ACTIONS(2458), - [anon_sym_GT_AMP] = ACTIONS(2458), - [anon_sym_LT_LT] = ACTIONS(2458), - [anon_sym_LT_LT_DASH] = ACTIONS(2458), - [anon_sym_LT_LT_LT] = ACTIONS(2458), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2458), - [anon_sym_LF] = ACTIONS(2458), - [anon_sym_AMP] = ACTIONS(2458), - }, - [623] = { - [sym_file_descriptor] = ACTIONS(2456), - [anon_sym_esac] = ACTIONS(2458), - [anon_sym_PIPE] = ACTIONS(2458), - [anon_sym_RPAREN] = ACTIONS(2458), - [anon_sym_SEMI_SEMI] = ACTIONS(2458), - [anon_sym_PIPE_AMP] = ACTIONS(2458), - [anon_sym_AMP_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2458), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_GT] = ACTIONS(2458), - [anon_sym_GT_GT] = ACTIONS(2458), - [anon_sym_AMP_GT] = ACTIONS(2458), - [anon_sym_AMP_GT_GT] = ACTIONS(2458), - [anon_sym_LT_AMP] = ACTIONS(2458), - [anon_sym_GT_AMP] = ACTIONS(2458), - [anon_sym_LT_LT] = ACTIONS(2458), - [anon_sym_LT_LT_DASH] = ACTIONS(2458), - [anon_sym_LT_LT_LT] = ACTIONS(2458), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2458), - [anon_sym_LF] = ACTIONS(2458), - [anon_sym_AMP] = ACTIONS(2458), - }, - [624] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(624), - [sym_file_descriptor] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2463), - [anon_sym_SEMI_SEMI] = ACTIONS(2463), - [anon_sym_PIPE_AMP] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2463), - [anon_sym_PIPE_PIPE] = ACTIONS(2463), - [anon_sym_LT] = ACTIONS(2465), - [anon_sym_GT] = ACTIONS(2465), - [anon_sym_GT_GT] = ACTIONS(2465), - [anon_sym_AMP_GT] = ACTIONS(2465), - [anon_sym_AMP_GT_GT] = ACTIONS(2465), - [anon_sym_LT_AMP] = ACTIONS(2465), - [anon_sym_GT_AMP] = ACTIONS(2465), - [anon_sym_LT_LT] = ACTIONS(2468), - [anon_sym_LT_LT_DASH] = ACTIONS(2468), - [anon_sym_LT_LT_LT] = ACTIONS(2471), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_LF] = ACTIONS(2463), - [anon_sym_AMP] = ACTIONS(2463), - }, - [625] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(624), - [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_SEMI_SEMI] = ACTIONS(2474), - [anon_sym_PIPE_AMP] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(358), - [anon_sym_GT] = ACTIONS(358), - [anon_sym_GT_GT] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(358), - [anon_sym_AMP_GT_GT] = ACTIONS(358), - [anon_sym_LT_AMP] = ACTIONS(358), - [anon_sym_GT_AMP] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(362), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_LF] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), - }, - [626] = { - [sym_concatenation] = STATE(208), - [sym_string] = STATE(206), - [sym_simple_expansion] = STATE(206), - [sym_string_expansion] = STATE(206), - [sym_expansion] = STATE(206), - [sym_command_substitution] = STATE(206), - [sym_process_substitution] = STATE(206), - [aux_sym_command_repeat2] = STATE(626), - [sym_file_descriptor] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_SEMI_SEMI] = ACTIONS(1561), - [anon_sym_PIPE_AMP] = ACTIONS(1561), - [anon_sym_AMP_AMP] = ACTIONS(1561), - [anon_sym_PIPE_PIPE] = ACTIONS(1561), - [anon_sym_EQ_TILDE] = ACTIONS(2476), - [anon_sym_EQ_EQ] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1561), - [anon_sym_AMP_GT] = ACTIONS(1561), - [anon_sym_AMP_GT_GT] = ACTIONS(1561), - [anon_sym_LT_AMP] = ACTIONS(1561), - [anon_sym_GT_AMP] = ACTIONS(1561), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_LT_LT_DASH] = ACTIONS(1561), - [anon_sym_LT_LT_LT] = ACTIONS(1561), - [sym__special_characters] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2482), - [anon_sym_DOLLAR] = ACTIONS(2485), - [sym_raw_string] = ACTIONS(2488), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2491), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2494), - [anon_sym_BQUOTE] = ACTIONS(2497), - [anon_sym_LT_LPAREN] = ACTIONS(2500), - [anon_sym_GT_LPAREN] = ACTIONS(2500), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2488), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_LF] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1561), - }, - [627] = { - [sym_concatenation] = STATE(992), - [sym_string] = STATE(1224), - [sym_array] = STATE(992), - [sym_simple_expansion] = STATE(1224), - [sym_string_expansion] = STATE(1224), - [sym_expansion] = STATE(1224), - [sym_command_substitution] = STATE(1224), - [sym_process_substitution] = STATE(1224), - [sym__empty_value] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [sym__special_characters] = ACTIONS(2503), - [anon_sym_DQUOTE] = ACTIONS(208), - [anon_sym_DOLLAR] = ACTIONS(210), - [sym_raw_string] = ACTIONS(2505), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), - [anon_sym_BQUOTE] = ACTIONS(218), - [anon_sym_LT_LPAREN] = ACTIONS(220), - [anon_sym_GT_LPAREN] = ACTIONS(220), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2507), - }, - [628] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(208), - [sym_string] = STATE(206), - [sym_simple_expansion] = STATE(206), - [sym_string_expansion] = STATE(206), - [sym_expansion] = STATE(206), - [sym_command_substitution] = STATE(206), - [sym_process_substitution] = STATE(206), - [aux_sym_while_statement_repeat1] = STATE(1225), - [aux_sym_command_repeat2] = STATE(626), - [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_SEMI_SEMI] = ACTIONS(2474), - [anon_sym_PIPE_AMP] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [anon_sym_EQ_TILDE] = ACTIONS(356), - [anon_sym_EQ_EQ] = ACTIONS(356), - [anon_sym_LT] = ACTIONS(358), - [anon_sym_GT] = ACTIONS(358), - [anon_sym_GT_GT] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(358), - [anon_sym_AMP_GT_GT] = ACTIONS(358), - [anon_sym_LT_AMP] = ACTIONS(358), - [anon_sym_GT_AMP] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(362), - [sym__special_characters] = ACTIONS(364), - [anon_sym_DQUOTE] = ACTIONS(366), - [anon_sym_DOLLAR] = ACTIONS(368), - [sym_raw_string] = ACTIONS(370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), - [anon_sym_BQUOTE] = ACTIONS(376), - [anon_sym_LT_LPAREN] = ACTIONS(378), - [anon_sym_GT_LPAREN] = ACTIONS(378), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(370), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_LF] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), - }, - [629] = { - [sym_string] = STATE(1227), - [sym_simple_expansion] = STATE(1227), - [sym_string_expansion] = STATE(1227), - [sym_expansion] = STATE(1227), - [sym_command_substitution] = STATE(1227), - [sym_process_substitution] = STATE(1227), - [anon_sym_RBRACK] = ACTIONS(2509), - [sym__special_characters] = ACTIONS(2511), - [anon_sym_DQUOTE] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_raw_string] = ACTIONS(2513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2515), - }, - [630] = { - [sym__concat] = ACTIONS(2517), - [anon_sym_EQ] = ACTIONS(2519), - [anon_sym_PLUS_EQ] = ACTIONS(2519), - [sym_comment] = ACTIONS(56), - }, - [631] = { - [aux_sym_concatenation_repeat1] = STATE(1230), - [sym__concat] = ACTIONS(2521), - [anon_sym_RBRACK] = ACTIONS(788), - [sym_comment] = ACTIONS(56), - }, - [632] = { - [sym__concat] = ACTIONS(792), - [anon_sym_RBRACK] = ACTIONS(792), - [sym_comment] = ACTIONS(56), - }, - [633] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [634] = { - [sym__concat] = ACTIONS(824), - [anon_sym_RBRACK] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - }, - [635] = { - [sym__concat] = ACTIONS(828), - [anon_sym_RBRACK] = ACTIONS(828), - [sym_comment] = ACTIONS(56), - }, - [636] = { - [sym__concat] = ACTIONS(832), - [anon_sym_RBRACK] = ACTIONS(832), - [sym_comment] = ACTIONS(56), - }, - [637] = { - [sym_string] = STATE(1227), - [sym_simple_expansion] = STATE(1227), - [sym_string_expansion] = STATE(1227), - [sym_expansion] = STATE(1227), - [sym_command_substitution] = STATE(1227), - [sym_process_substitution] = STATE(1227), - [anon_sym_RBRACK] = ACTIONS(2525), - [sym__special_characters] = ACTIONS(2511), - [anon_sym_DQUOTE] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_raw_string] = ACTIONS(2513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2515), - }, - [638] = { - [sym__concat] = ACTIONS(2527), - [anon_sym_EQ] = ACTIONS(2529), - [anon_sym_PLUS_EQ] = ACTIONS(2529), - [sym_comment] = ACTIONS(56), - }, - [639] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(2531), - [sym_comment] = ACTIONS(56), - }, - [640] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1237), - [anon_sym_RBRACE] = ACTIONS(2533), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2535), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [641] = { - [sym_subscript] = STATE(1241), - [sym_variable_name] = ACTIONS(2537), - [anon_sym_DOLLAR] = ACTIONS(2539), - [anon_sym_DASH] = ACTIONS(2539), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2541), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_AT] = ACTIONS(2539), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_0] = ACTIONS(2543), - [anon_sym__] = ACTIONS(2543), - }, - [642] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1244), - [anon_sym_RBRACE] = ACTIONS(2545), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2547), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [643] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1247), - [anon_sym_RBRACE] = ACTIONS(2549), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2551), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [644] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2553), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [645] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2553), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [646] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(2553), - [sym_comment] = ACTIONS(56), - }, - [647] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(2553), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [648] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2555), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [649] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2555), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [650] = { - [anon_sym_RBRACK] = ACTIONS(2525), - [sym_comment] = ACTIONS(56), - }, - [651] = { - [sym_file_descriptor] = ACTIONS(2557), - [sym_variable_name] = ACTIONS(2557), - [anon_sym_PIPE] = ACTIONS(2559), - [anon_sym_RPAREN] = ACTIONS(2559), - [anon_sym_SEMI_SEMI] = ACTIONS(2559), - [anon_sym_PIPE_AMP] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_GT] = ACTIONS(2559), - [anon_sym_GT_GT] = ACTIONS(2559), - [anon_sym_AMP_GT] = ACTIONS(2559), - [anon_sym_AMP_GT_GT] = ACTIONS(2559), - [anon_sym_LT_AMP] = ACTIONS(2559), - [anon_sym_GT_AMP] = ACTIONS(2559), - [sym__special_characters] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2559), - [anon_sym_DOLLAR] = ACTIONS(2559), - [sym_raw_string] = ACTIONS(2559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2559), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2559), - [anon_sym_BQUOTE] = ACTIONS(2559), - [anon_sym_LT_LPAREN] = ACTIONS(2559), - [anon_sym_GT_LPAREN] = ACTIONS(2559), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_LF] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2559), - }, - [652] = { - [aux_sym_concatenation_repeat1] = STATE(1251), - [sym__concat] = ACTIONS(2561), - [anon_sym_RPAREN] = ACTIONS(2563), - [sym__special_characters] = ACTIONS(2565), - [anon_sym_DQUOTE] = ACTIONS(2563), - [anon_sym_DOLLAR] = ACTIONS(2565), - [sym_raw_string] = ACTIONS(2563), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2563), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2563), - [anon_sym_BQUOTE] = ACTIONS(2563), - [anon_sym_LT_LPAREN] = ACTIONS(2563), - [anon_sym_GT_LPAREN] = ACTIONS(2563), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2565), - }, - [653] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1253), - [anon_sym_DQUOTE] = ACTIONS(2567), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [654] = { - [sym_string] = STATE(1255), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(2569), - [sym_raw_string] = ACTIONS(2571), - [anon_sym_POUND] = ACTIONS(2569), - [anon_sym_DASH] = ACTIONS(2569), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2573), - [anon_sym_STAR] = ACTIONS(2569), - [anon_sym_AT] = ACTIONS(2569), - [anon_sym_QMARK] = ACTIONS(2569), - [anon_sym_0] = ACTIONS(2575), - [anon_sym__] = ACTIONS(2575), - }, - [655] = { - [aux_sym_concatenation_repeat1] = STATE(1251), - [sym__concat] = ACTIONS(2561), - [anon_sym_RPAREN] = ACTIONS(2577), - [sym__special_characters] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR] = ACTIONS(2579), - [sym_raw_string] = ACTIONS(2577), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2577), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2577), - [anon_sym_BQUOTE] = ACTIONS(2577), - [anon_sym_LT_LPAREN] = ACTIONS(2577), - [anon_sym_GT_LPAREN] = ACTIONS(2577), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2579), - }, - [656] = { - [sym_subscript] = STATE(1261), - [sym_variable_name] = ACTIONS(2581), - [anon_sym_DOLLAR] = ACTIONS(2583), - [anon_sym_POUND] = ACTIONS(2585), - [anon_sym_DASH] = ACTIONS(2583), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2583), - [anon_sym_AT] = ACTIONS(2583), - [anon_sym_QMARK] = ACTIONS(2583), - [anon_sym_0] = ACTIONS(2589), - [anon_sym__] = ACTIONS(2589), - }, - [657] = { - [sym_for_statement] = STATE(1262), - [sym_while_statement] = STATE(1262), - [sym_if_statement] = STATE(1262), - [sym_case_statement] = STATE(1262), - [sym_function_definition] = STATE(1262), - [sym_subshell] = STATE(1262), - [sym_pipeline] = STATE(1262), - [sym_list] = STATE(1262), - [sym_command] = STATE(1262), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1262), - [sym_variable_assignment] = STATE(1263), - [sym_declaration_command] = STATE(1262), - [sym_unset_command] = STATE(1262), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [658] = { - [sym_for_statement] = STATE(1264), - [sym_while_statement] = STATE(1264), - [sym_if_statement] = STATE(1264), - [sym_case_statement] = STATE(1264), - [sym_function_definition] = STATE(1264), - [sym_subshell] = STATE(1264), - [sym_pipeline] = STATE(1264), - [sym_list] = STATE(1264), - [sym_command] = STATE(1264), + [616] = { + [sym_for_statement] = STATE(1218), + [sym_while_statement] = STATE(1218), + [sym_if_statement] = STATE(1218), + [sym_case_statement] = STATE(1218), + [sym_function_definition] = STATE(1218), + [sym_subshell] = STATE(1218), + [sym_pipeline] = STATE(1218), + [sym_list] = STATE(1218), + [sym_command] = STATE(1218), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1264), - [sym_variable_assignment] = STATE(1265), - [sym_declaration_command] = STATE(1264), - [sym_unset_command] = STATE(1264), + [sym_bracket_command] = STATE(1218), + [sym_variable_assignment] = STATE(1219), + [sym_declaration_command] = STATE(1218), + [sym_unset_command] = STATE(1218), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -28686,7 +27791,797 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [659] = { + [617] = { + [sym_for_statement] = STATE(1220), + [sym_while_statement] = STATE(1220), + [sym_if_statement] = STATE(1220), + [sym_case_statement] = STATE(1220), + [sym_function_definition] = STATE(1220), + [sym_subshell] = STATE(1220), + [sym_pipeline] = STATE(1220), + [sym_list] = STATE(1220), + [sym_command] = STATE(1220), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1220), + [sym_variable_assignment] = STATE(1221), + [sym_declaration_command] = STATE(1220), + [sym_unset_command] = STATE(1220), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(302), + }, + [618] = { + [sym_file_descriptor] = ACTIONS(772), + [anon_sym_esac] = ACTIONS(2430), + [anon_sym_PIPE] = ACTIONS(2430), + [anon_sym_RPAREN] = ACTIONS(2430), + [anon_sym_SEMI_SEMI] = ACTIONS(2430), + [anon_sym_PIPE_AMP] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_PIPE_PIPE] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_GT] = ACTIONS(2430), + [anon_sym_GT_GT] = ACTIONS(2430), + [anon_sym_AMP_GT] = ACTIONS(2430), + [anon_sym_AMP_GT_GT] = ACTIONS(2430), + [anon_sym_LT_AMP] = ACTIONS(2430), + [anon_sym_GT_AMP] = ACTIONS(2430), + [anon_sym_LT_LT] = ACTIONS(2430), + [anon_sym_LT_LT_DASH] = ACTIONS(2430), + [anon_sym_LT_LT_LT] = ACTIONS(2430), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_LF] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + }, + [619] = { + [sym_file_descriptor] = ACTIONS(2442), + [anon_sym_esac] = ACTIONS(2444), + [anon_sym_PIPE] = ACTIONS(2444), + [anon_sym_RPAREN] = ACTIONS(2444), + [anon_sym_SEMI_SEMI] = ACTIONS(2444), + [anon_sym_PIPE_AMP] = ACTIONS(2444), + [anon_sym_AMP_AMP] = ACTIONS(2444), + [anon_sym_PIPE_PIPE] = ACTIONS(2444), + [anon_sym_LT] = ACTIONS(2444), + [anon_sym_GT] = ACTIONS(2444), + [anon_sym_GT_GT] = ACTIONS(2444), + [anon_sym_AMP_GT] = ACTIONS(2444), + [anon_sym_AMP_GT_GT] = ACTIONS(2444), + [anon_sym_LT_AMP] = ACTIONS(2444), + [anon_sym_GT_AMP] = ACTIONS(2444), + [anon_sym_LT_LT] = ACTIONS(2444), + [anon_sym_LT_LT_DASH] = ACTIONS(2444), + [anon_sym_LT_LT_LT] = ACTIONS(2444), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2444), + [anon_sym_LF] = ACTIONS(2444), + [anon_sym_AMP] = ACTIONS(2444), + }, + [620] = { + [sym_simple_expansion] = STATE(1222), + [sym_expansion] = STATE(1222), + [aux_sym_heredoc_repeat1] = STATE(1226), + [sym__heredoc_middle] = ACTIONS(2446), + [sym__heredoc_end] = ACTIONS(2448), + [anon_sym_DOLLAR] = ACTIONS(2450), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2452), + [sym_comment] = ACTIONS(56), + }, + [621] = { + [sym_file_descriptor] = ACTIONS(2454), + [anon_sym_esac] = ACTIONS(2456), + [anon_sym_PIPE] = ACTIONS(2456), + [anon_sym_RPAREN] = ACTIONS(2456), + [anon_sym_SEMI_SEMI] = ACTIONS(2456), + [anon_sym_PIPE_AMP] = ACTIONS(2456), + [anon_sym_AMP_AMP] = ACTIONS(2456), + [anon_sym_PIPE_PIPE] = ACTIONS(2456), + [anon_sym_LT] = ACTIONS(2456), + [anon_sym_GT] = ACTIONS(2456), + [anon_sym_GT_GT] = ACTIONS(2456), + [anon_sym_AMP_GT] = ACTIONS(2456), + [anon_sym_AMP_GT_GT] = ACTIONS(2456), + [anon_sym_LT_AMP] = ACTIONS(2456), + [anon_sym_GT_AMP] = ACTIONS(2456), + [anon_sym_LT_LT] = ACTIONS(2456), + [anon_sym_LT_LT_DASH] = ACTIONS(2456), + [anon_sym_LT_LT_LT] = ACTIONS(2456), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2456), + [anon_sym_LF] = ACTIONS(2456), + [anon_sym_AMP] = ACTIONS(2456), + }, + [622] = { + [aux_sym_concatenation_repeat1] = STATE(1205), + [sym_file_descriptor] = ACTIONS(2458), + [sym__concat] = ACTIONS(2416), + [anon_sym_PIPE] = ACTIONS(2460), + [anon_sym_SEMI_SEMI] = ACTIONS(2460), + [anon_sym_PIPE_AMP] = ACTIONS(2460), + [anon_sym_AMP_AMP] = ACTIONS(2460), + [anon_sym_PIPE_PIPE] = ACTIONS(2460), + [anon_sym_LT] = ACTIONS(2460), + [anon_sym_GT] = ACTIONS(2460), + [anon_sym_GT_GT] = ACTIONS(2460), + [anon_sym_AMP_GT] = ACTIONS(2460), + [anon_sym_AMP_GT_GT] = ACTIONS(2460), + [anon_sym_LT_AMP] = ACTIONS(2460), + [anon_sym_GT_AMP] = ACTIONS(2460), + [anon_sym_LT_LT] = ACTIONS(2460), + [anon_sym_LT_LT_DASH] = ACTIONS(2460), + [anon_sym_LT_LT_LT] = ACTIONS(2460), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym_LF] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + }, + [623] = { + [aux_sym_concatenation_repeat1] = STATE(1205), + [sym_file_descriptor] = ACTIONS(2462), + [sym__concat] = ACTIONS(2416), + [anon_sym_PIPE] = ACTIONS(2464), + [anon_sym_SEMI_SEMI] = ACTIONS(2464), + [anon_sym_PIPE_AMP] = ACTIONS(2464), + [anon_sym_AMP_AMP] = ACTIONS(2464), + [anon_sym_PIPE_PIPE] = ACTIONS(2464), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_GT] = ACTIONS(2464), + [anon_sym_GT_GT] = ACTIONS(2464), + [anon_sym_AMP_GT] = ACTIONS(2464), + [anon_sym_AMP_GT_GT] = ACTIONS(2464), + [anon_sym_LT_AMP] = ACTIONS(2464), + [anon_sym_GT_AMP] = ACTIONS(2464), + [anon_sym_LT_LT] = ACTIONS(2464), + [anon_sym_LT_LT_DASH] = ACTIONS(2464), + [anon_sym_LT_LT_LT] = ACTIONS(2464), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_LF] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + }, + [624] = { + [sym_file_descriptor] = ACTIONS(2462), + [anon_sym_esac] = ACTIONS(2464), + [anon_sym_PIPE] = ACTIONS(2464), + [anon_sym_RPAREN] = ACTIONS(2464), + [anon_sym_SEMI_SEMI] = ACTIONS(2464), + [anon_sym_PIPE_AMP] = ACTIONS(2464), + [anon_sym_AMP_AMP] = ACTIONS(2464), + [anon_sym_PIPE_PIPE] = ACTIONS(2464), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_GT] = ACTIONS(2464), + [anon_sym_GT_GT] = ACTIONS(2464), + [anon_sym_AMP_GT] = ACTIONS(2464), + [anon_sym_AMP_GT_GT] = ACTIONS(2464), + [anon_sym_LT_AMP] = ACTIONS(2464), + [anon_sym_GT_AMP] = ACTIONS(2464), + [anon_sym_LT_LT] = ACTIONS(2464), + [anon_sym_LT_LT_DASH] = ACTIONS(2464), + [anon_sym_LT_LT_LT] = ACTIONS(2464), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_LF] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + }, + [625] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(625), + [sym_file_descriptor] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2469), + [anon_sym_SEMI_SEMI] = ACTIONS(2469), + [anon_sym_PIPE_AMP] = ACTIONS(2469), + [anon_sym_AMP_AMP] = ACTIONS(2469), + [anon_sym_PIPE_PIPE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(2471), + [anon_sym_GT_GT] = ACTIONS(2471), + [anon_sym_AMP_GT] = ACTIONS(2471), + [anon_sym_AMP_GT_GT] = ACTIONS(2471), + [anon_sym_LT_AMP] = ACTIONS(2471), + [anon_sym_GT_AMP] = ACTIONS(2471), + [anon_sym_LT_LT] = ACTIONS(2474), + [anon_sym_LT_LT_DASH] = ACTIONS(2474), + [anon_sym_LT_LT_LT] = ACTIONS(2477), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_LF] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2469), + }, + [626] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(625), + [sym_file_descriptor] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_SEMI_SEMI] = ACTIONS(2480), + [anon_sym_PIPE_AMP] = ACTIONS(2480), + [anon_sym_AMP_AMP] = ACTIONS(2480), + [anon_sym_PIPE_PIPE] = ACTIONS(2480), + [anon_sym_LT] = ACTIONS(358), + [anon_sym_GT] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(358), + [anon_sym_AMP_GT_GT] = ACTIONS(358), + [anon_sym_LT_AMP] = ACTIONS(358), + [anon_sym_GT_AMP] = ACTIONS(358), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(362), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym_LF] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + }, + [627] = { + [sym_concatenation] = STATE(208), + [sym_string] = STATE(206), + [sym_simple_expansion] = STATE(206), + [sym_string_expansion] = STATE(206), + [sym_expansion] = STATE(206), + [sym_command_substitution] = STATE(206), + [sym_process_substitution] = STATE(206), + [aux_sym_command_repeat2] = STATE(627), + [sym_file_descriptor] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_SEMI_SEMI] = ACTIONS(1565), + [anon_sym_PIPE_AMP] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1565), + [anon_sym_EQ_TILDE] = ACTIONS(2482), + [anon_sym_EQ_EQ] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1565), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_AMP_GT] = ACTIONS(1565), + [anon_sym_AMP_GT_GT] = ACTIONS(1565), + [anon_sym_LT_AMP] = ACTIONS(1565), + [anon_sym_GT_AMP] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT_LT_DASH] = ACTIONS(1565), + [anon_sym_LT_LT_LT] = ACTIONS(1565), + [sym__special_characters] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2488), + [anon_sym_DOLLAR] = ACTIONS(2491), + [sym_raw_string] = ACTIONS(2494), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2497), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2500), + [anon_sym_BQUOTE] = ACTIONS(2503), + [anon_sym_LT_LPAREN] = ACTIONS(2506), + [anon_sym_GT_LPAREN] = ACTIONS(2506), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2494), + [anon_sym_SEMI] = ACTIONS(1565), + [anon_sym_LF] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + }, + [628] = { + [sym_concatenation] = STATE(995), + [sym_string] = STATE(1228), + [sym_array] = STATE(995), + [sym_simple_expansion] = STATE(1228), + [sym_string_expansion] = STATE(1228), + [sym_expansion] = STATE(1228), + [sym_command_substitution] = STATE(1228), + [sym_process_substitution] = STATE(1228), + [sym__empty_value] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2042), + [sym__special_characters] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(208), + [anon_sym_DOLLAR] = ACTIONS(210), + [sym_raw_string] = ACTIONS(2511), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(214), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(216), + [anon_sym_BQUOTE] = ACTIONS(218), + [anon_sym_LT_LPAREN] = ACTIONS(220), + [anon_sym_GT_LPAREN] = ACTIONS(220), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2513), + }, + [629] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [sym_concatenation] = STATE(208), + [sym_string] = STATE(206), + [sym_simple_expansion] = STATE(206), + [sym_string_expansion] = STATE(206), + [sym_expansion] = STATE(206), + [sym_command_substitution] = STATE(206), + [sym_process_substitution] = STATE(206), + [aux_sym_while_statement_repeat1] = STATE(1229), + [aux_sym_command_repeat2] = STATE(627), + [sym_file_descriptor] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_SEMI_SEMI] = ACTIONS(2480), + [anon_sym_PIPE_AMP] = ACTIONS(2480), + [anon_sym_AMP_AMP] = ACTIONS(2480), + [anon_sym_PIPE_PIPE] = ACTIONS(2480), + [anon_sym_EQ_TILDE] = ACTIONS(356), + [anon_sym_EQ_EQ] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(358), + [anon_sym_GT] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(358), + [anon_sym_AMP_GT_GT] = ACTIONS(358), + [anon_sym_LT_AMP] = ACTIONS(358), + [anon_sym_GT_AMP] = ACTIONS(358), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(362), + [sym__special_characters] = ACTIONS(364), + [anon_sym_DQUOTE] = ACTIONS(366), + [anon_sym_DOLLAR] = ACTIONS(368), + [sym_raw_string] = ACTIONS(370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(374), + [anon_sym_BQUOTE] = ACTIONS(376), + [anon_sym_LT_LPAREN] = ACTIONS(378), + [anon_sym_GT_LPAREN] = ACTIONS(378), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(370), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym_LF] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + }, + [630] = { + [sym_string] = STATE(1231), + [sym_simple_expansion] = STATE(1231), + [sym_string_expansion] = STATE(1231), + [sym_expansion] = STATE(1231), + [sym_command_substitution] = STATE(1231), + [sym_process_substitution] = STATE(1231), + [anon_sym_RBRACK] = ACTIONS(2515), + [sym__special_characters] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym_raw_string] = ACTIONS(2519), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(414), + [anon_sym_GT_LPAREN] = ACTIONS(414), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2521), + }, + [631] = { + [sym__concat] = ACTIONS(2523), + [anon_sym_EQ] = ACTIONS(2525), + [anon_sym_PLUS_EQ] = ACTIONS(2525), + [sym_comment] = ACTIONS(56), + }, + [632] = { + [aux_sym_concatenation_repeat1] = STATE(1234), + [sym__concat] = ACTIONS(2527), + [anon_sym_RBRACK] = ACTIONS(790), + [sym_comment] = ACTIONS(56), + }, + [633] = { + [sym__concat] = ACTIONS(794), + [anon_sym_RBRACK] = ACTIONS(794), + [sym_comment] = ACTIONS(56), + }, + [634] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(2529), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [635] = { + [sym__concat] = ACTIONS(826), + [anon_sym_RBRACK] = ACTIONS(826), + [sym_comment] = ACTIONS(56), + }, + [636] = { + [sym__concat] = ACTIONS(830), + [anon_sym_RBRACK] = ACTIONS(830), + [sym_comment] = ACTIONS(56), + }, + [637] = { + [sym__concat] = ACTIONS(834), + [anon_sym_RBRACK] = ACTIONS(834), + [sym_comment] = ACTIONS(56), + }, + [638] = { + [sym_string] = STATE(1231), + [sym_simple_expansion] = STATE(1231), + [sym_string_expansion] = STATE(1231), + [sym_expansion] = STATE(1231), + [sym_command_substitution] = STATE(1231), + [sym_process_substitution] = STATE(1231), + [anon_sym_RBRACK] = ACTIONS(2531), + [sym__special_characters] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym_raw_string] = ACTIONS(2519), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(414), + [anon_sym_GT_LPAREN] = ACTIONS(414), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2521), + }, + [639] = { + [sym__concat] = ACTIONS(2533), + [anon_sym_EQ] = ACTIONS(2535), + [anon_sym_PLUS_EQ] = ACTIONS(2535), + [sym_comment] = ACTIONS(56), + }, + [640] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(2537), + [sym_comment] = ACTIONS(56), + }, + [641] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1241), + [anon_sym_RBRACE] = ACTIONS(2539), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2541), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [642] = { + [sym_subscript] = STATE(1245), + [sym_variable_name] = ACTIONS(2543), + [anon_sym_DOLLAR] = ACTIONS(2545), + [anon_sym_DASH] = ACTIONS(2545), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2545), + [anon_sym_AT] = ACTIONS(2545), + [anon_sym_QMARK] = ACTIONS(2545), + [anon_sym_0] = ACTIONS(2549), + [anon_sym__] = ACTIONS(2549), + }, + [643] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1248), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2553), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [644] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1251), + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2557), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [645] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2559), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [646] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2559), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [647] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(2559), + [sym_comment] = ACTIONS(56), + }, + [648] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(2559), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [649] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2561), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [650] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2561), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [651] = { + [anon_sym_RBRACK] = ACTIONS(2531), + [sym_comment] = ACTIONS(56), + }, + [652] = { + [sym_file_descriptor] = ACTIONS(2563), + [sym_variable_name] = ACTIONS(2563), + [anon_sym_PIPE] = ACTIONS(2565), + [anon_sym_RPAREN] = ACTIONS(2565), + [anon_sym_SEMI_SEMI] = ACTIONS(2565), + [anon_sym_PIPE_AMP] = ACTIONS(2565), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE_PIPE] = ACTIONS(2565), + [anon_sym_LT] = ACTIONS(2565), + [anon_sym_GT] = ACTIONS(2565), + [anon_sym_GT_GT] = ACTIONS(2565), + [anon_sym_AMP_GT] = ACTIONS(2565), + [anon_sym_AMP_GT_GT] = ACTIONS(2565), + [anon_sym_LT_AMP] = ACTIONS(2565), + [anon_sym_GT_AMP] = ACTIONS(2565), + [sym__special_characters] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), + [anon_sym_DOLLAR] = ACTIONS(2565), + [sym_raw_string] = ACTIONS(2565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2565), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2565), + [anon_sym_BQUOTE] = ACTIONS(2565), + [anon_sym_LT_LPAREN] = ACTIONS(2565), + [anon_sym_GT_LPAREN] = ACTIONS(2565), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_LF] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2565), + }, + [653] = { + [aux_sym_concatenation_repeat1] = STATE(1255), + [sym__concat] = ACTIONS(2567), + [anon_sym_RPAREN] = ACTIONS(2569), + [sym__special_characters] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2569), + [anon_sym_DOLLAR] = ACTIONS(2571), + [sym_raw_string] = ACTIONS(2569), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2569), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2569), + [anon_sym_BQUOTE] = ACTIONS(2569), + [anon_sym_LT_LPAREN] = ACTIONS(2569), + [anon_sym_GT_LPAREN] = ACTIONS(2569), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2571), + }, + [654] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1257), + [anon_sym_DQUOTE] = ACTIONS(2573), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [655] = { + [sym_string] = STATE(1259), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(2575), + [sym_raw_string] = ACTIONS(2577), + [anon_sym_POUND] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2575), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_QMARK] = ACTIONS(2575), + [anon_sym_0] = ACTIONS(2581), + [anon_sym__] = ACTIONS(2581), + }, + [656] = { + [aux_sym_concatenation_repeat1] = STATE(1255), + [sym__concat] = ACTIONS(2567), + [anon_sym_RPAREN] = ACTIONS(2583), + [sym__special_characters] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_DOLLAR] = ACTIONS(2585), + [sym_raw_string] = ACTIONS(2583), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2583), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2583), + [anon_sym_BQUOTE] = ACTIONS(2583), + [anon_sym_LT_LPAREN] = ACTIONS(2583), + [anon_sym_GT_LPAREN] = ACTIONS(2583), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2585), + }, + [657] = { + [sym_subscript] = STATE(1265), + [sym_variable_name] = ACTIONS(2587), + [anon_sym_DOLLAR] = ACTIONS(2589), + [anon_sym_POUND] = ACTIONS(2591), + [anon_sym_DASH] = ACTIONS(2589), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2593), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_AT] = ACTIONS(2589), + [anon_sym_QMARK] = ACTIONS(2589), + [anon_sym_0] = ACTIONS(2595), + [anon_sym__] = ACTIONS(2595), + }, + [658] = { [sym_for_statement] = STATE(1266), [sym_while_statement] = STATE(1266), [sym_if_statement] = STATE(1266), @@ -28747,598 +28642,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [660] = { - [anon_sym_RPAREN] = ACTIONS(2577), - [sym__special_characters] = ACTIONS(2579), - [anon_sym_DQUOTE] = ACTIONS(2577), - [anon_sym_DOLLAR] = ACTIONS(2579), - [sym_raw_string] = ACTIONS(2577), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2577), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2577), - [anon_sym_BQUOTE] = ACTIONS(2577), - [anon_sym_LT_LPAREN] = ACTIONS(2577), - [anon_sym_GT_LPAREN] = ACTIONS(2577), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2579), - }, - [661] = { - [sym_concatenation] = STATE(660), - [sym_string] = STATE(655), - [sym_simple_expansion] = STATE(655), - [sym_string_expansion] = STATE(655), - [sym_expansion] = STATE(655), - [sym_command_substitution] = STATE(655), - [sym_process_substitution] = STATE(655), - [aux_sym_for_statement_repeat1] = STATE(1269), - [anon_sym_RPAREN] = ACTIONS(2591), - [sym__special_characters] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1287), - [sym_raw_string] = ACTIONS(1289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LT_LPAREN] = ACTIONS(1297), - [anon_sym_GT_LPAREN] = ACTIONS(1297), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1299), - }, - [662] = { - [sym_string] = STATE(1270), - [sym_simple_expansion] = STATE(1270), - [sym_string_expansion] = STATE(1270), - [sym_expansion] = STATE(1270), - [sym_command_substitution] = STATE(1270), - [sym_process_substitution] = STATE(1270), - [sym__special_characters] = ACTIONS(2593), - [anon_sym_DQUOTE] = ACTIONS(424), - [anon_sym_DOLLAR] = ACTIONS(426), - [sym_raw_string] = ACTIONS(2595), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(430), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(432), - [anon_sym_BQUOTE] = ACTIONS(434), - [anon_sym_LT_LPAREN] = ACTIONS(436), - [anon_sym_GT_LPAREN] = ACTIONS(436), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2593), - }, - [663] = { - [aux_sym_concatenation_repeat1] = STATE(1271), - [sym_file_descriptor] = ACTIONS(788), - [sym__concat] = ACTIONS(1303), - [sym_variable_name] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(790), - [anon_sym_GT] = ACTIONS(790), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(790), - [anon_sym_AMP_GT_GT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(790), - [anon_sym_GT_AMP] = ACTIONS(790), - [sym__special_characters] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(790), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), - }, - [664] = { - [sym_file_descriptor] = ACTIONS(792), - [sym__concat] = ACTIONS(792), - [sym_variable_name] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(794), - [anon_sym_GT] = ACTIONS(794), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_AMP_GT] = ACTIONS(794), - [anon_sym_AMP_GT_GT] = ACTIONS(794), - [anon_sym_LT_AMP] = ACTIONS(794), - [anon_sym_GT_AMP] = ACTIONS(794), - [sym__special_characters] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(794), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), - }, - [665] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(2597), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [666] = { - [sym_file_descriptor] = ACTIONS(824), - [sym__concat] = ACTIONS(824), - [sym_variable_name] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_LT] = ACTIONS(826), - [anon_sym_GT] = ACTIONS(826), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_AMP_GT] = ACTIONS(826), - [anon_sym_AMP_GT_GT] = ACTIONS(826), - [anon_sym_LT_AMP] = ACTIONS(826), - [anon_sym_GT_AMP] = ACTIONS(826), - [sym__special_characters] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(826), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), - }, - [667] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [sym_variable_name] = ACTIONS(828), - [anon_sym_PIPE] = 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), - [anon_sym_LT] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(830), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_AMP_GT] = ACTIONS(830), - [anon_sym_AMP_GT_GT] = ACTIONS(830), - [anon_sym_LT_AMP] = ACTIONS(830), - [anon_sym_GT_AMP] = ACTIONS(830), - [sym__special_characters] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(830), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), - }, - [668] = { - [sym_file_descriptor] = ACTIONS(832), - [sym__concat] = ACTIONS(832), - [sym_variable_name] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_AMP_GT] = ACTIONS(834), - [anon_sym_AMP_GT_GT] = ACTIONS(834), - [anon_sym_LT_AMP] = ACTIONS(834), - [anon_sym_GT_AMP] = ACTIONS(834), - [sym__special_characters] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(834), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - }, - [669] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(2599), - [sym_comment] = ACTIONS(56), - }, - [670] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1276), - [anon_sym_RBRACE] = ACTIONS(2601), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2603), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [671] = { - [sym_subscript] = STATE(1280), - [sym_variable_name] = ACTIONS(2605), - [anon_sym_DOLLAR] = ACTIONS(2607), - [anon_sym_DASH] = ACTIONS(2607), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2609), - [anon_sym_STAR] = ACTIONS(2607), - [anon_sym_AT] = ACTIONS(2607), - [anon_sym_QMARK] = ACTIONS(2607), - [anon_sym_0] = ACTIONS(2611), - [anon_sym__] = ACTIONS(2611), - }, - [672] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1283), - [anon_sym_RBRACE] = ACTIONS(2613), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2615), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [673] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1286), - [anon_sym_RBRACE] = ACTIONS(2617), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2619), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [674] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2621), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [675] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2621), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [676] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(2621), - [sym_comment] = ACTIONS(56), - }, - [677] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(2621), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [678] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2623), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [679] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2623), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [680] = { - [aux_sym_concatenation_repeat1] = STATE(1290), - [sym__concat] = ACTIONS(2625), - [anon_sym_SEMI_SEMI] = ACTIONS(2627), - [sym__special_characters] = ACTIONS(2627), - [anon_sym_DQUOTE] = ACTIONS(2627), - [anon_sym_DOLLAR] = ACTIONS(2627), - [sym_raw_string] = ACTIONS(2627), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2627), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2627), - [anon_sym_BQUOTE] = ACTIONS(2627), - [anon_sym_LT_LPAREN] = ACTIONS(2627), - [anon_sym_GT_LPAREN] = ACTIONS(2627), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2627), - [anon_sym_SEMI] = ACTIONS(2627), - [anon_sym_LF] = ACTIONS(2627), - [anon_sym_AMP] = ACTIONS(2627), - }, - [681] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1292), - [anon_sym_DQUOTE] = ACTIONS(2629), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [682] = { - [sym_string] = STATE(1294), - [anon_sym_DQUOTE] = ACTIONS(1329), - [anon_sym_DOLLAR] = ACTIONS(2631), - [sym_raw_string] = ACTIONS(2633), - [anon_sym_POUND] = ACTIONS(2631), - [anon_sym_DASH] = ACTIONS(2631), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2631), - [anon_sym_AT] = ACTIONS(2631), - [anon_sym_QMARK] = ACTIONS(2631), - [anon_sym_0] = ACTIONS(2637), - [anon_sym__] = ACTIONS(2637), - }, - [683] = { - [aux_sym_concatenation_repeat1] = STATE(1290), - [sym__concat] = ACTIONS(2625), - [anon_sym_SEMI_SEMI] = ACTIONS(2639), - [sym__special_characters] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(2639), - [sym_raw_string] = ACTIONS(2639), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2639), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2639), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LT_LPAREN] = ACTIONS(2639), - [anon_sym_GT_LPAREN] = ACTIONS(2639), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym_LF] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2639), - }, - [684] = { - [sym_subscript] = STATE(1300), - [sym_variable_name] = ACTIONS(2641), - [anon_sym_DOLLAR] = ACTIONS(2643), - [anon_sym_POUND] = ACTIONS(2645), - [anon_sym_DASH] = ACTIONS(2643), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2647), - [anon_sym_STAR] = ACTIONS(2643), - [anon_sym_AT] = ACTIONS(2643), - [anon_sym_QMARK] = ACTIONS(2643), - [anon_sym_0] = ACTIONS(2649), - [anon_sym__] = ACTIONS(2649), - }, - [685] = { - [sym_for_statement] = STATE(1301), - [sym_while_statement] = STATE(1301), - [sym_if_statement] = STATE(1301), - [sym_case_statement] = STATE(1301), - [sym_function_definition] = STATE(1301), - [sym_subshell] = STATE(1301), - [sym_pipeline] = STATE(1301), - [sym_list] = STATE(1301), - [sym_command] = STATE(1301), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1301), - [sym_variable_assignment] = STATE(1302), - [sym_declaration_command] = STATE(1301), - [sym_unset_command] = STATE(1301), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [686] = { - [sym_for_statement] = STATE(1303), - [sym_while_statement] = STATE(1303), - [sym_if_statement] = STATE(1303), - [sym_case_statement] = STATE(1303), - [sym_function_definition] = STATE(1303), - [sym_subshell] = STATE(1303), - [sym_pipeline] = STATE(1303), - [sym_list] = STATE(1303), - [sym_command] = STATE(1303), + [659] = { + [sym_for_statement] = STATE(1268), + [sym_while_statement] = STATE(1268), + [sym_if_statement] = STATE(1268), + [sym_case_statement] = STATE(1268), + [sym_function_definition] = STATE(1268), + [sym_subshell] = STATE(1268), + [sym_pipeline] = STATE(1268), + [sym_list] = STATE(1268), + [sym_command] = STATE(1268), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1303), - [sym_variable_assignment] = STATE(1304), - [sym_declaration_command] = STATE(1303), - [sym_unset_command] = STATE(1303), + [sym_bracket_command] = STATE(1268), + [sym_variable_assignment] = STATE(1269), + [sym_declaration_command] = STATE(1268), + [sym_unset_command] = STATE(1268), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -29385,7 +28703,584 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [687] = { + [660] = { + [sym_for_statement] = STATE(1270), + [sym_while_statement] = STATE(1270), + [sym_if_statement] = STATE(1270), + [sym_case_statement] = STATE(1270), + [sym_function_definition] = STATE(1270), + [sym_subshell] = STATE(1270), + [sym_pipeline] = STATE(1270), + [sym_list] = STATE(1270), + [sym_command] = STATE(1270), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1270), + [sym_variable_assignment] = STATE(1271), + [sym_declaration_command] = STATE(1270), + [sym_unset_command] = STATE(1270), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(302), + }, + [661] = { + [anon_sym_RPAREN] = ACTIONS(2583), + [sym__special_characters] = ACTIONS(2585), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_DOLLAR] = ACTIONS(2585), + [sym_raw_string] = ACTIONS(2583), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2583), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2583), + [anon_sym_BQUOTE] = ACTIONS(2583), + [anon_sym_LT_LPAREN] = ACTIONS(2583), + [anon_sym_GT_LPAREN] = ACTIONS(2583), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2585), + }, + [662] = { + [sym_concatenation] = STATE(661), + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [aux_sym_for_statement_repeat1] = STATE(1273), + [anon_sym_RPAREN] = ACTIONS(2597), + [sym__special_characters] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1289), + [sym_raw_string] = ACTIONS(1291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), + [anon_sym_BQUOTE] = ACTIONS(1297), + [anon_sym_LT_LPAREN] = ACTIONS(1299), + [anon_sym_GT_LPAREN] = ACTIONS(1299), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1301), + }, + [663] = { + [sym_string] = STATE(1274), + [sym_simple_expansion] = STATE(1274), + [sym_string_expansion] = STATE(1274), + [sym_expansion] = STATE(1274), + [sym_command_substitution] = STATE(1274), + [sym_process_substitution] = STATE(1274), + [sym__special_characters] = ACTIONS(2599), + [anon_sym_DQUOTE] = ACTIONS(424), + [anon_sym_DOLLAR] = ACTIONS(426), + [sym_raw_string] = ACTIONS(2601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(430), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(432), + [anon_sym_BQUOTE] = ACTIONS(434), + [anon_sym_LT_LPAREN] = ACTIONS(436), + [anon_sym_GT_LPAREN] = ACTIONS(436), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2599), + }, + [664] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym_file_descriptor] = ACTIONS(790), + [sym__concat] = ACTIONS(1305), + [sym_variable_name] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_AMP_GT] = ACTIONS(792), + [anon_sym_AMP_GT_GT] = ACTIONS(792), + [anon_sym_LT_AMP] = ACTIONS(792), + [anon_sym_GT_AMP] = ACTIONS(792), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), + }, + [665] = { + [sym_file_descriptor] = ACTIONS(794), + [sym__concat] = ACTIONS(794), + [sym_variable_name] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(796), + [anon_sym_GT_GT] = ACTIONS(796), + [anon_sym_AMP_GT] = ACTIONS(796), + [anon_sym_AMP_GT_GT] = ACTIONS(796), + [anon_sym_LT_AMP] = ACTIONS(796), + [anon_sym_GT_AMP] = ACTIONS(796), + [sym__special_characters] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(796), + [sym_raw_string] = ACTIONS(796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(796), + [anon_sym_GT_LPAREN] = ACTIONS(796), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + }, + [666] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(2603), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [667] = { + [sym_file_descriptor] = ACTIONS(826), + [sym__concat] = ACTIONS(826), + [sym_variable_name] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(828), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(828), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(828), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), + }, + [668] = { + [sym_file_descriptor] = ACTIONS(830), + [sym__concat] = ACTIONS(830), + [sym_variable_name] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_AMP_GT] = ACTIONS(832), + [anon_sym_AMP_GT_GT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(832), + [anon_sym_GT_AMP] = ACTIONS(832), + [sym__special_characters] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), + }, + [669] = { + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [sym_variable_name] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_AMP_GT] = ACTIONS(836), + [anon_sym_AMP_GT_GT] = ACTIONS(836), + [anon_sym_LT_AMP] = ACTIONS(836), + [anon_sym_GT_AMP] = ACTIONS(836), + [sym__special_characters] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [sym_raw_string] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LT_LPAREN] = ACTIONS(836), + [anon_sym_GT_LPAREN] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), + }, + [670] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(2605), + [sym_comment] = ACTIONS(56), + }, + [671] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1280), + [anon_sym_RBRACE] = ACTIONS(2607), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2609), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [672] = { + [sym_subscript] = STATE(1284), + [sym_variable_name] = ACTIONS(2611), + [anon_sym_DOLLAR] = ACTIONS(2613), + [anon_sym_DASH] = ACTIONS(2613), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2613), + [anon_sym_AT] = ACTIONS(2613), + [anon_sym_QMARK] = ACTIONS(2613), + [anon_sym_0] = ACTIONS(2617), + [anon_sym__] = ACTIONS(2617), + }, + [673] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1287), + [anon_sym_RBRACE] = ACTIONS(2619), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2621), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [674] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1290), + [anon_sym_RBRACE] = ACTIONS(2623), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2625), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [675] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2627), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [676] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2627), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [677] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(2627), + [sym_comment] = ACTIONS(56), + }, + [678] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(2627), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [679] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2629), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [680] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2629), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [681] = { + [aux_sym_concatenation_repeat1] = STATE(1294), + [sym__concat] = ACTIONS(2631), + [anon_sym_SEMI_SEMI] = ACTIONS(2633), + [sym__special_characters] = ACTIONS(2633), + [anon_sym_DQUOTE] = ACTIONS(2633), + [anon_sym_DOLLAR] = ACTIONS(2633), + [sym_raw_string] = ACTIONS(2633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2633), + [anon_sym_BQUOTE] = ACTIONS(2633), + [anon_sym_LT_LPAREN] = ACTIONS(2633), + [anon_sym_GT_LPAREN] = ACTIONS(2633), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2633), + [anon_sym_LF] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2633), + }, + [682] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1296), + [anon_sym_DQUOTE] = ACTIONS(2635), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [683] = { + [sym_string] = STATE(1298), + [anon_sym_DQUOTE] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(2637), + [sym_raw_string] = ACTIONS(2639), + [anon_sym_POUND] = ACTIONS(2637), + [anon_sym_DASH] = ACTIONS(2637), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_AT] = ACTIONS(2637), + [anon_sym_QMARK] = ACTIONS(2637), + [anon_sym_0] = ACTIONS(2643), + [anon_sym__] = ACTIONS(2643), + }, + [684] = { + [aux_sym_concatenation_repeat1] = STATE(1294), + [sym__concat] = ACTIONS(2631), + [anon_sym_SEMI_SEMI] = ACTIONS(2645), + [sym__special_characters] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_DOLLAR] = ACTIONS(2645), + [sym_raw_string] = ACTIONS(2645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2645), + [anon_sym_BQUOTE] = ACTIONS(2645), + [anon_sym_LT_LPAREN] = ACTIONS(2645), + [anon_sym_GT_LPAREN] = ACTIONS(2645), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_LF] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + }, + [685] = { + [sym_subscript] = STATE(1304), + [sym_variable_name] = ACTIONS(2647), + [anon_sym_DOLLAR] = ACTIONS(2649), + [anon_sym_POUND] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2649), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_AT] = ACTIONS(2649), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_0] = ACTIONS(2655), + [anon_sym__] = ACTIONS(2655), + }, + [686] = { [sym_for_statement] = STATE(1305), [sym_while_statement] = STATE(1305), [sym_if_statement] = STATE(1305), @@ -29446,167 +29341,186 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, + [687] = { + [sym_for_statement] = STATE(1307), + [sym_while_statement] = STATE(1307), + [sym_if_statement] = STATE(1307), + [sym_case_statement] = STATE(1307), + [sym_function_definition] = STATE(1307), + [sym_subshell] = STATE(1307), + [sym_pipeline] = STATE(1307), + [sym_list] = STATE(1307), + [sym_command] = STATE(1307), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(1307), + [sym_variable_assignment] = STATE(1308), + [sym_declaration_command] = STATE(1307), + [sym_unset_command] = STATE(1307), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(334), + }, [688] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2639), - [sym__special_characters] = ACTIONS(2639), - [anon_sym_DQUOTE] = ACTIONS(2639), - [anon_sym_DOLLAR] = ACTIONS(2639), - [sym_raw_string] = ACTIONS(2639), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2639), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2639), - [anon_sym_BQUOTE] = ACTIONS(2639), - [anon_sym_LT_LPAREN] = ACTIONS(2639), - [anon_sym_GT_LPAREN] = ACTIONS(2639), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2639), - [anon_sym_SEMI] = ACTIONS(2639), - [anon_sym_LF] = ACTIONS(2639), - [anon_sym_AMP] = ACTIONS(2639), + [sym_for_statement] = STATE(1309), + [sym_while_statement] = STATE(1309), + [sym_if_statement] = STATE(1309), + [sym_case_statement] = STATE(1309), + [sym_function_definition] = STATE(1309), + [sym_subshell] = STATE(1309), + [sym_pipeline] = STATE(1309), + [sym_list] = STATE(1309), + [sym_command] = STATE(1309), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(1309), + [sym_variable_assignment] = STATE(1310), + [sym_declaration_command] = STATE(1309), + [sym_unset_command] = STATE(1309), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(302), }, [689] = { - [sym_concatenation] = STATE(688), - [sym_string] = STATE(683), - [sym_simple_expansion] = STATE(683), - [sym_string_expansion] = STATE(683), - [sym_expansion] = STATE(683), - [sym_command_substitution] = STATE(683), - [sym_process_substitution] = STATE(683), - [aux_sym_for_statement_repeat1] = STATE(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(2651), - [sym__special_characters] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2655), - [anon_sym_DOLLAR] = ACTIONS(2657), - [sym_raw_string] = ACTIONS(2659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), - [anon_sym_BQUOTE] = ACTIONS(2665), - [anon_sym_LT_LPAREN] = ACTIONS(2667), - [anon_sym_GT_LPAREN] = ACTIONS(2667), + [anon_sym_SEMI_SEMI] = ACTIONS(2645), + [sym__special_characters] = ACTIONS(2645), + [anon_sym_DQUOTE] = ACTIONS(2645), + [anon_sym_DOLLAR] = ACTIONS(2645), + [sym_raw_string] = ACTIONS(2645), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2645), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2645), + [anon_sym_BQUOTE] = ACTIONS(2645), + [anon_sym_LT_LPAREN] = ACTIONS(2645), + [anon_sym_GT_LPAREN] = ACTIONS(2645), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(2651), - [anon_sym_LF] = ACTIONS(2651), - [anon_sym_AMP] = ACTIONS(2651), + [sym_word] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_LF] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), }, [690] = { - [sym_file_descriptor] = ACTIONS(2669), - [anon_sym_esac] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_RPAREN] = ACTIONS(2671), - [anon_sym_SEMI_SEMI] = ACTIONS(2671), - [anon_sym_PIPE_AMP] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_PIPE_PIPE] = ACTIONS(2671), - [anon_sym_LT] = ACTIONS(2671), - [anon_sym_GT] = ACTIONS(2671), - [anon_sym_GT_GT] = ACTIONS(2671), - [anon_sym_AMP_GT] = ACTIONS(2671), - [anon_sym_AMP_GT_GT] = ACTIONS(2671), - [anon_sym_LT_AMP] = ACTIONS(2671), - [anon_sym_GT_AMP] = ACTIONS(2671), - [anon_sym_LT_LT] = ACTIONS(2671), - [anon_sym_LT_LT_DASH] = ACTIONS(2671), - [anon_sym_LT_LT_LT] = ACTIONS(2671), + [sym_concatenation] = STATE(689), + [sym_string] = STATE(684), + [sym_simple_expansion] = STATE(684), + [sym_string_expansion] = STATE(684), + [sym_expansion] = STATE(684), + [sym_command_substitution] = STATE(684), + [sym_process_substitution] = STATE(684), + [aux_sym_for_statement_repeat1] = STATE(1312), + [anon_sym_SEMI_SEMI] = ACTIONS(2657), + [sym__special_characters] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2661), + [anon_sym_DOLLAR] = ACTIONS(2663), + [sym_raw_string] = ACTIONS(2665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2667), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2669), + [anon_sym_BQUOTE] = ACTIONS(2671), + [anon_sym_LT_LPAREN] = ACTIONS(2673), + [anon_sym_GT_LPAREN] = ACTIONS(2673), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_LF] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2671), + [sym_word] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_LF] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), }, [691] = { - [sym_file_descriptor] = ACTIONS(340), - [sym_variable_name] = ACTIONS(340), - [anon_sym_for] = ACTIONS(342), - [anon_sym_while] = ACTIONS(342), - [anon_sym_done] = ACTIONS(342), - [anon_sym_if] = ACTIONS(342), - [anon_sym_case] = ACTIONS(342), - [anon_sym_function] = ACTIONS(342), - [anon_sym_LPAREN] = ACTIONS(340), - [anon_sym_LBRACK] = ACTIONS(342), - [anon_sym_LBRACK_LBRACK] = ACTIONS(340), - [anon_sym_declare] = ACTIONS(342), - [anon_sym_typeset] = ACTIONS(342), - [anon_sym_export] = ACTIONS(342), - [anon_sym_readonly] = ACTIONS(342), - [anon_sym_local] = ACTIONS(342), - [anon_sym_unset] = ACTIONS(342), - [anon_sym_unsetenv] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(340), - [anon_sym_AMP_GT] = ACTIONS(342), - [anon_sym_AMP_GT_GT] = ACTIONS(340), - [anon_sym_LT_AMP] = ACTIONS(340), - [anon_sym_GT_AMP] = ACTIONS(340), - [sym__special_characters] = ACTIONS(344), - [anon_sym_DQUOTE] = ACTIONS(340), - [anon_sym_DOLLAR] = ACTIONS(342), - [sym_raw_string] = ACTIONS(340), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(340), - [anon_sym_BQUOTE] = ACTIONS(340), - [anon_sym_LT_LPAREN] = ACTIONS(340), - [anon_sym_GT_LPAREN] = ACTIONS(340), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(344), - }, - [692] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(2673), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym_LF] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2673), - }, - [693] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(2673), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2673), - [anon_sym_LF] = ACTIONS(2673), - [anon_sym_AMP] = ACTIONS(2673), - }, - [694] = { - [sym__terminated_statement] = STATE(691), - [sym_for_statement] = STATE(692), - [sym_while_statement] = STATE(692), - [sym_if_statement] = STATE(692), - [sym_case_statement] = STATE(692), - [sym_function_definition] = STATE(692), - [sym_subshell] = STATE(692), - [sym_pipeline] = STATE(692), - [sym_list] = STATE(692), - [sym_command] = STATE(692), + [sym__terminated_statement] = STATE(694), + [sym_for_statement] = STATE(695), + [sym_while_statement] = STATE(695), + [sym_if_statement] = STATE(695), + [sym_case_statement] = STATE(695), + [sym_function_definition] = STATE(695), + [sym_subshell] = STATE(695), + [sym_pipeline] = STATE(695), + [sym_list] = STATE(695), + [sym_command] = STATE(695), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(692), - [sym_variable_assignment] = STATE(693), - [sym_declaration_command] = STATE(692), - [sym_unset_command] = STATE(692), + [sym_bracket_command] = STATE(695), + [sym_variable_assignment] = STATE(696), + [sym_declaration_command] = STATE(695), + [sym_unset_command] = STATE(695), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -29616,7 +29530,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1311), + [aux_sym_program_repeat1] = STATE(1314), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -29655,17 +29569,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [695] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(624), - [sym_file_descriptor] = ACTIONS(352), + [692] = { + [anon_sym_esac] = ACTIONS(2677), [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_RPAREN] = ACTIONS(2677), [anon_sym_SEMI_SEMI] = ACTIONS(2677), [anon_sym_PIPE_AMP] = ACTIONS(2677), [anon_sym_AMP_AMP] = ACTIONS(2677), [anon_sym_PIPE_PIPE] = ACTIONS(2677), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym_LF] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2677), + }, + [693] = { + [sym_file_descriptor] = ACTIONS(2679), + [anon_sym_esac] = ACTIONS(2681), + [anon_sym_PIPE] = ACTIONS(2681), + [anon_sym_RPAREN] = ACTIONS(2681), + [anon_sym_SEMI_SEMI] = ACTIONS(2681), + [anon_sym_PIPE_AMP] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_PIPE_PIPE] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_GT] = ACTIONS(2681), + [anon_sym_GT_GT] = ACTIONS(2681), + [anon_sym_AMP_GT] = ACTIONS(2681), + [anon_sym_AMP_GT_GT] = ACTIONS(2681), + [anon_sym_LT_AMP] = ACTIONS(2681), + [anon_sym_GT_AMP] = ACTIONS(2681), + [anon_sym_LT_LT] = ACTIONS(2681), + [anon_sym_LT_LT_DASH] = ACTIONS(2681), + [anon_sym_LT_LT_LT] = ACTIONS(2681), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym_LF] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2681), + }, + [694] = { + [sym_file_descriptor] = ACTIONS(340), + [sym_variable_name] = ACTIONS(340), + [anon_sym_for] = ACTIONS(342), + [anon_sym_while] = ACTIONS(342), + [anon_sym_done] = ACTIONS(342), + [anon_sym_if] = ACTIONS(342), + [anon_sym_case] = ACTIONS(342), + [anon_sym_function] = ACTIONS(342), + [anon_sym_LPAREN] = ACTIONS(340), + [anon_sym_LBRACK] = ACTIONS(342), + [anon_sym_LBRACK_LBRACK] = ACTIONS(340), + [anon_sym_declare] = ACTIONS(342), + [anon_sym_typeset] = ACTIONS(342), + [anon_sym_export] = ACTIONS(342), + [anon_sym_readonly] = ACTIONS(342), + [anon_sym_local] = ACTIONS(342), + [anon_sym_unset] = ACTIONS(342), + [anon_sym_unsetenv] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(342), + [anon_sym_GT] = ACTIONS(342), + [anon_sym_GT_GT] = ACTIONS(340), + [anon_sym_AMP_GT] = ACTIONS(342), + [anon_sym_AMP_GT_GT] = ACTIONS(340), + [anon_sym_LT_AMP] = ACTIONS(340), + [anon_sym_GT_AMP] = ACTIONS(340), + [sym__special_characters] = ACTIONS(344), + [anon_sym_DQUOTE] = ACTIONS(340), + [anon_sym_DOLLAR] = ACTIONS(342), + [sym_raw_string] = ACTIONS(340), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(340), + [anon_sym_BQUOTE] = ACTIONS(340), + [anon_sym_LT_LPAREN] = ACTIONS(340), + [anon_sym_GT_LPAREN] = ACTIONS(340), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(344), + }, + [695] = { + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(2683), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_LF] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2683), + }, + [696] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(2683), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_LF] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2683), + }, + [697] = { + [sym__terminated_statement] = STATE(694), + [sym_for_statement] = STATE(695), + [sym_while_statement] = STATE(695), + [sym_if_statement] = STATE(695), + [sym_case_statement] = STATE(695), + [sym_function_definition] = STATE(695), + [sym_subshell] = STATE(695), + [sym_pipeline] = STATE(695), + [sym_list] = STATE(695), + [sym_command] = STATE(695), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(695), + [sym_variable_assignment] = STATE(696), + [sym_declaration_command] = STATE(695), + [sym_unset_command] = STATE(695), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1317), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [698] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(625), + [sym_file_descriptor] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(2687), + [anon_sym_SEMI_SEMI] = ACTIONS(2687), + [anon_sym_PIPE_AMP] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_PIPE_PIPE] = ACTIONS(2687), [anon_sym_LT] = ACTIONS(358), [anon_sym_GT] = ACTIONS(358), [anon_sym_GT_GT] = ACTIONS(358), @@ -29677,25 +29771,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(360), [anon_sym_LT_LT_LT] = ACTIONS(362), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym_LF] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_LF] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2687), }, - [696] = { - [anon_sym_esac] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(2679), - [anon_sym_RPAREN] = ACTIONS(2679), - [anon_sym_SEMI_SEMI] = ACTIONS(2679), - [anon_sym_PIPE_AMP] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2679), - [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [699] = { + [anon_sym_esac] = ACTIONS(2689), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_RPAREN] = ACTIONS(2689), + [anon_sym_SEMI_SEMI] = ACTIONS(2689), + [anon_sym_PIPE_AMP] = ACTIONS(2689), + [anon_sym_AMP_AMP] = ACTIONS(2689), + [anon_sym_PIPE_PIPE] = ACTIONS(2689), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2679), - [anon_sym_LF] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2689), + [anon_sym_LF] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2689), }, - [697] = { - [sym__terminated_statement] = STATE(1312), + [700] = { + [sym__terminated_statement] = STATE(1318), [sym_for_statement] = STATE(40), [sym_while_statement] = STATE(40), [sym_if_statement] = STATE(40), @@ -29756,22 +29850,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [698] = { - [sym__terminated_statement] = STATE(1313), - [sym_for_statement] = STATE(1314), - [sym_while_statement] = STATE(1314), - [sym_if_statement] = STATE(1314), - [sym_case_statement] = STATE(1314), - [sym_function_definition] = STATE(1314), - [sym_subshell] = STATE(1314), - [sym_pipeline] = STATE(1314), - [sym_list] = STATE(1314), - [sym_command] = STATE(1314), + [701] = { + [sym__terminated_statement] = STATE(1319), + [sym_for_statement] = STATE(1320), + [sym_while_statement] = STATE(1320), + [sym_if_statement] = STATE(1320), + [sym_case_statement] = STATE(1320), + [sym_function_definition] = STATE(1320), + [sym_subshell] = STATE(1320), + [sym_pipeline] = STATE(1320), + [sym_list] = STATE(1320), + [sym_command] = STATE(1320), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(1314), - [sym_variable_assignment] = STATE(1315), - [sym_declaration_command] = STATE(1314), - [sym_unset_command] = STATE(1314), + [sym_bracket_command] = STATE(1320), + [sym_variable_assignment] = STATE(1321), + [sym_declaration_command] = STATE(1320), + [sym_unset_command] = STATE(1320), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -29781,14 +29875,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1316), + [aux_sym_program_repeat1] = STATE(1322), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2681), + [anon_sym_fi] = ACTIONS(2691), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -29820,7 +29914,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [699] = { + [702] = { [sym_file_descriptor] = ACTIONS(340), [sym_variable_name] = ACTIONS(340), [anon_sym_for] = ACTIONS(342), @@ -29860,32 +29954,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(344), }, - [700] = { + [703] = { [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(2683), + [anon_sym_SEMI_SEMI] = ACTIONS(2693), [anon_sym_PIPE_AMP] = ACTIONS(346), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym_LF] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym_LF] = ACTIONS(2693), + [anon_sym_AMP] = ACTIONS(2693), }, - [701] = { - [anon_sym_fi] = ACTIONS(2685), - [anon_sym_elif] = ACTIONS(2685), - [anon_sym_else] = ACTIONS(2685), + [704] = { + [anon_sym_fi] = ACTIONS(2695), + [anon_sym_elif] = ACTIONS(2695), + [anon_sym_else] = ACTIONS(2695), [sym_comment] = ACTIONS(56), }, - [702] = { - [anon_sym_fi] = ACTIONS(2687), + [705] = { + [anon_sym_fi] = ACTIONS(2697), [sym_comment] = ACTIONS(56), }, - [703] = { + [706] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(2683), + [anon_sym_SEMI_SEMI] = ACTIONS(2693), [anon_sym_PIPE_AMP] = ACTIONS(346), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), @@ -29907,28 +30001,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2683), - [anon_sym_LF] = ACTIONS(2683), - [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym_LF] = ACTIONS(2693), + [anon_sym_AMP] = ACTIONS(2693), }, - [704] = { - [sym__terminated_statement] = STATE(699), - [sym_for_statement] = STATE(700), - [sym_while_statement] = STATE(700), - [sym_if_statement] = STATE(700), - [sym_elif_clause] = STATE(701), - [sym_else_clause] = STATE(1319), - [sym_case_statement] = STATE(700), - [sym_function_definition] = STATE(700), - [sym_subshell] = STATE(700), - [sym_pipeline] = STATE(700), - [sym_list] = STATE(700), - [sym_command] = STATE(700), + [707] = { + [sym__terminated_statement] = STATE(702), + [sym_for_statement] = STATE(703), + [sym_while_statement] = STATE(703), + [sym_if_statement] = STATE(703), + [sym_elif_clause] = STATE(704), + [sym_else_clause] = STATE(1325), + [sym_case_statement] = STATE(703), + [sym_function_definition] = STATE(703), + [sym_subshell] = STATE(703), + [sym_pipeline] = STATE(703), + [sym_list] = STATE(703), + [sym_command] = STATE(703), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(700), - [sym_variable_assignment] = STATE(703), - [sym_declaration_command] = STATE(700), - [sym_unset_command] = STATE(700), + [sym_bracket_command] = STATE(703), + [sym_variable_assignment] = STATE(706), + [sym_declaration_command] = STATE(703), + [sym_unset_command] = STATE(703), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -29938,17 +30032,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1320), - [aux_sym_if_statement_repeat1] = STATE(1321), + [aux_sym_program_repeat1] = STATE(1326), + [aux_sym_if_statement_repeat1] = STATE(1327), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(2689), - [anon_sym_elif] = ACTIONS(1351), - [anon_sym_else] = ACTIONS(1353), + [anon_sym_fi] = ACTIONS(2699), + [anon_sym_elif] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(1357), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -29980,392 +30074,392 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [705] = { - [sym_elif_clause] = STATE(701), - [sym_else_clause] = STATE(1319), - [aux_sym_if_statement_repeat1] = STATE(1322), - [anon_sym_fi] = ACTIONS(2687), - [anon_sym_elif] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2693), - [sym_comment] = ACTIONS(56), - }, - [706] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_in] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [707] = { - [sym_case_item] = STATE(1332), - [sym_last_case_item] = STATE(1333), - [sym_concatenation] = STATE(1334), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_string_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [aux_sym_case_statement_repeat1] = STATE(1335), - [anon_sym_esac] = ACTIONS(2695), - [sym__special_characters] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2713), - }, [708] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2715), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2715), - [anon_sym_LF] = ACTIONS(2715), - [anon_sym_AMP] = ACTIONS(2715), + [sym_elif_clause] = STATE(704), + [sym_else_clause] = STATE(1325), + [aux_sym_if_statement_repeat1] = STATE(1328), + [anon_sym_fi] = ACTIONS(2697), + [anon_sym_elif] = ACTIONS(2701), + [anon_sym_else] = ACTIONS(2703), + [sym_comment] = ACTIONS(56), }, [709] = { - [aux_sym_concatenation_repeat1] = STATE(709), - [sym__concat] = ACTIONS(2717), - [anon_sym_in] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), + [sym__concat] = ACTIONS(1890), + [anon_sym_in] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [710] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_in] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), + [sym_case_item] = STATE(1338), + [sym_last_case_item] = STATE(1339), + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(1333), + [sym_simple_expansion] = STATE(1333), + [sym_string_expansion] = STATE(1333), + [sym_expansion] = STATE(1333), + [sym_command_substitution] = STATE(1333), + [sym_process_substitution] = STATE(1333), + [aux_sym_case_statement_repeat1] = STATE(1341), + [anon_sym_esac] = ACTIONS(2705), + [sym__special_characters] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(2713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2723), }, [711] = { - [sym_case_item] = STATE(1332), - [sym_last_case_item] = STATE(1338), - [sym_concatenation] = STATE(1334), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_string_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [aux_sym_case_statement_repeat1] = STATE(1339), - [anon_sym_esac] = ACTIONS(2720), - [sym__special_characters] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2713), + [anon_sym_SEMI_SEMI] = ACTIONS(2725), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2725), + [anon_sym_LF] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2725), }, [712] = { - [anon_sym_SEMI_SEMI] = ACTIONS(2722), + [aux_sym_concatenation_repeat1] = STATE(712), + [sym__concat] = ACTIONS(2727), + [anon_sym_in] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_LF] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2722), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [713] = { - [sym_concatenation] = STATE(1344), - [sym_string] = STATE(1343), - [sym_simple_expansion] = STATE(1343), - [sym_string_expansion] = STATE(1343), - [sym_expansion] = STATE(1343), - [sym_command_substitution] = STATE(1343), - [sym_process_substitution] = STATE(1343), - [anon_sym_RBRACE] = ACTIONS(2724), - [sym__special_characters] = ACTIONS(2726), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(2728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2730), + [sym__concat] = ACTIONS(1927), + [anon_sym_in] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), }, [714] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_in] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), + [sym_case_item] = STATE(1338), + [sym_last_case_item] = STATE(1344), + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(1333), + [sym_simple_expansion] = STATE(1333), + [sym_string_expansion] = STATE(1333), + [sym_expansion] = STATE(1333), + [sym_command_substitution] = STATE(1333), + [sym_process_substitution] = STATE(1333), + [aux_sym_case_statement_repeat1] = STATE(1345), + [anon_sym_esac] = ACTIONS(2730), + [sym__special_characters] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(2713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2723), }, [715] = { + [anon_sym_SEMI_SEMI] = ACTIONS(2732), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2732), + [anon_sym_SEMI] = ACTIONS(2732), + [anon_sym_LF] = ACTIONS(2732), + [anon_sym_AMP] = ACTIONS(2732), }, [716] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [sym_concatenation] = STATE(1350), + [sym_string] = STATE(1349), + [sym_simple_expansion] = STATE(1349), + [sym_string_expansion] = STATE(1349), + [sym_expansion] = STATE(1349), + [sym_command_substitution] = STATE(1349), + [sym_process_substitution] = STATE(1349), [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__special_characters] = ACTIONS(2736), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(2738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2740), }, [717] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(2736), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(1972), + [anon_sym_in] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), }, [718] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1350), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2740), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(2742), }, [719] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1353), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2744), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(2744), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [720] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1355), - [anon_sym_RBRACE] = ACTIONS(2724), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2746), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(2746), + [sym_comment] = ACTIONS(56), }, [721] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_in] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1356), + [anon_sym_RBRACE] = ACTIONS(2748), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2750), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), + [sym_word] = ACTIONS(866), }, [722] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1359), + [anon_sym_RBRACE] = ACTIONS(2752), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2754), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2748), + [sym_word] = ACTIONS(866), }, [723] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(2750), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1361), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2756), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [724] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_in] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), + [sym__concat] = ACTIONS(2026), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), }, [725] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2752), + [sym_regex_without_right_brace] = ACTIONS(2758), }, [726] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(2724), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(2760), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [727] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_in] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), + [sym__concat] = ACTIONS(2034), + [anon_sym_in] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), }, [728] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_in] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), + [sym_regex_without_right_brace] = ACTIONS(2762), }, [729] = { - [sym_compound_statement] = STATE(1359), - [anon_sym_LBRACE] = ACTIONS(484), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [730] = { - [sym_file_descriptor] = ACTIONS(2754), - [anon_sym_esac] = ACTIONS(2756), - [anon_sym_PIPE] = ACTIONS(2756), - [anon_sym_RPAREN] = ACTIONS(2756), - [anon_sym_SEMI_SEMI] = ACTIONS(2756), - [anon_sym_PIPE_AMP] = ACTIONS(2756), - [anon_sym_AMP_AMP] = ACTIONS(2756), - [anon_sym_PIPE_PIPE] = ACTIONS(2756), - [anon_sym_LT] = ACTIONS(2756), - [anon_sym_GT] = ACTIONS(2756), - [anon_sym_GT_GT] = ACTIONS(2756), - [anon_sym_AMP_GT] = ACTIONS(2756), - [anon_sym_AMP_GT_GT] = ACTIONS(2756), - [anon_sym_LT_AMP] = ACTIONS(2756), - [anon_sym_GT_AMP] = ACTIONS(2756), + [sym__concat] = ACTIONS(2196), + [anon_sym_in] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2756), - [anon_sym_LF] = ACTIONS(2756), - [anon_sym_AMP] = ACTIONS(2756), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), }, [731] = { + [sym__concat] = ACTIONS(2402), + [anon_sym_in] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + }, + [732] = { + [sym_compound_statement] = STATE(1365), + [anon_sym_LBRACE] = ACTIONS(486), + [sym_comment] = ACTIONS(56), + }, + [733] = { + [sym_file_descriptor] = ACTIONS(2764), + [anon_sym_esac] = ACTIONS(2766), + [anon_sym_PIPE] = ACTIONS(2766), + [anon_sym_RPAREN] = ACTIONS(2766), + [anon_sym_SEMI_SEMI] = ACTIONS(2766), + [anon_sym_PIPE_AMP] = ACTIONS(2766), + [anon_sym_AMP_AMP] = ACTIONS(2766), + [anon_sym_PIPE_PIPE] = ACTIONS(2766), + [anon_sym_LT] = ACTIONS(2766), + [anon_sym_GT] = ACTIONS(2766), + [anon_sym_GT_GT] = ACTIONS(2766), + [anon_sym_AMP_GT] = ACTIONS(2766), + [anon_sym_AMP_GT_GT] = ACTIONS(2766), + [anon_sym_LT_AMP] = ACTIONS(2766), + [anon_sym_GT_AMP] = ACTIONS(2766), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2766), + [anon_sym_LF] = ACTIONS(2766), + [anon_sym_AMP] = ACTIONS(2766), + }, + [734] = { [sym_file_descriptor] = ACTIONS(340), [sym_variable_name] = ACTIONS(340), [anon_sym_for] = ACTIONS(342), @@ -30403,22 +30497,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(344), }, - [732] = { + [735] = { [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2768), [anon_sym_PIPE_AMP] = ACTIONS(346), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_LF] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), }, - [733] = { + [736] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(2758), + [anon_sym_SEMI_SEMI] = ACTIONS(2768), [anon_sym_PIPE_AMP] = ACTIONS(346), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), @@ -30440,26 +30534,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_LF] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2758), + [anon_sym_SEMI] = ACTIONS(2768), + [anon_sym_LF] = ACTIONS(2768), + [anon_sym_AMP] = ACTIONS(2768), }, - [734] = { - [sym__terminated_statement] = STATE(731), - [sym_for_statement] = STATE(732), - [sym_while_statement] = STATE(732), - [sym_if_statement] = STATE(732), - [sym_case_statement] = STATE(732), - [sym_function_definition] = STATE(732), - [sym_subshell] = STATE(732), - [sym_pipeline] = STATE(732), - [sym_list] = STATE(732), - [sym_command] = STATE(732), + [737] = { + [sym__terminated_statement] = STATE(734), + [sym_for_statement] = STATE(735), + [sym_while_statement] = STATE(735), + [sym_if_statement] = STATE(735), + [sym_case_statement] = STATE(735), + [sym_function_definition] = STATE(735), + [sym_subshell] = STATE(735), + [sym_pipeline] = STATE(735), + [sym_list] = STATE(735), + [sym_command] = STATE(735), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(732), - [sym_variable_assignment] = STATE(733), - [sym_declaration_command] = STATE(732), - [sym_unset_command] = STATE(732), + [sym_bracket_command] = STATE(735), + [sym_variable_assignment] = STATE(736), + [sym_declaration_command] = STATE(735), + [sym_unset_command] = STATE(735), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -30469,7 +30563,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1362), + [aux_sym_program_repeat1] = STATE(1368), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), @@ -30479,7 +30573,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(2760), + [anon_sym_RBRACE] = ACTIONS(2770), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_declare] = ACTIONS(32), @@ -30508,88 +30602,88 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [735] = { - [anon_sym_LT] = ACTIONS(2762), - [anon_sym_GT] = ACTIONS(2762), - [anon_sym_GT_GT] = ACTIONS(2764), - [anon_sym_AMP_GT] = ACTIONS(2762), - [anon_sym_AMP_GT_GT] = ACTIONS(2764), - [anon_sym_LT_AMP] = ACTIONS(2764), - [anon_sym_GT_AMP] = ACTIONS(2764), - [sym_comment] = ACTIONS(56), - }, - [736] = { - [sym_concatenation] = STATE(1372), - [sym_string] = STATE(1367), - [sym_simple_expansion] = STATE(1367), - [sym_string_expansion] = STATE(1367), - [sym_expansion] = STATE(1367), - [sym_command_substitution] = STATE(1367), - [sym_process_substitution] = STATE(1367), - [sym__special_characters] = ACTIONS(2766), - [anon_sym_DQUOTE] = ACTIONS(2768), - [anon_sym_DOLLAR] = ACTIONS(2770), - [sym_raw_string] = ACTIONS(2772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2776), - [anon_sym_BQUOTE] = ACTIONS(2778), - [anon_sym_LT_LPAREN] = ACTIONS(2780), - [anon_sym_GT_LPAREN] = ACTIONS(2780), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2782), - }, - [737] = { - [anon_sym_esac] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_RPAREN] = ACTIONS(2784), - [anon_sym_SEMI_SEMI] = ACTIONS(2784), - [anon_sym_PIPE_AMP] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - }, [738] = { - [aux_sym_concatenation_repeat1] = STATE(1374), - [sym_file_descriptor] = ACTIONS(1301), - [sym__concat] = ACTIONS(2786), - [sym_variable_name] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(1305), - [anon_sym_SEMI_SEMI] = ACTIONS(1305), - [anon_sym_PIPE_AMP] = ACTIONS(1305), - [anon_sym_AMP_AMP] = ACTIONS(1305), - [anon_sym_PIPE_PIPE] = ACTIONS(1305), - [anon_sym_LT] = ACTIONS(1305), - [anon_sym_GT] = ACTIONS(1305), - [anon_sym_GT_GT] = ACTIONS(1305), - [anon_sym_AMP_GT] = ACTIONS(1305), - [anon_sym_AMP_GT_GT] = ACTIONS(1305), - [anon_sym_LT_AMP] = ACTIONS(1305), - [anon_sym_GT_AMP] = ACTIONS(1305), - [sym__special_characters] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1305), - [sym_raw_string] = ACTIONS(1305), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1305), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1305), - [anon_sym_BQUOTE] = ACTIONS(1305), - [anon_sym_LT_LPAREN] = ACTIONS(1305), - [anon_sym_GT_LPAREN] = ACTIONS(1305), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym_LF] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1305), + [anon_sym_LT] = ACTIONS(2772), + [anon_sym_GT] = ACTIONS(2772), + [anon_sym_GT_GT] = ACTIONS(2774), + [anon_sym_AMP_GT] = ACTIONS(2772), + [anon_sym_AMP_GT_GT] = ACTIONS(2774), + [anon_sym_LT_AMP] = ACTIONS(2774), + [anon_sym_GT_AMP] = ACTIONS(2774), + [sym_comment] = ACTIONS(56), }, [739] = { + [sym_concatenation] = STATE(1378), + [sym_string] = STATE(1373), + [sym_simple_expansion] = STATE(1373), + [sym_string_expansion] = STATE(1373), + [sym_expansion] = STATE(1373), + [sym_command_substitution] = STATE(1373), + [sym_process_substitution] = STATE(1373), + [sym__special_characters] = ACTIONS(2776), + [anon_sym_DQUOTE] = ACTIONS(2778), + [anon_sym_DOLLAR] = ACTIONS(2780), + [sym_raw_string] = ACTIONS(2782), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2786), + [anon_sym_BQUOTE] = ACTIONS(2788), + [anon_sym_LT_LPAREN] = ACTIONS(2790), + [anon_sym_GT_LPAREN] = ACTIONS(2790), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2792), + }, + [740] = { + [anon_sym_esac] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_SEMI_SEMI] = ACTIONS(2794), + [anon_sym_PIPE_AMP] = ACTIONS(2794), + [anon_sym_AMP_AMP] = ACTIONS(2794), + [anon_sym_PIPE_PIPE] = ACTIONS(2794), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_LF] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + }, + [741] = { + [aux_sym_concatenation_repeat1] = STATE(1380), + [sym_file_descriptor] = ACTIONS(1303), + [sym__concat] = ACTIONS(2796), + [sym_variable_name] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_SEMI_SEMI] = ACTIONS(1307), + [anon_sym_PIPE_AMP] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1307), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_GT_GT] = ACTIONS(1307), + [anon_sym_AMP_GT] = ACTIONS(1307), + [anon_sym_AMP_GT_GT] = ACTIONS(1307), + [anon_sym_LT_AMP] = ACTIONS(1307), + [anon_sym_GT_AMP] = ACTIONS(1307), + [sym__special_characters] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [sym_raw_string] = ACTIONS(1307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1307), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1307), + [anon_sym_BQUOTE] = ACTIONS(1307), + [anon_sym_LT_LPAREN] = ACTIONS(1307), + [anon_sym_GT_LPAREN] = ACTIONS(1307), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_LF] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), + }, + [742] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1376), - [anon_sym_DQUOTE] = ACTIONS(2788), + [aux_sym_string_repeat1] = STATE(1382), + [anon_sym_DQUOTE] = ACTIONS(2798), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -30597,59 +30691,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [740] = { - [sym_string] = STATE(1378), - [anon_sym_DQUOTE] = ACTIONS(1407), - [anon_sym_DOLLAR] = ACTIONS(2790), - [sym_raw_string] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(2790), - [anon_sym_DASH] = ACTIONS(2790), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2790), - [anon_sym_AT] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2790), - [anon_sym_0] = ACTIONS(2796), - [anon_sym__] = ACTIONS(2796), - }, - [741] = { - [aux_sym_concatenation_repeat1] = STATE(1374), - [sym_file_descriptor] = ACTIONS(1277), - [sym__concat] = ACTIONS(2786), - [sym_variable_name] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_RPAREN] = ACTIONS(1279), - [anon_sym_SEMI_SEMI] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1279), - [anon_sym_GT] = ACTIONS(1279), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_AMP_GT] = ACTIONS(1279), - [anon_sym_AMP_GT_GT] = ACTIONS(1279), - [anon_sym_LT_AMP] = ACTIONS(1279), - [anon_sym_GT_AMP] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1279), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_LF] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - }, - [742] = { - [sym_subscript] = STATE(1384), - [sym_variable_name] = ACTIONS(2798), + [743] = { + [sym_string] = STATE(1384), + [anon_sym_DQUOTE] = ACTIONS(1411), [anon_sym_DOLLAR] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(2802), + [sym_raw_string] = ACTIONS(2802), + [anon_sym_POUND] = ACTIONS(2800), [anon_sym_DASH] = ACTIONS(2800), [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2804), @@ -30659,21 +30706,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(2806), [anon_sym__] = ACTIONS(2806), }, - [743] = { - [sym_for_statement] = STATE(1385), - [sym_while_statement] = STATE(1385), - [sym_if_statement] = STATE(1385), - [sym_case_statement] = STATE(1385), - [sym_function_definition] = STATE(1385), - [sym_subshell] = STATE(1385), - [sym_pipeline] = STATE(1385), - [sym_list] = STATE(1385), - [sym_command] = STATE(1385), + [744] = { + [aux_sym_concatenation_repeat1] = STATE(1380), + [sym_file_descriptor] = ACTIONS(1279), + [sym__concat] = ACTIONS(2796), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_SEMI_SEMI] = ACTIONS(1281), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1281), + [anon_sym_GT] = ACTIONS(1281), + [anon_sym_GT_GT] = ACTIONS(1281), + [anon_sym_AMP_GT] = ACTIONS(1281), + [anon_sym_AMP_GT_GT] = ACTIONS(1281), + [anon_sym_LT_AMP] = ACTIONS(1281), + [anon_sym_GT_AMP] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + }, + [745] = { + [sym_subscript] = STATE(1390), + [sym_variable_name] = ACTIONS(2808), + [anon_sym_DOLLAR] = ACTIONS(2810), + [anon_sym_POUND] = ACTIONS(2812), + [anon_sym_DASH] = ACTIONS(2810), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2814), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_AT] = ACTIONS(2810), + [anon_sym_QMARK] = ACTIONS(2810), + [anon_sym_0] = ACTIONS(2816), + [anon_sym__] = ACTIONS(2816), + }, + [746] = { + [sym_for_statement] = STATE(1391), + [sym_while_statement] = STATE(1391), + [sym_if_statement] = STATE(1391), + [sym_case_statement] = STATE(1391), + [sym_function_definition] = STATE(1391), + [sym_subshell] = STATE(1391), + [sym_pipeline] = STATE(1391), + [sym_list] = STATE(1391), + [sym_command] = STATE(1391), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1385), - [sym_variable_assignment] = STATE(1386), - [sym_declaration_command] = STATE(1385), - [sym_unset_command] = STATE(1385), + [sym_bracket_command] = STATE(1391), + [sym_variable_assignment] = STATE(1392), + [sym_declaration_command] = STATE(1391), + [sym_unset_command] = STATE(1391), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -30720,21 +30814,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [744] = { - [sym_for_statement] = STATE(1387), - [sym_while_statement] = STATE(1387), - [sym_if_statement] = STATE(1387), - [sym_case_statement] = STATE(1387), - [sym_function_definition] = STATE(1387), - [sym_subshell] = STATE(1387), - [sym_pipeline] = STATE(1387), - [sym_list] = STATE(1387), - [sym_command] = STATE(1387), + [747] = { + [sym_for_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_case_statement] = STATE(1393), + [sym_function_definition] = STATE(1393), + [sym_subshell] = STATE(1393), + [sym_pipeline] = STATE(1393), + [sym_list] = STATE(1393), + [sym_command] = STATE(1393), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1387), - [sym_variable_assignment] = STATE(1388), - [sym_declaration_command] = STATE(1387), - [sym_unset_command] = STATE(1387), + [sym_bracket_command] = STATE(1393), + [sym_variable_assignment] = STATE(1394), + [sym_declaration_command] = STATE(1393), + [sym_unset_command] = STATE(1393), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -30781,21 +30875,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [745] = { - [sym_for_statement] = STATE(1389), - [sym_while_statement] = STATE(1389), - [sym_if_statement] = STATE(1389), - [sym_case_statement] = STATE(1389), - [sym_function_definition] = STATE(1389), - [sym_subshell] = STATE(1389), - [sym_pipeline] = STATE(1389), - [sym_list] = STATE(1389), - [sym_command] = STATE(1389), + [748] = { + [sym_for_statement] = STATE(1395), + [sym_while_statement] = STATE(1395), + [sym_if_statement] = STATE(1395), + [sym_case_statement] = STATE(1395), + [sym_function_definition] = STATE(1395), + [sym_subshell] = STATE(1395), + [sym_pipeline] = STATE(1395), + [sym_list] = STATE(1395), + [sym_command] = STATE(1395), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1389), - [sym_variable_assignment] = STATE(1390), - [sym_declaration_command] = STATE(1389), - [sym_unset_command] = STATE(1389), + [sym_bracket_command] = STATE(1395), + [sym_variable_assignment] = STATE(1396), + [sym_declaration_command] = STATE(1395), + [sym_unset_command] = STATE(1395), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -30842,586 +30936,184 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [746] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(1391), - [sym_file_descriptor] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_RPAREN] = ACTIONS(1347), - [anon_sym_SEMI_SEMI] = ACTIONS(1347), - [anon_sym_PIPE_AMP] = ACTIONS(1347), - [anon_sym_AMP_AMP] = ACTIONS(1347), - [anon_sym_PIPE_PIPE] = ACTIONS(1347), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(560), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(562), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_LF] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - }, - [747] = { - [anon_sym_RPAREN] = ACTIONS(2808), - [sym_comment] = ACTIONS(56), - }, - [748] = { - [sym_file_redirect] = STATE(737), - [sym_file_descriptor] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(1401), - [anon_sym_RPAREN] = ACTIONS(1401), - [anon_sym_SEMI_SEMI] = ACTIONS(1401), - [anon_sym_PIPE_AMP] = ACTIONS(1401), - [anon_sym_AMP_AMP] = ACTIONS(1401), - [anon_sym_PIPE_PIPE] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_GT] = ACTIONS(2812), - [anon_sym_AMP_GT_GT] = ACTIONS(2812), - [anon_sym_LT_AMP] = ACTIONS(2812), - [anon_sym_GT_AMP] = ACTIONS(2812), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1401), - }, [749] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(1395), - [sym_file_descriptor] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(1605), - [anon_sym_RPAREN] = ACTIONS(1605), - [anon_sym_SEMI_SEMI] = ACTIONS(1605), - [anon_sym_PIPE_AMP] = ACTIONS(1605), - [anon_sym_AMP_AMP] = ACTIONS(1605), - [anon_sym_PIPE_PIPE] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(560), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), + [aux_sym_while_statement_repeat1] = STATE(1397), + [sym_file_descriptor] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_RPAREN] = ACTIONS(1351), + [anon_sym_SEMI_SEMI] = ACTIONS(1351), + [anon_sym_PIPE_AMP] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1351), + [anon_sym_PIPE_PIPE] = ACTIONS(1351), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_AMP_GT] = ACTIONS(562), + [anon_sym_AMP_GT_GT] = ACTIONS(562), + [anon_sym_LT_AMP] = ACTIONS(562), + [anon_sym_GT_AMP] = ACTIONS(562), [anon_sym_LT_LT] = ACTIONS(360), [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(562), + [anon_sym_LT_LT_LT] = ACTIONS(564), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1605), - [anon_sym_LF] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_LF] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), }, [750] = { - [sym_concatenation] = STATE(869), - [sym_string] = STATE(1397), - [sym_array] = STATE(869), - [sym_simple_expansion] = STATE(1397), - [sym_string_expansion] = STATE(1397), - [sym_expansion] = STATE(1397), - [sym_command_substitution] = STATE(1397), - [sym_process_substitution] = STATE(1397), - [sym__empty_value] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1701), - [sym__special_characters] = ACTIONS(2814), - [anon_sym_DQUOTE] = ACTIONS(1433), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(2818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2822), - [anon_sym_BQUOTE] = ACTIONS(2824), - [anon_sym_LT_LPAREN] = ACTIONS(2826), - [anon_sym_GT_LPAREN] = ACTIONS(2826), + [anon_sym_RPAREN] = ACTIONS(2818), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2828), }, [751] = { - [sym_string] = STATE(1398), - [sym_simple_expansion] = STATE(1398), - [sym_string_expansion] = STATE(1398), - [sym_expansion] = STATE(1398), - [sym_command_substitution] = STATE(1398), - [sym_process_substitution] = STATE(1398), - [sym__special_characters] = ACTIONS(2830), - [anon_sym_DQUOTE] = ACTIONS(1433), - [anon_sym_DOLLAR] = ACTIONS(2816), - [sym_raw_string] = ACTIONS(2832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2820), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2822), - [anon_sym_BQUOTE] = ACTIONS(2824), - [anon_sym_LT_LPAREN] = ACTIONS(2826), - [anon_sym_GT_LPAREN] = ACTIONS(2826), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2830), + [sym_file_redirect] = STATE(740), + [sym_file_descriptor] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(1405), + [anon_sym_RPAREN] = ACTIONS(1405), + [anon_sym_SEMI_SEMI] = ACTIONS(1405), + [anon_sym_PIPE_AMP] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1405), + [anon_sym_PIPE_PIPE] = ACTIONS(1405), + [anon_sym_LT] = ACTIONS(2822), + [anon_sym_GT] = ACTIONS(2822), + [anon_sym_GT_GT] = ACTIONS(2822), + [anon_sym_AMP_GT] = ACTIONS(2822), + [anon_sym_AMP_GT_GT] = ACTIONS(2822), + [anon_sym_LT_AMP] = ACTIONS(2822), + [anon_sym_GT_AMP] = ACTIONS(2822), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_LF] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), }, [752] = { - [aux_sym_concatenation_repeat1] = STATE(1399), - [sym__concat] = ACTIONS(1429), - [sym_variable_name] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [sym__special_characters] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(790), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(1401), + [sym_file_descriptor] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_RPAREN] = ACTIONS(1609), + [anon_sym_SEMI_SEMI] = ACTIONS(1609), + [anon_sym_PIPE_AMP] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1609), + [anon_sym_PIPE_PIPE] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_AMP_GT] = ACTIONS(562), + [anon_sym_AMP_GT_GT] = ACTIONS(562), + [anon_sym_LT_AMP] = ACTIONS(562), + [anon_sym_GT_AMP] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(564), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(790), - [sym_word] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_LF] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1609), }, [753] = { - [sym__concat] = ACTIONS(792), - [sym_variable_name] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [sym__special_characters] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(794), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(794), - [sym_word] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), + [sym_concatenation] = STATE(872), + [sym_string] = STATE(1403), + [sym_array] = STATE(872), + [sym_simple_expansion] = STATE(1403), + [sym_string_expansion] = STATE(1403), + [sym_expansion] = STATE(1403), + [sym_command_substitution] = STATE(1403), + [sym_process_substitution] = STATE(1403), + [sym__empty_value] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1705), + [sym__special_characters] = ACTIONS(2824), + [anon_sym_DQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(2826), + [sym_raw_string] = ACTIONS(2828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), + [anon_sym_BQUOTE] = ACTIONS(2834), + [anon_sym_LT_LPAREN] = ACTIONS(2836), + [anon_sym_GT_LPAREN] = ACTIONS(2836), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2838), }, [754] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(2834), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [sym_string] = STATE(1404), + [sym_simple_expansion] = STATE(1404), + [sym_string_expansion] = STATE(1404), + [sym_expansion] = STATE(1404), + [sym_command_substitution] = STATE(1404), + [sym_process_substitution] = STATE(1404), + [sym__special_characters] = ACTIONS(2840), + [anon_sym_DQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(2826), + [sym_raw_string] = ACTIONS(2842), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2832), + [anon_sym_BQUOTE] = ACTIONS(2834), + [anon_sym_LT_LPAREN] = ACTIONS(2836), + [anon_sym_GT_LPAREN] = ACTIONS(2836), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2840), }, [755] = { - [sym__concat] = ACTIONS(824), - [sym_variable_name] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [sym__special_characters] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(826), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), + [aux_sym_concatenation_repeat1] = STATE(1405), + [sym__concat] = ACTIONS(1433), + [sym_variable_name] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(826), - [sym_word] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(792), + [sym_word] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), }, [756] = { - [sym__concat] = ACTIONS(828), - [sym_variable_name] = 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__special_characters] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(830), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym__concat] = ACTIONS(794), + [sym_variable_name] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [sym__special_characters] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(796), + [sym_raw_string] = ACTIONS(796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(796), + [anon_sym_GT_LPAREN] = ACTIONS(796), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(830), - [sym_word] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(796), + [sym_word] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), }, [757] = { - [sym__concat] = ACTIONS(832), - [sym_variable_name] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [sym__special_characters] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(834), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(834), - [sym_word] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - }, - [758] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(2836), - [sym_comment] = ACTIONS(56), - }, - [759] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1404), - [anon_sym_RBRACE] = ACTIONS(2838), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2840), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [760] = { - [sym_subscript] = STATE(1408), - [sym_variable_name] = ACTIONS(2842), - [anon_sym_DOLLAR] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2844), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_QMARK] = ACTIONS(2844), - [anon_sym_0] = ACTIONS(2848), - [anon_sym__] = ACTIONS(2848), - }, - [761] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1411), - [anon_sym_RBRACE] = ACTIONS(2850), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2852), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [762] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1414), - [anon_sym_RBRACE] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2856), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [763] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2858), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [764] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2858), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [765] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(2858), - [sym_comment] = ACTIONS(56), - }, - [766] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(2858), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [767] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2860), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [768] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2860), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [769] = { - [sym_variable_assignment] = STATE(107), - [sym_subscript] = STATE(282), - [sym_concatenation] = STATE(107), - [sym_string] = STATE(277), - [sym_simple_expansion] = STATE(277), - [sym_string_expansion] = STATE(277), - [sym_expansion] = STATE(277), - [sym_command_substitution] = STATE(277), - [sym_process_substitution] = STATE(277), - [aux_sym_declaration_command_repeat1] = STATE(769), - [sym_variable_name] = ACTIONS(2862), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_RPAREN] = ACTIONS(1754), - [anon_sym_SEMI_SEMI] = ACTIONS(1754), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(2865), - [anon_sym_DQUOTE] = ACTIONS(2868), - [anon_sym_DOLLAR] = ACTIONS(2871), - [sym_raw_string] = ACTIONS(2874), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2877), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2880), - [anon_sym_BQUOTE] = ACTIONS(2883), - [anon_sym_LT_LPAREN] = ACTIONS(2886), - [anon_sym_GT_LPAREN] = ACTIONS(2886), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1780), - [sym_word] = ACTIONS(2874), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1754), - }, - [770] = { - [sym_string] = STATE(1417), - [sym_simple_expansion] = STATE(1417), - [sym_string_expansion] = STATE(1417), - [sym_expansion] = STATE(1417), - [sym_command_substitution] = STATE(1417), - [sym_process_substitution] = STATE(1417), - [sym__special_characters] = ACTIONS(2889), - [anon_sym_DQUOTE] = ACTIONS(1457), - [anon_sym_DOLLAR] = ACTIONS(2891), - [sym_raw_string] = ACTIONS(2893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2895), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2897), - [anon_sym_BQUOTE] = ACTIONS(2899), - [anon_sym_LT_LPAREN] = ACTIONS(2901), - [anon_sym_GT_LPAREN] = ACTIONS(2901), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2889), - }, - [771] = { - [aux_sym_concatenation_repeat1] = STATE(1418), - [sym__concat] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [sym__special_characters] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(790), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(790), - [sym_word] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), - }, - [772] = { - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [sym__special_characters] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(794), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(794), - [sym_word] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), - }, - [773] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(2903), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(2844), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -31429,271 +31121,604 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [774] = { - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [sym__special_characters] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(826), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), + [758] = { + [sym__concat] = ACTIONS(826), + [sym_variable_name] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(828), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(826), - [sym_word] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(828), + [sym_word] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), + }, + [759] = { + [sym__concat] = ACTIONS(830), + [sym_variable_name] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_RPAREN] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [sym__special_characters] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(832), + [sym_word] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), + }, + [760] = { + [sym__concat] = ACTIONS(834), + [sym_variable_name] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [sym__special_characters] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [sym_raw_string] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LT_LPAREN] = ACTIONS(836), + [anon_sym_GT_LPAREN] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(836), + [sym_word] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), + }, + [761] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(2846), + [sym_comment] = ACTIONS(56), + }, + [762] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1410), + [anon_sym_RBRACE] = ACTIONS(2848), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2850), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [763] = { + [sym_subscript] = STATE(1414), + [sym_variable_name] = ACTIONS(2852), + [anon_sym_DOLLAR] = ACTIONS(2854), + [anon_sym_DASH] = ACTIONS(2854), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2854), + [anon_sym_AT] = ACTIONS(2854), + [anon_sym_QMARK] = ACTIONS(2854), + [anon_sym_0] = ACTIONS(2858), + [anon_sym__] = ACTIONS(2858), + }, + [764] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1417), + [anon_sym_RBRACE] = ACTIONS(2860), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2862), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [765] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1420), + [anon_sym_RBRACE] = ACTIONS(2864), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2866), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [766] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2868), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [767] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2868), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [768] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(2868), + [sym_comment] = ACTIONS(56), + }, + [769] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(2868), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [770] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2870), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [771] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2870), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [772] = { + [sym_variable_assignment] = STATE(107), + [sym_subscript] = STATE(283), + [sym_concatenation] = STATE(107), + [sym_string] = STATE(278), + [sym_simple_expansion] = STATE(278), + [sym_string_expansion] = STATE(278), + [sym_expansion] = STATE(278), + [sym_command_substitution] = STATE(278), + [sym_process_substitution] = STATE(278), + [aux_sym_declaration_command_repeat1] = STATE(772), + [sym_variable_name] = ACTIONS(2872), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_RPAREN] = ACTIONS(1758), + [anon_sym_SEMI_SEMI] = ACTIONS(1758), + [anon_sym_PIPE_AMP] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(1758), + [anon_sym_PIPE_PIPE] = ACTIONS(1758), + [sym__special_characters] = ACTIONS(2875), + [anon_sym_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2881), + [sym_raw_string] = ACTIONS(2884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2887), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2890), + [anon_sym_BQUOTE] = ACTIONS(2893), + [anon_sym_LT_LPAREN] = ACTIONS(2896), + [anon_sym_GT_LPAREN] = ACTIONS(2896), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1784), + [sym_word] = ACTIONS(2884), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_LF] = ACTIONS(1758), + [anon_sym_AMP] = ACTIONS(1758), + }, + [773] = { + [sym_string] = STATE(1423), + [sym_simple_expansion] = STATE(1423), + [sym_string_expansion] = STATE(1423), + [sym_expansion] = STATE(1423), + [sym_command_substitution] = STATE(1423), + [sym_process_substitution] = STATE(1423), + [sym__special_characters] = ACTIONS(2899), + [anon_sym_DQUOTE] = ACTIONS(1461), + [anon_sym_DOLLAR] = ACTIONS(2901), + [sym_raw_string] = ACTIONS(2903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2905), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2907), + [anon_sym_BQUOTE] = ACTIONS(2909), + [anon_sym_LT_LPAREN] = ACTIONS(2911), + [anon_sym_GT_LPAREN] = ACTIONS(2911), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2899), + }, + [774] = { + [aux_sym_concatenation_repeat1] = STATE(1424), + [sym__concat] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(792), + [sym_word] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), }, [775] = { - [sym__concat] = ACTIONS(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__special_characters] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(830), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [sym__special_characters] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(796), + [sym_raw_string] = ACTIONS(796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(796), + [anon_sym_GT_LPAREN] = ACTIONS(796), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(830), - [sym_word] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(796), + [sym_word] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), }, [776] = { - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [sym__special_characters] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(834), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(2913), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(834), - [sym_word] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), }, [777] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(2905), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(828), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(828), + [sym_word] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), }, [778] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1423), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2909), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_RPAREN] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [sym__special_characters] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(832), + [sym_word] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), }, [779] = { - [sym_subscript] = STATE(1427), - [sym_variable_name] = ACTIONS(2911), - [anon_sym_DOLLAR] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_AT] = ACTIONS(2913), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_0] = ACTIONS(2917), - [anon_sym__] = ACTIONS(2917), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [sym__special_characters] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [sym_raw_string] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LT_LPAREN] = ACTIONS(836), + [anon_sym_GT_LPAREN] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(836), + [sym_word] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), }, [780] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1430), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2921), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(2915), + [sym_comment] = ACTIONS(56), }, [781] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1433), - [anon_sym_RBRACE] = ACTIONS(2923), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2925), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1429), + [anon_sym_RBRACE] = ACTIONS(2917), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2919), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [782] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2927), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [sym_subscript] = STATE(1433), + [sym_variable_name] = ACTIONS(2921), + [anon_sym_DOLLAR] = ACTIONS(2923), + [anon_sym_DASH] = ACTIONS(2923), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_AT] = ACTIONS(2923), + [anon_sym_QMARK] = ACTIONS(2923), + [anon_sym_0] = ACTIONS(2927), + [anon_sym__] = ACTIONS(2927), }, [783] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2927), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1436), + [anon_sym_RBRACE] = ACTIONS(2929), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2931), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [784] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(2927), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1439), + [anon_sym_RBRACE] = ACTIONS(2933), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2935), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [785] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(2927), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2937), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [786] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2929), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [787] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(2929), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2937), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -31713,580 +31738,649 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, + [787] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(2937), + [sym_comment] = ACTIONS(56), + }, [788] = { - [sym_concatenation] = STATE(119), - [sym_string] = STATE(287), - [sym_simple_expansion] = STATE(287), - [sym_string_expansion] = STATE(287), - [sym_expansion] = STATE(287), - [sym_command_substitution] = STATE(287), - [sym_process_substitution] = STATE(287), - [aux_sym_unset_command_repeat1] = STATE(788), - [anon_sym_PIPE] = ACTIONS(1825), - [anon_sym_RPAREN] = ACTIONS(1825), - [anon_sym_SEMI_SEMI] = ACTIONS(1825), - [anon_sym_PIPE_AMP] = ACTIONS(1825), - [anon_sym_AMP_AMP] = ACTIONS(1825), - [anon_sym_PIPE_PIPE] = ACTIONS(1825), - [sym__special_characters] = ACTIONS(2931), - [anon_sym_DQUOTE] = ACTIONS(2934), - [anon_sym_DOLLAR] = ACTIONS(2937), - [sym_raw_string] = ACTIONS(2940), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2943), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2946), - [anon_sym_BQUOTE] = ACTIONS(2949), - [anon_sym_LT_LPAREN] = ACTIONS(2952), - [anon_sym_GT_LPAREN] = ACTIONS(2952), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1851), - [sym_word] = ACTIONS(2940), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1825), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(2937), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [789] = { - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_EQ_TILDE] = ACTIONS(1888), - [anon_sym_EQ_EQ] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1888), - [anon_sym_LT_LT_LT] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2939), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), }, [790] = { - [aux_sym_concatenation_repeat1] = STATE(790), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(2955), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_EQ_TILDE] = ACTIONS(1888), - [anon_sym_EQ_EQ] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1888), - [anon_sym_LT_LT_LT] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(2939), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [791] = { - [sym_file_descriptor] = ACTIONS(1923), - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [anon_sym_EQ_TILDE] = ACTIONS(1925), - [anon_sym_EQ_EQ] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1925), - [anon_sym_GT_GT] = ACTIONS(1925), - [anon_sym_AMP_GT] = ACTIONS(1925), - [anon_sym_AMP_GT_GT] = ACTIONS(1925), - [anon_sym_LT_AMP] = ACTIONS(1925), - [anon_sym_GT_AMP] = ACTIONS(1925), - [anon_sym_LT_LT] = ACTIONS(1925), - [anon_sym_LT_LT_DASH] = ACTIONS(1925), - [anon_sym_LT_LT_LT] = ACTIONS(1925), - [sym__special_characters] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [sym_raw_string] = ACTIONS(1925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), - [anon_sym_BQUOTE] = ACTIONS(1925), - [anon_sym_LT_LPAREN] = ACTIONS(1925), - [anon_sym_GT_LPAREN] = ACTIONS(1925), + [sym_concatenation] = STATE(119), + [sym_string] = STATE(288), + [sym_simple_expansion] = STATE(288), + [sym_string_expansion] = STATE(288), + [sym_expansion] = STATE(288), + [sym_command_substitution] = STATE(288), + [sym_process_substitution] = STATE(288), + [aux_sym_unset_command_repeat1] = STATE(791), + [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(1829), + [anon_sym_SEMI_SEMI] = ACTIONS(1829), + [anon_sym_PIPE_AMP] = ACTIONS(1829), + [anon_sym_AMP_AMP] = ACTIONS(1829), + [anon_sym_PIPE_PIPE] = ACTIONS(1829), + [sym__special_characters] = ACTIONS(2941), + [anon_sym_DQUOTE] = ACTIONS(2944), + [anon_sym_DOLLAR] = ACTIONS(2947), + [sym_raw_string] = ACTIONS(2950), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2953), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2956), + [anon_sym_BQUOTE] = ACTIONS(2959), + [anon_sym_LT_LPAREN] = ACTIONS(2962), + [anon_sym_GT_LPAREN] = ACTIONS(2962), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1855), + [sym_word] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(1829), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), }, [792] = { - [sym_concatenation] = STATE(1439), - [sym_string] = STATE(1438), - [sym_simple_expansion] = STATE(1438), - [sym_string_expansion] = STATE(1438), - [sym_expansion] = STATE(1438), - [sym_command_substitution] = STATE(1438), - [sym_process_substitution] = STATE(1438), - [anon_sym_RBRACE] = ACTIONS(2958), - [sym__special_characters] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(2962), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2964), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_EQ_TILDE] = ACTIONS(1892), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1892), + [anon_sym_LT_LT_LT] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [793] = { - [sym_file_descriptor] = ACTIONS(1968), - [sym__concat] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_RPAREN] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [anon_sym_EQ_TILDE] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_AMP_GT] = ACTIONS(1970), - [anon_sym_AMP_GT_GT] = ACTIONS(1970), - [anon_sym_LT_AMP] = ACTIONS(1970), - [anon_sym_GT_AMP] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_LT_LT_DASH] = ACTIONS(1970), - [anon_sym_LT_LT_LT] = ACTIONS(1970), - [sym__special_characters] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [sym_raw_string] = ACTIONS(1970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [anon_sym_GT_LPAREN] = ACTIONS(1970), + [aux_sym_concatenation_repeat1] = STATE(793), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(2965), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_EQ_TILDE] = ACTIONS(1892), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1892), + [anon_sym_LT_LT_LT] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [794] = { + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [anon_sym_EQ_TILDE] = ACTIONS(1929), + [anon_sym_EQ_EQ] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1929), + [anon_sym_AMP_GT] = ACTIONS(1929), + [anon_sym_AMP_GT_GT] = ACTIONS(1929), + [anon_sym_LT_AMP] = ACTIONS(1929), + [anon_sym_GT_AMP] = ACTIONS(1929), + [anon_sym_LT_LT] = ACTIONS(1929), + [anon_sym_LT_LT_DASH] = ACTIONS(1929), + [anon_sym_LT_LT_LT] = ACTIONS(1929), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), + [anon_sym_BQUOTE] = ACTIONS(1929), + [anon_sym_LT_LPAREN] = ACTIONS(1929), + [anon_sym_GT_LPAREN] = ACTIONS(1929), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2966), + [sym_word] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), }, [795] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [sym_concatenation] = STATE(1445), + [sym_string] = STATE(1444), + [sym_simple_expansion] = STATE(1444), + [sym_string_expansion] = STATE(1444), + [sym_expansion] = STATE(1444), + [sym_command_substitution] = STATE(1444), + [sym_process_substitution] = STATE(1444), [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__special_characters] = ACTIONS(2970), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(2972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2974), }, [796] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(2970), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(1972), + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_RPAREN] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [anon_sym_EQ_TILDE] = ACTIONS(1974), + [anon_sym_EQ_EQ] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_GT] = ACTIONS(1974), + [anon_sym_GT_GT] = ACTIONS(1974), + [anon_sym_AMP_GT] = ACTIONS(1974), + [anon_sym_AMP_GT_GT] = ACTIONS(1974), + [anon_sym_LT_AMP] = ACTIONS(1974), + [anon_sym_GT_AMP] = ACTIONS(1974), + [anon_sym_LT_LT] = ACTIONS(1974), + [anon_sym_LT_LT_DASH] = ACTIONS(1974), + [anon_sym_LT_LT_LT] = ACTIONS(1974), + [sym__special_characters] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1974), + [sym_raw_string] = ACTIONS(1974), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [anon_sym_BQUOTE] = ACTIONS(1974), + [anon_sym_LT_LPAREN] = ACTIONS(1974), + [anon_sym_GT_LPAREN] = ACTIONS(1974), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), }, [797] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1445), - [anon_sym_RBRACE] = ACTIONS(2972), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2974), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(2976), }, [798] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1448), - [anon_sym_RBRACE] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2978), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(2978), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [799] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1450), - [anon_sym_RBRACE] = ACTIONS(2958), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(2980), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(2980), + [sym_comment] = ACTIONS(56), }, [800] = { - [sym_file_descriptor] = ACTIONS(2022), - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [anon_sym_EQ_TILDE] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym_AMP_GT] = ACTIONS(2024), - [anon_sym_AMP_GT_GT] = ACTIONS(2024), - [anon_sym_LT_AMP] = ACTIONS(2024), - [anon_sym_GT_AMP] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_LT_LT_DASH] = ACTIONS(2024), - [anon_sym_LT_LT_LT] = ACTIONS(2024), - [sym__special_characters] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_DOLLAR] = ACTIONS(2024), - [sym_raw_string] = ACTIONS(2024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2024), - [anon_sym_LT_LPAREN] = ACTIONS(2024), - [anon_sym_GT_LPAREN] = ACTIONS(2024), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1451), + [anon_sym_RBRACE] = ACTIONS(2982), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2984), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), + [sym_word] = ACTIONS(866), }, [801] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1454), + [anon_sym_RBRACE] = ACTIONS(2986), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2988), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2982), + [sym_word] = ACTIONS(866), }, [802] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1456), + [anon_sym_RBRACE] = ACTIONS(2968), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(2990), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [803] = { - [sym_file_descriptor] = ACTIONS(2030), - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_RPAREN] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [anon_sym_EQ_TILDE] = ACTIONS(2032), - [anon_sym_EQ_EQ] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2032), - [anon_sym_GT] = ACTIONS(2032), - [anon_sym_GT_GT] = ACTIONS(2032), - [anon_sym_AMP_GT] = ACTIONS(2032), - [anon_sym_AMP_GT_GT] = ACTIONS(2032), - [anon_sym_LT_AMP] = ACTIONS(2032), - [anon_sym_GT_AMP] = ACTIONS(2032), - [anon_sym_LT_LT] = ACTIONS(2032), - [anon_sym_LT_LT_DASH] = ACTIONS(2032), - [anon_sym_LT_LT_LT] = ACTIONS(2032), - [sym__special_characters] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2032), - [sym_raw_string] = ACTIONS(2032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), - [anon_sym_BQUOTE] = ACTIONS(2032), - [anon_sym_LT_LPAREN] = ACTIONS(2032), - [anon_sym_GT_LPAREN] = ACTIONS(2032), + [sym_file_descriptor] = ACTIONS(2026), + [sym__concat] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [anon_sym_EQ_TILDE] = ACTIONS(2028), + [anon_sym_EQ_EQ] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_GT_GT] = ACTIONS(2028), + [anon_sym_AMP_GT] = ACTIONS(2028), + [anon_sym_AMP_GT_GT] = ACTIONS(2028), + [anon_sym_LT_AMP] = ACTIONS(2028), + [anon_sym_GT_AMP] = ACTIONS(2028), + [anon_sym_LT_LT] = ACTIONS(2028), + [anon_sym_LT_LT_DASH] = ACTIONS(2028), + [anon_sym_LT_LT_LT] = ACTIONS(2028), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym_raw_string] = ACTIONS(2028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(2028), + [anon_sym_LT_LPAREN] = ACTIONS(2028), + [anon_sym_GT_LPAREN] = ACTIONS(2028), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), + [sym_word] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), }, [804] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(2986), + [sym_regex_without_right_brace] = ACTIONS(2992), }, [805] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(2958), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(2994), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [806] = { - [sym_file_descriptor] = ACTIONS(2190), - [sym__concat] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_RPAREN] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_AMP_GT] = ACTIONS(2192), - [anon_sym_AMP_GT_GT] = ACTIONS(2192), - [anon_sym_LT_AMP] = ACTIONS(2192), - [anon_sym_GT_AMP] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_LT_LT_DASH] = ACTIONS(2192), - [anon_sym_LT_LT_LT] = ACTIONS(2192), - [sym__special_characters] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [sym_raw_string] = ACTIONS(2192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), - [anon_sym_BQUOTE] = ACTIONS(2192), - [anon_sym_LT_LPAREN] = ACTIONS(2192), - [anon_sym_GT_LPAREN] = ACTIONS(2192), + [sym_file_descriptor] = ACTIONS(2034), + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [anon_sym_EQ_TILDE] = ACTIONS(2036), + [anon_sym_EQ_EQ] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_GT] = ACTIONS(2036), + [anon_sym_GT_GT] = ACTIONS(2036), + [anon_sym_AMP_GT] = ACTIONS(2036), + [anon_sym_AMP_GT_GT] = ACTIONS(2036), + [anon_sym_LT_AMP] = ACTIONS(2036), + [anon_sym_GT_AMP] = ACTIONS(2036), + [anon_sym_LT_LT] = ACTIONS(2036), + [anon_sym_LT_LT_DASH] = ACTIONS(2036), + [anon_sym_LT_LT_LT] = ACTIONS(2036), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [anon_sym_LT_LPAREN] = ACTIONS(2036), + [anon_sym_GT_LPAREN] = ACTIONS(2036), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), + [sym_word] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), }, [807] = { - [sym_file_descriptor] = ACTIONS(2396), - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_RPAREN] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_EQ_TILDE] = ACTIONS(2398), - [anon_sym_EQ_EQ] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_GT] = ACTIONS(2398), - [anon_sym_GT_GT] = ACTIONS(2398), - [anon_sym_AMP_GT] = ACTIONS(2398), - [anon_sym_AMP_GT_GT] = ACTIONS(2398), - [anon_sym_LT_AMP] = ACTIONS(2398), - [anon_sym_GT_AMP] = ACTIONS(2398), - [anon_sym_LT_LT] = ACTIONS(2398), - [anon_sym_LT_LT_DASH] = ACTIONS(2398), - [anon_sym_LT_LT_LT] = ACTIONS(2398), - [sym__special_characters] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), - [anon_sym_BQUOTE] = ACTIONS(2398), - [anon_sym_LT_LPAREN] = ACTIONS(2398), - [anon_sym_GT_LPAREN] = ACTIONS(2398), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), + [sym_regex_without_right_brace] = ACTIONS(2996), }, [808] = { - [sym_compound_statement] = STATE(1454), - [anon_sym_LBRACE] = ACTIONS(484), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(2968), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [809] = { - [anon_sym_esac] = ACTIONS(2988), - [anon_sym_PIPE] = ACTIONS(2988), - [anon_sym_RPAREN] = ACTIONS(2988), - [anon_sym_SEMI_SEMI] = ACTIONS(2988), - [anon_sym_PIPE_AMP] = ACTIONS(2988), - [anon_sym_AMP_AMP] = ACTIONS(2988), - [anon_sym_PIPE_PIPE] = ACTIONS(2988), + [sym_file_descriptor] = ACTIONS(2196), + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [anon_sym_EQ_TILDE] = ACTIONS(2198), + [anon_sym_EQ_EQ] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_GT] = ACTIONS(2198), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_AMP_GT] = ACTIONS(2198), + [anon_sym_AMP_GT_GT] = ACTIONS(2198), + [anon_sym_LT_AMP] = ACTIONS(2198), + [anon_sym_GT_AMP] = ACTIONS(2198), + [anon_sym_LT_LT] = ACTIONS(2198), + [anon_sym_LT_LT_DASH] = ACTIONS(2198), + [anon_sym_LT_LT_LT] = ACTIONS(2198), + [sym__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2988), - [anon_sym_LF] = ACTIONS(2988), - [anon_sym_AMP] = ACTIONS(2988), + [sym_word] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), }, [810] = { - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(2402), - [anon_sym_SEMI_SEMI] = ACTIONS(2402), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [sym_file_descriptor] = ACTIONS(2402), + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_RPAREN] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_EQ_TILDE] = ACTIONS(2404), + [anon_sym_EQ_EQ] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_AMP_GT] = ACTIONS(2404), + [anon_sym_AMP_GT_GT] = ACTIONS(2404), + [anon_sym_LT_AMP] = ACTIONS(2404), + [anon_sym_GT_AMP] = ACTIONS(2404), + [anon_sym_LT_LT] = ACTIONS(2404), + [anon_sym_LT_LT_DASH] = ACTIONS(2404), + [anon_sym_LT_LT_LT] = ACTIONS(2404), + [sym__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(2404), + [sym_raw_string] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2404), + [anon_sym_LT_LPAREN] = ACTIONS(2404), + [anon_sym_GT_LPAREN] = ACTIONS(2404), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_LF] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), + [sym_word] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), }, [811] = { + [sym_compound_statement] = STATE(1460), + [anon_sym_LBRACE] = ACTIONS(486), + [sym_comment] = ACTIONS(56), + }, + [812] = { + [anon_sym_esac] = ACTIONS(2998), + [anon_sym_PIPE] = ACTIONS(2998), + [anon_sym_RPAREN] = ACTIONS(2998), + [anon_sym_SEMI_SEMI] = ACTIONS(2998), + [anon_sym_PIPE_AMP] = ACTIONS(2998), + [anon_sym_AMP_AMP] = ACTIONS(2998), + [anon_sym_PIPE_PIPE] = ACTIONS(2998), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2998), + [anon_sym_LF] = ACTIONS(2998), + [anon_sym_AMP] = ACTIONS(2998), + }, + [813] = { + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_RPAREN] = ACTIONS(2408), + [anon_sym_SEMI_SEMI] = ACTIONS(2408), + [anon_sym_PIPE_AMP] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(2408), + [anon_sym_PIPE_PIPE] = ACTIONS(2408), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2408), + [anon_sym_LF] = ACTIONS(2408), + [anon_sym_AMP] = ACTIONS(2408), + }, + [814] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(2402), - [anon_sym_SEMI_SEMI] = ACTIONS(2402), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_RPAREN] = ACTIONS(2408), + [anon_sym_SEMI_SEMI] = ACTIONS(2408), + [anon_sym_PIPE_AMP] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(2408), + [anon_sym_PIPE_PIPE] = ACTIONS(2408), [anon_sym_LT] = ACTIONS(382), [anon_sym_GT] = ACTIONS(382), [anon_sym_GT_GT] = ACTIONS(382), @@ -32305,135 +32399,135 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_LF] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - }, - [812] = { - [sym_concatenation] = STATE(1199), - [sym_string] = STATE(1456), - [sym_simple_expansion] = STATE(1456), - [sym_string_expansion] = STATE(1456), - [sym_expansion] = STATE(1456), - [sym_command_substitution] = STATE(1456), - [sym_process_substitution] = STATE(1456), - [sym__special_characters] = ACTIONS(2990), - [anon_sym_DQUOTE] = ACTIONS(1525), - [anon_sym_DOLLAR] = ACTIONS(1527), - [sym_raw_string] = ACTIONS(2992), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1531), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1533), - [anon_sym_BQUOTE] = ACTIONS(1535), - [anon_sym_LT_LPAREN] = ACTIONS(1537), - [anon_sym_GT_LPAREN] = ACTIONS(1537), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2994), - }, - [813] = { - [aux_sym_concatenation_repeat1] = STATE(294), - [sym_file_descriptor] = ACTIONS(1553), - [sym__concat] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(1555), - [anon_sym_RPAREN] = ACTIONS(1555), - [anon_sym_SEMI_SEMI] = ACTIONS(1555), - [anon_sym_PIPE_AMP] = ACTIONS(1555), - [anon_sym_AMP_AMP] = ACTIONS(1555), - [anon_sym_PIPE_PIPE] = ACTIONS(1555), - [anon_sym_EQ_TILDE] = ACTIONS(1555), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_GT] = ACTIONS(1555), - [anon_sym_GT_GT] = ACTIONS(1555), - [anon_sym_AMP_GT] = ACTIONS(1555), - [anon_sym_AMP_GT_GT] = ACTIONS(1555), - [anon_sym_LT_AMP] = ACTIONS(1555), - [anon_sym_GT_AMP] = ACTIONS(1555), - [anon_sym_LT_LT] = ACTIONS(1555), - [anon_sym_LT_LT_DASH] = ACTIONS(1555), - [anon_sym_LT_LT_LT] = ACTIONS(1555), - [sym__special_characters] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1555), - [anon_sym_DOLLAR] = ACTIONS(1555), - [sym_raw_string] = ACTIONS(1555), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1555), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1555), - [anon_sym_BQUOTE] = ACTIONS(1555), - [anon_sym_LT_LPAREN] = ACTIONS(1555), - [anon_sym_GT_LPAREN] = ACTIONS(1555), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_LF] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1555), - }, - [814] = { - [aux_sym_concatenation_repeat1] = STATE(294), - [sym_file_descriptor] = ACTIONS(1559), - [sym__concat] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_RPAREN] = ACTIONS(1561), - [anon_sym_SEMI_SEMI] = ACTIONS(1561), - [anon_sym_PIPE_AMP] = ACTIONS(1561), - [anon_sym_AMP_AMP] = ACTIONS(1561), - [anon_sym_PIPE_PIPE] = ACTIONS(1561), - [anon_sym_EQ_TILDE] = ACTIONS(1561), - [anon_sym_EQ_EQ] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1561), - [anon_sym_AMP_GT] = ACTIONS(1561), - [anon_sym_AMP_GT_GT] = ACTIONS(1561), - [anon_sym_LT_AMP] = ACTIONS(1561), - [anon_sym_GT_AMP] = ACTIONS(1561), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_LT_LT_DASH] = ACTIONS(1561), - [anon_sym_LT_LT_LT] = ACTIONS(1561), - [sym__special_characters] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1561), - [sym_raw_string] = ACTIONS(1561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1561), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1561), - [anon_sym_BQUOTE] = ACTIONS(1561), - [anon_sym_LT_LPAREN] = ACTIONS(1561), - [anon_sym_GT_LPAREN] = ACTIONS(1561), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_LF] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(2408), + [anon_sym_LF] = ACTIONS(2408), + [anon_sym_AMP] = ACTIONS(2408), }, [815] = { - [aux_sym_concatenation_repeat1] = STATE(1458), - [sym_file_descriptor] = ACTIONS(754), - [sym__concat] = ACTIONS(2996), - [anon_sym_PIPE] = ACTIONS(2412), - [anon_sym_RPAREN] = ACTIONS(2412), - [anon_sym_SEMI_SEMI] = ACTIONS(2412), - [anon_sym_PIPE_AMP] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_LT] = ACTIONS(2412), - [anon_sym_GT] = ACTIONS(2412), - [anon_sym_GT_GT] = ACTIONS(2412), - [anon_sym_AMP_GT] = ACTIONS(2412), - [anon_sym_AMP_GT_GT] = ACTIONS(2412), - [anon_sym_LT_AMP] = ACTIONS(2412), - [anon_sym_GT_AMP] = ACTIONS(2412), - [anon_sym_LT_LT] = ACTIONS(2412), - [anon_sym_LT_LT_DASH] = ACTIONS(2412), - [anon_sym_LT_LT_LT] = ACTIONS(2412), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_LF] = ACTIONS(2412), - [anon_sym_AMP] = ACTIONS(2412), + [sym_concatenation] = STATE(1203), + [sym_string] = STATE(1462), + [sym_simple_expansion] = STATE(1462), + [sym_string_expansion] = STATE(1462), + [sym_expansion] = STATE(1462), + [sym_command_substitution] = STATE(1462), + [sym_process_substitution] = STATE(1462), + [sym__special_characters] = ACTIONS(3000), + [anon_sym_DQUOTE] = ACTIONS(1529), + [anon_sym_DOLLAR] = ACTIONS(1531), + [sym_raw_string] = ACTIONS(3002), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1535), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1537), + [anon_sym_BQUOTE] = ACTIONS(1539), + [anon_sym_LT_LPAREN] = ACTIONS(1541), + [anon_sym_GT_LPAREN] = ACTIONS(1541), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3004), }, [816] = { + [aux_sym_concatenation_repeat1] = STATE(295), + [sym_file_descriptor] = ACTIONS(1557), + [sym__concat] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_RPAREN] = ACTIONS(1559), + [anon_sym_SEMI_SEMI] = ACTIONS(1559), + [anon_sym_PIPE_AMP] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_EQ_TILDE] = ACTIONS(1559), + [anon_sym_EQ_EQ] = ACTIONS(1559), + [anon_sym_LT] = ACTIONS(1559), + [anon_sym_GT] = ACTIONS(1559), + [anon_sym_GT_GT] = ACTIONS(1559), + [anon_sym_AMP_GT] = ACTIONS(1559), + [anon_sym_AMP_GT_GT] = ACTIONS(1559), + [anon_sym_LT_AMP] = ACTIONS(1559), + [anon_sym_GT_AMP] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1559), + [anon_sym_LT_LT_DASH] = ACTIONS(1559), + [anon_sym_LT_LT_LT] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_DOLLAR] = ACTIONS(1559), + [sym_raw_string] = ACTIONS(1559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [anon_sym_LT_LPAREN] = ACTIONS(1559), + [anon_sym_GT_LPAREN] = ACTIONS(1559), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1559), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_LF] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + }, + [817] = { + [aux_sym_concatenation_repeat1] = STATE(295), + [sym_file_descriptor] = ACTIONS(1563), + [sym__concat] = ACTIONS(526), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1565), + [anon_sym_SEMI_SEMI] = ACTIONS(1565), + [anon_sym_PIPE_AMP] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1565), + [anon_sym_EQ_TILDE] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1565), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_AMP_GT] = ACTIONS(1565), + [anon_sym_AMP_GT_GT] = ACTIONS(1565), + [anon_sym_LT_AMP] = ACTIONS(1565), + [anon_sym_GT_AMP] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT_LT_DASH] = ACTIONS(1565), + [anon_sym_LT_LT_LT] = ACTIONS(1565), + [sym__special_characters] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1565), + [sym_raw_string] = ACTIONS(1565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1565), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1565), + [anon_sym_BQUOTE] = ACTIONS(1565), + [anon_sym_LT_LPAREN] = ACTIONS(1565), + [anon_sym_GT_LPAREN] = ACTIONS(1565), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1565), + [anon_sym_LF] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + }, + [818] = { + [aux_sym_concatenation_repeat1] = STATE(1464), + [sym_file_descriptor] = ACTIONS(756), + [sym__concat] = ACTIONS(3006), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_RPAREN] = ACTIONS(2418), + [anon_sym_SEMI_SEMI] = ACTIONS(2418), + [anon_sym_PIPE_AMP] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_GT] = ACTIONS(2418), + [anon_sym_AMP_GT] = ACTIONS(2418), + [anon_sym_AMP_GT_GT] = ACTIONS(2418), + [anon_sym_LT_AMP] = ACTIONS(2418), + [anon_sym_GT_AMP] = ACTIONS(2418), + [anon_sym_LT_LT] = ACTIONS(2418), + [anon_sym_LT_LT_DASH] = ACTIONS(2418), + [anon_sym_LT_LT_LT] = ACTIONS(2418), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LF] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + }, + [819] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1460), - [anon_sym_DQUOTE] = ACTIONS(2998), + [aux_sym_string_repeat1] = STATE(1466), + [anon_sym_DQUOTE] = ACTIONS(3008), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -32441,51 +32535,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [817] = { - [sym_string] = STATE(1462), - [anon_sym_DQUOTE] = ACTIONS(1525), - [anon_sym_DOLLAR] = ACTIONS(3000), - [sym_raw_string] = ACTIONS(3002), - [anon_sym_POUND] = ACTIONS(3000), - [anon_sym_DASH] = ACTIONS(3000), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3004), - [anon_sym_STAR] = ACTIONS(3000), - [anon_sym_AT] = ACTIONS(3000), - [anon_sym_QMARK] = ACTIONS(3000), - [anon_sym_0] = ACTIONS(3006), - [anon_sym__] = ACTIONS(3006), - }, - [818] = { - [aux_sym_concatenation_repeat1] = STATE(1458), - [sym_file_descriptor] = ACTIONS(770), - [sym__concat] = ACTIONS(2996), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_RPAREN] = ACTIONS(2424), - [anon_sym_SEMI_SEMI] = ACTIONS(2424), - [anon_sym_PIPE_AMP] = ACTIONS(2424), - [anon_sym_AMP_AMP] = ACTIONS(2424), - [anon_sym_PIPE_PIPE] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2424), - [anon_sym_GT_GT] = ACTIONS(2424), - [anon_sym_AMP_GT] = ACTIONS(2424), - [anon_sym_AMP_GT_GT] = ACTIONS(2424), - [anon_sym_LT_AMP] = ACTIONS(2424), - [anon_sym_GT_AMP] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2424), - [anon_sym_LT_LT_DASH] = ACTIONS(2424), - [anon_sym_LT_LT_LT] = ACTIONS(2424), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_LF] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2424), - }, - [819] = { - [sym_subscript] = STATE(1468), - [sym_variable_name] = ACTIONS(3008), + [820] = { + [sym_string] = STATE(1468), + [anon_sym_DQUOTE] = ACTIONS(1529), [anon_sym_DOLLAR] = ACTIONS(3010), - [anon_sym_POUND] = ACTIONS(3012), + [sym_raw_string] = ACTIONS(3012), + [anon_sym_POUND] = ACTIONS(3010), [anon_sym_DASH] = ACTIONS(3010), [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3014), @@ -32495,21 +32550,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(3016), [anon_sym__] = ACTIONS(3016), }, - [820] = { - [sym_for_statement] = STATE(1469), - [sym_while_statement] = STATE(1469), - [sym_if_statement] = STATE(1469), - [sym_case_statement] = STATE(1469), - [sym_function_definition] = STATE(1469), - [sym_subshell] = STATE(1469), - [sym_pipeline] = STATE(1469), - [sym_list] = STATE(1469), - [sym_command] = STATE(1469), + [821] = { + [aux_sym_concatenation_repeat1] = STATE(1464), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(3006), + [anon_sym_PIPE] = ACTIONS(2430), + [anon_sym_RPAREN] = ACTIONS(2430), + [anon_sym_SEMI_SEMI] = ACTIONS(2430), + [anon_sym_PIPE_AMP] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_PIPE_PIPE] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_GT] = ACTIONS(2430), + [anon_sym_GT_GT] = ACTIONS(2430), + [anon_sym_AMP_GT] = ACTIONS(2430), + [anon_sym_AMP_GT_GT] = ACTIONS(2430), + [anon_sym_LT_AMP] = ACTIONS(2430), + [anon_sym_GT_AMP] = ACTIONS(2430), + [anon_sym_LT_LT] = ACTIONS(2430), + [anon_sym_LT_LT_DASH] = ACTIONS(2430), + [anon_sym_LT_LT_LT] = ACTIONS(2430), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_LF] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + }, + [822] = { + [sym_subscript] = STATE(1474), + [sym_variable_name] = ACTIONS(3018), + [anon_sym_DOLLAR] = ACTIONS(3020), + [anon_sym_POUND] = ACTIONS(3022), + [anon_sym_DASH] = ACTIONS(3020), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3024), + [anon_sym_STAR] = ACTIONS(3020), + [anon_sym_AT] = ACTIONS(3020), + [anon_sym_QMARK] = ACTIONS(3020), + [anon_sym_0] = ACTIONS(3026), + [anon_sym__] = ACTIONS(3026), + }, + [823] = { + [sym_for_statement] = STATE(1475), + [sym_while_statement] = STATE(1475), + [sym_if_statement] = STATE(1475), + [sym_case_statement] = STATE(1475), + [sym_function_definition] = STATE(1475), + [sym_subshell] = STATE(1475), + [sym_pipeline] = STATE(1475), + [sym_list] = STATE(1475), + [sym_command] = STATE(1475), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1469), - [sym_variable_assignment] = STATE(1470), - [sym_declaration_command] = STATE(1469), - [sym_unset_command] = STATE(1469), + [sym_bracket_command] = STATE(1475), + [sym_variable_assignment] = STATE(1476), + [sym_declaration_command] = STATE(1475), + [sym_unset_command] = STATE(1475), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -32556,21 +32650,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [821] = { - [sym_for_statement] = STATE(1471), - [sym_while_statement] = STATE(1471), - [sym_if_statement] = STATE(1471), - [sym_case_statement] = STATE(1471), - [sym_function_definition] = STATE(1471), - [sym_subshell] = STATE(1471), - [sym_pipeline] = STATE(1471), - [sym_list] = STATE(1471), - [sym_command] = STATE(1471), + [824] = { + [sym_for_statement] = STATE(1477), + [sym_while_statement] = STATE(1477), + [sym_if_statement] = STATE(1477), + [sym_case_statement] = STATE(1477), + [sym_function_definition] = STATE(1477), + [sym_subshell] = STATE(1477), + [sym_pipeline] = STATE(1477), + [sym_list] = STATE(1477), + [sym_command] = STATE(1477), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1471), - [sym_variable_assignment] = STATE(1472), - [sym_declaration_command] = STATE(1471), - [sym_unset_command] = STATE(1471), + [sym_bracket_command] = STATE(1477), + [sym_variable_assignment] = STATE(1478), + [sym_declaration_command] = STATE(1477), + [sym_unset_command] = STATE(1477), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -32617,21 +32711,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [822] = { - [sym_for_statement] = STATE(1473), - [sym_while_statement] = STATE(1473), - [sym_if_statement] = STATE(1473), - [sym_case_statement] = STATE(1473), - [sym_function_definition] = STATE(1473), - [sym_subshell] = STATE(1473), - [sym_pipeline] = STATE(1473), - [sym_list] = STATE(1473), - [sym_command] = STATE(1473), + [825] = { + [sym_for_statement] = STATE(1479), + [sym_while_statement] = STATE(1479), + [sym_if_statement] = STATE(1479), + [sym_case_statement] = STATE(1479), + [sym_function_definition] = STATE(1479), + [sym_subshell] = STATE(1479), + [sym_pipeline] = STATE(1479), + [sym_list] = STATE(1479), + [sym_command] = STATE(1479), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1473), - [sym_variable_assignment] = STATE(1474), - [sym_declaration_command] = STATE(1473), - [sym_unset_command] = STATE(1473), + [sym_bracket_command] = STATE(1479), + [sym_variable_assignment] = STATE(1480), + [sym_declaration_command] = STATE(1479), + [sym_unset_command] = STATE(1479), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -32678,601 +32772,601 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [823] = { - [aux_sym_concatenation_repeat1] = STATE(1458), - [sym_file_descriptor] = ACTIONS(2452), - [sym__concat] = ACTIONS(2996), - [anon_sym_PIPE] = ACTIONS(2454), - [anon_sym_RPAREN] = ACTIONS(2454), - [anon_sym_SEMI_SEMI] = ACTIONS(2454), - [anon_sym_PIPE_AMP] = ACTIONS(2454), - [anon_sym_AMP_AMP] = ACTIONS(2454), - [anon_sym_PIPE_PIPE] = ACTIONS(2454), - [anon_sym_LT] = ACTIONS(2454), - [anon_sym_GT] = ACTIONS(2454), - [anon_sym_GT_GT] = ACTIONS(2454), - [anon_sym_AMP_GT] = ACTIONS(2454), - [anon_sym_AMP_GT_GT] = ACTIONS(2454), - [anon_sym_LT_AMP] = ACTIONS(2454), - [anon_sym_GT_AMP] = ACTIONS(2454), - [anon_sym_LT_LT] = ACTIONS(2454), - [anon_sym_LT_LT_DASH] = ACTIONS(2454), - [anon_sym_LT_LT_LT] = ACTIONS(2454), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_LF] = ACTIONS(2454), - [anon_sym_AMP] = ACTIONS(2454), - }, - [824] = { - [aux_sym_concatenation_repeat1] = STATE(1458), - [sym_file_descriptor] = ACTIONS(2456), - [sym__concat] = ACTIONS(2996), - [anon_sym_PIPE] = ACTIONS(2458), - [anon_sym_RPAREN] = ACTIONS(2458), - [anon_sym_SEMI_SEMI] = ACTIONS(2458), - [anon_sym_PIPE_AMP] = ACTIONS(2458), - [anon_sym_AMP_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2458), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_GT] = ACTIONS(2458), - [anon_sym_GT_GT] = ACTIONS(2458), - [anon_sym_AMP_GT] = ACTIONS(2458), - [anon_sym_AMP_GT_GT] = ACTIONS(2458), - [anon_sym_LT_AMP] = ACTIONS(2458), - [anon_sym_GT_AMP] = ACTIONS(2458), - [anon_sym_LT_LT] = ACTIONS(2458), - [anon_sym_LT_LT_DASH] = ACTIONS(2458), - [anon_sym_LT_LT_LT] = ACTIONS(2458), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2458), - [anon_sym_LF] = ACTIONS(2458), - [anon_sym_AMP] = ACTIONS(2458), - }, - [825] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(825), - [sym_file_descriptor] = ACTIONS(3018), - [anon_sym_PIPE] = ACTIONS(2463), - [anon_sym_RPAREN] = ACTIONS(2463), - [anon_sym_SEMI_SEMI] = ACTIONS(2463), - [anon_sym_PIPE_AMP] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2463), - [anon_sym_PIPE_PIPE] = ACTIONS(2463), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_GT_GT] = ACTIONS(3021), - [anon_sym_AMP_GT] = ACTIONS(3021), - [anon_sym_AMP_GT_GT] = ACTIONS(3021), - [anon_sym_LT_AMP] = ACTIONS(3021), - [anon_sym_GT_AMP] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(2468), - [anon_sym_LT_LT_DASH] = ACTIONS(2468), - [anon_sym_LT_LT_LT] = ACTIONS(3024), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_LF] = ACTIONS(2463), - [anon_sym_AMP] = ACTIONS(2463), - }, [826] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(825), - [sym_file_descriptor] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_RPAREN] = ACTIONS(2474), - [anon_sym_SEMI_SEMI] = ACTIONS(2474), - [anon_sym_PIPE_AMP] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(560), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(562), + [aux_sym_concatenation_repeat1] = STATE(1464), + [sym_file_descriptor] = ACTIONS(2458), + [sym__concat] = ACTIONS(3006), + [anon_sym_PIPE] = ACTIONS(2460), + [anon_sym_RPAREN] = ACTIONS(2460), + [anon_sym_SEMI_SEMI] = ACTIONS(2460), + [anon_sym_PIPE_AMP] = ACTIONS(2460), + [anon_sym_AMP_AMP] = ACTIONS(2460), + [anon_sym_PIPE_PIPE] = ACTIONS(2460), + [anon_sym_LT] = ACTIONS(2460), + [anon_sym_GT] = ACTIONS(2460), + [anon_sym_GT_GT] = ACTIONS(2460), + [anon_sym_AMP_GT] = ACTIONS(2460), + [anon_sym_AMP_GT_GT] = ACTIONS(2460), + [anon_sym_LT_AMP] = ACTIONS(2460), + [anon_sym_GT_AMP] = ACTIONS(2460), + [anon_sym_LT_LT] = ACTIONS(2460), + [anon_sym_LT_LT_DASH] = ACTIONS(2460), + [anon_sym_LT_LT_LT] = ACTIONS(2460), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_LF] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym_LF] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), }, [827] = { - [sym_concatenation] = STATE(208), - [sym_string] = STATE(321), - [sym_simple_expansion] = STATE(321), - [sym_string_expansion] = STATE(321), - [sym_expansion] = STATE(321), - [sym_command_substitution] = STATE(321), - [sym_process_substitution] = STATE(321), - [aux_sym_command_repeat2] = STATE(827), - [sym_file_descriptor] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_RPAREN] = ACTIONS(1561), - [anon_sym_SEMI_SEMI] = ACTIONS(1561), - [anon_sym_PIPE_AMP] = ACTIONS(1561), - [anon_sym_AMP_AMP] = ACTIONS(1561), - [anon_sym_PIPE_PIPE] = ACTIONS(1561), - [anon_sym_EQ_TILDE] = ACTIONS(3027), - [anon_sym_EQ_EQ] = ACTIONS(3027), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1561), - [anon_sym_AMP_GT] = ACTIONS(1561), - [anon_sym_AMP_GT_GT] = ACTIONS(1561), - [anon_sym_LT_AMP] = ACTIONS(1561), - [anon_sym_GT_AMP] = ACTIONS(1561), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_LT_LT_DASH] = ACTIONS(1561), - [anon_sym_LT_LT_LT] = ACTIONS(1561), - [sym__special_characters] = ACTIONS(3030), - [anon_sym_DQUOTE] = ACTIONS(3033), - [anon_sym_DOLLAR] = ACTIONS(3036), - [sym_raw_string] = ACTIONS(3039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3042), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3045), - [anon_sym_BQUOTE] = ACTIONS(3048), - [anon_sym_LT_LPAREN] = ACTIONS(3051), - [anon_sym_GT_LPAREN] = ACTIONS(3051), + [aux_sym_concatenation_repeat1] = STATE(1464), + [sym_file_descriptor] = ACTIONS(2462), + [sym__concat] = ACTIONS(3006), + [anon_sym_PIPE] = ACTIONS(2464), + [anon_sym_RPAREN] = ACTIONS(2464), + [anon_sym_SEMI_SEMI] = ACTIONS(2464), + [anon_sym_PIPE_AMP] = ACTIONS(2464), + [anon_sym_AMP_AMP] = ACTIONS(2464), + [anon_sym_PIPE_PIPE] = ACTIONS(2464), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_GT] = ACTIONS(2464), + [anon_sym_GT_GT] = ACTIONS(2464), + [anon_sym_AMP_GT] = ACTIONS(2464), + [anon_sym_AMP_GT_GT] = ACTIONS(2464), + [anon_sym_LT_AMP] = ACTIONS(2464), + [anon_sym_GT_AMP] = ACTIONS(2464), + [anon_sym_LT_LT] = ACTIONS(2464), + [anon_sym_LT_LT_DASH] = ACTIONS(2464), + [anon_sym_LT_LT_LT] = ACTIONS(2464), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3039), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_LF] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1561), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_LF] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), }, [828] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(3054), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(1102), - [sym_raw_string] = ACTIONS(1100), - [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_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1104), + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(828), + [sym_file_descriptor] = ACTIONS(3028), + [anon_sym_PIPE] = ACTIONS(2469), + [anon_sym_RPAREN] = ACTIONS(2469), + [anon_sym_SEMI_SEMI] = ACTIONS(2469), + [anon_sym_PIPE_AMP] = ACTIONS(2469), + [anon_sym_AMP_AMP] = ACTIONS(2469), + [anon_sym_PIPE_PIPE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(3031), + [anon_sym_GT] = ACTIONS(3031), + [anon_sym_GT_GT] = ACTIONS(3031), + [anon_sym_AMP_GT] = ACTIONS(3031), + [anon_sym_AMP_GT_GT] = ACTIONS(3031), + [anon_sym_LT_AMP] = ACTIONS(3031), + [anon_sym_GT_AMP] = ACTIONS(3031), + [anon_sym_LT_LT] = ACTIONS(2474), + [anon_sym_LT_LT_DASH] = ACTIONS(2474), + [anon_sym_LT_LT_LT] = ACTIONS(3034), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_LF] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2469), }, [829] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(208), - [sym_string] = STATE(321), - [sym_simple_expansion] = STATE(321), - [sym_string_expansion] = STATE(321), - [sym_expansion] = STATE(321), - [sym_command_substitution] = STATE(321), - [sym_process_substitution] = STATE(321), - [aux_sym_while_statement_repeat1] = STATE(1476), - [aux_sym_command_repeat2] = STATE(827), - [sym_file_descriptor] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_RPAREN] = ACTIONS(2474), - [anon_sym_SEMI_SEMI] = ACTIONS(2474), - [anon_sym_PIPE_AMP] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [anon_sym_EQ_TILDE] = ACTIONS(558), - [anon_sym_EQ_EQ] = ACTIONS(558), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(560), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), + [aux_sym_while_statement_repeat1] = STATE(828), + [sym_file_descriptor] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_RPAREN] = ACTIONS(2480), + [anon_sym_SEMI_SEMI] = ACTIONS(2480), + [anon_sym_PIPE_AMP] = ACTIONS(2480), + [anon_sym_AMP_AMP] = ACTIONS(2480), + [anon_sym_PIPE_PIPE] = ACTIONS(2480), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_AMP_GT] = ACTIONS(562), + [anon_sym_AMP_GT_GT] = ACTIONS(562), + [anon_sym_LT_AMP] = ACTIONS(562), + [anon_sym_GT_AMP] = ACTIONS(562), [anon_sym_LT_LT] = ACTIONS(360), [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(562), - [sym__special_characters] = ACTIONS(564), - [anon_sym_DQUOTE] = ACTIONS(566), - [anon_sym_DOLLAR] = ACTIONS(568), - [sym_raw_string] = ACTIONS(570), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(572), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(574), - [anon_sym_BQUOTE] = ACTIONS(576), - [anon_sym_LT_LPAREN] = ACTIONS(578), - [anon_sym_GT_LPAREN] = ACTIONS(578), + [anon_sym_LT_LT_LT] = ACTIONS(564), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(570), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_LF] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym_LF] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), }, [830] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_EQ_TILDE] = ACTIONS(3056), - [anon_sym_EQ_EQ] = ACTIONS(3056), - [anon_sym_RBRACK] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1888), + [sym_concatenation] = STATE(208), + [sym_string] = STATE(322), + [sym_simple_expansion] = STATE(322), + [sym_string_expansion] = STATE(322), + [sym_expansion] = STATE(322), + [sym_command_substitution] = STATE(322), + [sym_process_substitution] = STATE(322), + [aux_sym_command_repeat2] = STATE(830), + [sym_file_descriptor] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_RPAREN] = ACTIONS(1565), + [anon_sym_SEMI_SEMI] = ACTIONS(1565), + [anon_sym_PIPE_AMP] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1565), + [anon_sym_EQ_TILDE] = ACTIONS(3037), + [anon_sym_EQ_EQ] = ACTIONS(3037), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1565), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_AMP_GT] = ACTIONS(1565), + [anon_sym_AMP_GT_GT] = ACTIONS(1565), + [anon_sym_LT_AMP] = ACTIONS(1565), + [anon_sym_GT_AMP] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT_LT_DASH] = ACTIONS(1565), + [anon_sym_LT_LT_LT] = ACTIONS(1565), + [sym__special_characters] = ACTIONS(3040), + [anon_sym_DQUOTE] = ACTIONS(3043), + [anon_sym_DOLLAR] = ACTIONS(3046), + [sym_raw_string] = ACTIONS(3049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3052), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3055), + [anon_sym_BQUOTE] = ACTIONS(3058), + [anon_sym_LT_LPAREN] = ACTIONS(3061), + [anon_sym_GT_LPAREN] = ACTIONS(3061), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3049), + [anon_sym_SEMI] = ACTIONS(1565), + [anon_sym_LF] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), }, [831] = { - [aux_sym_concatenation_repeat1] = STATE(831), - [sym__concat] = ACTIONS(3058), - [anon_sym_EQ_TILDE] = ACTIONS(3056), - [anon_sym_EQ_EQ] = ACTIONS(3056), - [anon_sym_RBRACK] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_RPAREN] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1104), + [sym_raw_string] = ACTIONS(1102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), + [anon_sym_BQUOTE] = ACTIONS(1102), + [anon_sym_LT_LPAREN] = ACTIONS(1102), + [anon_sym_GT_LPAREN] = ACTIONS(1102), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1888), + [sym_word] = ACTIONS(1106), }, [832] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_EQ_TILDE] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3061), - [anon_sym_RBRACK] = ACTIONS(1923), - [sym__special_characters] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(1923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), - [anon_sym_BQUOTE] = ACTIONS(1923), - [anon_sym_LT_LPAREN] = ACTIONS(1923), - [anon_sym_GT_LPAREN] = ACTIONS(1923), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1925), - }, - [833] = { - [sym_concatenation] = STATE(1480), - [sym_string] = STATE(1479), - [sym_simple_expansion] = STATE(1479), - [sym_string_expansion] = STATE(1479), - [sym_expansion] = STATE(1479), - [sym_command_substitution] = STATE(1479), - [sym_process_substitution] = STATE(1479), - [anon_sym_RBRACE] = ACTIONS(3063), - [sym__special_characters] = ACTIONS(3065), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(3067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3069), - }, - [834] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_RBRACK] = ACTIONS(1968), - [sym__special_characters] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1968), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1970), - }, - [835] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3073), - }, - [836] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3075), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [837] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(3077), - [sym_comment] = ACTIONS(56), - }, - [838] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1486), - [anon_sym_RBRACE] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3081), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [839] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1489), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3085), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [840] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1491), - [anon_sym_RBRACE] = ACTIONS(3063), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3087), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [841] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_EQ_TILDE] = ACTIONS(3089), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(2022), - [sym__special_characters] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(3089), - [sym_raw_string] = ACTIONS(2022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_BQUOTE] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2022), - [anon_sym_GT_LPAREN] = ACTIONS(2022), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2024), - }, - [842] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3091), - }, - [843] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [844] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_EQ_TILDE] = ACTIONS(3095), - [anon_sym_EQ_EQ] = ACTIONS(3095), - [anon_sym_RBRACK] = ACTIONS(2030), - [sym__special_characters] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(2030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2032), - }, - [845] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3097), - }, - [846] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3063), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [847] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_EQ_TILDE] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3099), - [anon_sym_RBRACK] = ACTIONS(2190), - [sym__special_characters] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), - [anon_sym_BQUOTE] = ACTIONS(2190), - [anon_sym_LT_LPAREN] = ACTIONS(2190), - [anon_sym_GT_LPAREN] = ACTIONS(2190), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2192), - }, - [848] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_EQ_TILDE] = ACTIONS(3101), - [anon_sym_EQ_EQ] = ACTIONS(3101), - [anon_sym_RBRACK] = ACTIONS(2396), - [sym__special_characters] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(3101), - [sym_raw_string] = ACTIONS(2396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_LT_LPAREN] = ACTIONS(2396), - [anon_sym_GT_LPAREN] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2398), - }, - [849] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(624), + [sym_concatenation] = STATE(208), + [sym_string] = STATE(322), + [sym_simple_expansion] = STATE(322), + [sym_string_expansion] = STATE(322), + [sym_expansion] = STATE(322), + [sym_command_substitution] = STATE(322), + [sym_process_substitution] = STATE(322), + [aux_sym_while_statement_repeat1] = STATE(1482), + [aux_sym_command_repeat2] = STATE(830), + [sym_file_descriptor] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_RPAREN] = ACTIONS(2480), + [anon_sym_SEMI_SEMI] = ACTIONS(2480), + [anon_sym_PIPE_AMP] = ACTIONS(2480), + [anon_sym_AMP_AMP] = ACTIONS(2480), + [anon_sym_PIPE_PIPE] = ACTIONS(2480), + [anon_sym_EQ_TILDE] = ACTIONS(560), + [anon_sym_EQ_EQ] = ACTIONS(560), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_AMP_GT] = ACTIONS(562), + [anon_sym_AMP_GT_GT] = ACTIONS(562), + [anon_sym_LT_AMP] = ACTIONS(562), + [anon_sym_GT_AMP] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(564), + [sym__special_characters] = ACTIONS(566), + [anon_sym_DQUOTE] = ACTIONS(568), + [anon_sym_DOLLAR] = ACTIONS(570), + [sym_raw_string] = ACTIONS(572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(574), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(576), + [anon_sym_BQUOTE] = ACTIONS(578), + [anon_sym_LT_LPAREN] = ACTIONS(580), + [anon_sym_GT_LPAREN] = ACTIONS(580), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(572), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym_LF] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + }, + [833] = { + [sym__concat] = ACTIONS(1890), + [anon_sym_EQ_TILDE] = ACTIONS(3066), + [anon_sym_EQ_EQ] = ACTIONS(3066), + [anon_sym_RBRACK] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1892), + }, + [834] = { + [aux_sym_concatenation_repeat1] = STATE(834), + [sym__concat] = ACTIONS(3068), + [anon_sym_EQ_TILDE] = ACTIONS(3066), + [anon_sym_EQ_EQ] = ACTIONS(3066), + [anon_sym_RBRACK] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1892), + }, + [835] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_EQ_TILDE] = ACTIONS(3071), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_RBRACK] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1929), + }, + [836] = { + [sym_concatenation] = STATE(1486), + [sym_string] = STATE(1485), + [sym_simple_expansion] = STATE(1485), + [sym_string_expansion] = STATE(1485), + [sym_expansion] = STATE(1485), + [sym_command_substitution] = STATE(1485), + [sym_process_substitution] = STATE(1485), + [anon_sym_RBRACE] = ACTIONS(3073), + [sym__special_characters] = ACTIONS(3075), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(3077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3079), + }, + [837] = { + [sym__concat] = ACTIONS(1972), + [anon_sym_EQ_TILDE] = ACTIONS(3081), + [anon_sym_EQ_EQ] = ACTIONS(3081), + [anon_sym_RBRACK] = ACTIONS(1972), + [sym__special_characters] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(3081), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [anon_sym_LT_LPAREN] = ACTIONS(1972), + [anon_sym_GT_LPAREN] = ACTIONS(1972), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1974), + }, + [838] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3083), + }, + [839] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3085), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [840] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(3087), + [sym_comment] = ACTIONS(56), + }, + [841] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1492), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3091), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [842] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1495), + [anon_sym_RBRACE] = ACTIONS(3093), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3095), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [843] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1497), + [anon_sym_RBRACE] = ACTIONS(3073), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3097), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [844] = { + [sym__concat] = ACTIONS(2026), + [anon_sym_EQ_TILDE] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3099), + [anon_sym_RBRACK] = ACTIONS(2026), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2026), + [anon_sym_GT_LPAREN] = ACTIONS(2026), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2028), + }, + [845] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3101), + }, + [846] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [847] = { + [sym__concat] = ACTIONS(2034), + [anon_sym_EQ_TILDE] = ACTIONS(3105), + [anon_sym_EQ_EQ] = ACTIONS(3105), + [anon_sym_RBRACK] = ACTIONS(2034), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(3105), + [sym_raw_string] = ACTIONS(2034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), + [anon_sym_BQUOTE] = ACTIONS(2034), + [anon_sym_LT_LPAREN] = ACTIONS(2034), + [anon_sym_GT_LPAREN] = ACTIONS(2034), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2036), + }, + [848] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3107), + }, + [849] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3073), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [850] = { + [sym__concat] = ACTIONS(2196), + [anon_sym_EQ_TILDE] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3109), + [anon_sym_RBRACK] = ACTIONS(2196), + [sym__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(3109), + [sym_raw_string] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2198), + }, + [851] = { + [sym__concat] = ACTIONS(2402), + [anon_sym_EQ_TILDE] = ACTIONS(3111), + [anon_sym_EQ_EQ] = ACTIONS(3111), + [anon_sym_RBRACK] = ACTIONS(2402), + [sym__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(3111), + [sym_raw_string] = ACTIONS(2402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), + [anon_sym_BQUOTE] = ACTIONS(2402), + [anon_sym_LT_LPAREN] = ACTIONS(2402), + [anon_sym_GT_LPAREN] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2404), + }, + [852] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(625), [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_SEMI_SEMI] = ACTIONS(3103), - [anon_sym_PIPE_AMP] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_PIPE_PIPE] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3113), + [anon_sym_SEMI_SEMI] = ACTIONS(3113), + [anon_sym_PIPE_AMP] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), [anon_sym_LT] = ACTIONS(358), [anon_sym_GT] = ACTIONS(358), [anon_sym_GT_GT] = ACTIONS(358), @@ -33284,1994 +33378,1994 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LT_DASH] = ACTIONS(360), [anon_sym_LT_LT_LT] = ACTIONS(362), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_LF] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - }, - [850] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_EQ_TILDE] = ACTIONS(3056), - [anon_sym_EQ_EQ] = ACTIONS(3056), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1888), - }, - [851] = { - [aux_sym_concatenation_repeat1] = STATE(851), - [sym__concat] = ACTIONS(3105), - [anon_sym_EQ_TILDE] = ACTIONS(3056), - [anon_sym_EQ_EQ] = ACTIONS(3056), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1888), - }, - [852] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_EQ_TILDE] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3061), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1923), - [sym__special_characters] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(1923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), - [anon_sym_BQUOTE] = ACTIONS(1923), - [anon_sym_LT_LPAREN] = ACTIONS(1923), - [anon_sym_GT_LPAREN] = ACTIONS(1923), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1925), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_LF] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3113), }, [853] = { - [sym_concatenation] = STATE(1498), - [sym_string] = STATE(1497), - [sym_simple_expansion] = STATE(1497), - [sym_string_expansion] = STATE(1497), - [sym_expansion] = STATE(1497), - [sym_command_substitution] = STATE(1497), - [sym_process_substitution] = STATE(1497), - [anon_sym_RBRACE] = ACTIONS(3108), - [sym__special_characters] = ACTIONS(3110), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(3112), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [sym__concat] = ACTIONS(1890), + [anon_sym_EQ_TILDE] = ACTIONS(3066), + [anon_sym_EQ_EQ] = ACTIONS(3066), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3114), + [sym_word] = ACTIONS(1892), }, [854] = { - [sym__concat] = ACTIONS(1968), + [aux_sym_concatenation_repeat1] = STATE(854), + [sym__concat] = ACTIONS(3115), + [anon_sym_EQ_TILDE] = ACTIONS(3066), + [anon_sym_EQ_EQ] = ACTIONS(3066), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1892), + }, + [855] = { + [sym__concat] = ACTIONS(1927), [anon_sym_EQ_TILDE] = ACTIONS(3071), [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1968), - [sym__special_characters] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1927), [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1929), + }, + [856] = { + [sym_concatenation] = STATE(1504), + [sym_string] = STATE(1503), + [sym_simple_expansion] = STATE(1503), + [sym_string_expansion] = STATE(1503), + [sym_expansion] = STATE(1503), + [sym_command_substitution] = STATE(1503), + [sym_process_substitution] = STATE(1503), + [anon_sym_RBRACE] = ACTIONS(3118), + [sym__special_characters] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(3122), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), [anon_sym_LT_LPAREN] = ACTIONS(1968), [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1970), - }, - [855] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3116), - }, - [856] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(3124), }, [857] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(3120), + [sym__concat] = ACTIONS(1972), + [anon_sym_EQ_TILDE] = ACTIONS(3081), + [anon_sym_EQ_EQ] = ACTIONS(3081), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1972), + [sym__special_characters] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(3081), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [anon_sym_LT_LPAREN] = ACTIONS(1972), + [anon_sym_GT_LPAREN] = ACTIONS(1972), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1974), }, [858] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1504), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3124), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(3126), }, [859] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1507), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3128), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [860] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1509), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3130), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(3130), + [sym_comment] = ACTIONS(56), }, [861] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_EQ_TILDE] = ACTIONS(3089), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2022), - [sym__special_characters] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(3089), - [sym_raw_string] = ACTIONS(2022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_BQUOTE] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2022), - [anon_sym_GT_LPAREN] = ACTIONS(2022), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2024), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1510), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3134), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [862] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1513), + [anon_sym_RBRACE] = ACTIONS(3136), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3138), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3132), + [sym_word] = ACTIONS(866), }, [863] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3134), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1515), + [anon_sym_RBRACE] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3140), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [864] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_EQ_TILDE] = ACTIONS(3095), - [anon_sym_EQ_EQ] = ACTIONS(3095), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2030), - [sym__special_characters] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(2030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), + [sym__concat] = ACTIONS(2026), + [anon_sym_EQ_TILDE] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3099), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2026), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2026), + [anon_sym_GT_LPAREN] = ACTIONS(2026), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2032), + [sym_word] = ACTIONS(2028), }, [865] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3136), + [sym_regex_without_right_brace] = ACTIONS(3142), }, [866] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3144), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [867] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_EQ_TILDE] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3099), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2190), - [sym__special_characters] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), - [anon_sym_BQUOTE] = ACTIONS(2190), - [anon_sym_LT_LPAREN] = ACTIONS(2190), - [anon_sym_GT_LPAREN] = ACTIONS(2190), + [sym__concat] = ACTIONS(2034), + [anon_sym_EQ_TILDE] = ACTIONS(3105), + [anon_sym_EQ_EQ] = ACTIONS(3105), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2034), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(3105), + [sym_raw_string] = ACTIONS(2034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), + [anon_sym_BQUOTE] = ACTIONS(2034), + [anon_sym_LT_LPAREN] = ACTIONS(2034), + [anon_sym_GT_LPAREN] = ACTIONS(2034), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2192), + [sym_word] = ACTIONS(2036), }, [868] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_EQ_TILDE] = ACTIONS(3101), - [anon_sym_EQ_EQ] = ACTIONS(3101), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2396), - [sym__special_characters] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(3101), - [sym_raw_string] = ACTIONS(2396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_LT_LPAREN] = ACTIONS(2396), - [anon_sym_GT_LPAREN] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2398), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3146), }, [869] = { - [sym_variable_name] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_RPAREN] = ACTIONS(1279), - [anon_sym_SEMI_SEMI] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1279), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3118), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1279), - [sym_word] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_LF] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), + [sym_word] = ACTIONS(866), }, [870] = { - [sym_concatenation] = STATE(660), - [sym_string] = STATE(655), - [sym_simple_expansion] = STATE(655), - [sym_string_expansion] = STATE(655), - [sym_expansion] = STATE(655), - [sym_command_substitution] = STATE(655), - [sym_process_substitution] = STATE(655), - [aux_sym_for_statement_repeat1] = STATE(1514), - [anon_sym_RPAREN] = ACTIONS(3138), - [sym__special_characters] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1287), - [sym_raw_string] = ACTIONS(1289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LT_LPAREN] = ACTIONS(1297), - [anon_sym_GT_LPAREN] = ACTIONS(1297), + [sym__concat] = ACTIONS(2196), + [anon_sym_EQ_TILDE] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3109), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2196), + [sym__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(3109), + [sym_raw_string] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1299), + [sym_word] = ACTIONS(2198), }, [871] = { - [aux_sym_concatenation_repeat1] = STATE(376), - [sym__concat] = ACTIONS(684), - [sym_variable_name] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1305), - [anon_sym_SEMI_SEMI] = ACTIONS(1305), - [anon_sym_PIPE_AMP] = ACTIONS(1305), - [anon_sym_AMP_AMP] = ACTIONS(1305), - [anon_sym_PIPE_PIPE] = ACTIONS(1305), - [sym__special_characters] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1305), - [sym_raw_string] = ACTIONS(1305), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1305), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1305), - [anon_sym_BQUOTE] = ACTIONS(1305), - [anon_sym_LT_LPAREN] = ACTIONS(1305), - [anon_sym_GT_LPAREN] = ACTIONS(1305), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1305), - [sym_word] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym_LF] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1305), + [sym__concat] = ACTIONS(2402), + [anon_sym_EQ_TILDE] = ACTIONS(3111), + [anon_sym_EQ_EQ] = ACTIONS(3111), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2402), + [sym__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(3111), + [sym_raw_string] = ACTIONS(2402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), + [anon_sym_BQUOTE] = ACTIONS(2402), + [anon_sym_LT_LPAREN] = ACTIONS(2402), + [anon_sym_GT_LPAREN] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2404), }, [872] = { - [aux_sym_concatenation_repeat1] = STATE(376), - [sym__concat] = ACTIONS(684), - [sym_variable_name] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_SEMI_SEMI] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1279), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_SEMI_SEMI] = ACTIONS(1281), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1279), - [sym_word] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_LF] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1281), + [sym_word] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), }, [873] = { - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), + [sym_concatenation] = STATE(661), + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [aux_sym_for_statement_repeat1] = STATE(1520), + [anon_sym_RPAREN] = ACTIONS(3148), + [sym__special_characters] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1289), + [sym_raw_string] = ACTIONS(1291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), + [anon_sym_BQUOTE] = ACTIONS(1297), + [anon_sym_LT_LPAREN] = ACTIONS(1299), + [anon_sym_GT_LPAREN] = ACTIONS(1299), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1301), }, [874] = { - [aux_sym_concatenation_repeat1] = STATE(874), - [sym__concat] = ACTIONS(3140), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), + [aux_sym_concatenation_repeat1] = STATE(377), + [sym__concat] = ACTIONS(686), + [sym_variable_name] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_SEMI_SEMI] = ACTIONS(1307), + [anon_sym_PIPE_AMP] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1307), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [sym__special_characters] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [sym_raw_string] = ACTIONS(1307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1307), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1307), + [anon_sym_BQUOTE] = ACTIONS(1307), + [anon_sym_LT_LPAREN] = ACTIONS(1307), + [anon_sym_GT_LPAREN] = ACTIONS(1307), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1307), + [sym_word] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_LF] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), }, [875] = { - [sym__concat] = ACTIONS(1923), - [sym_variable_name] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [sym__special_characters] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [sym_raw_string] = ACTIONS(1925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), - [anon_sym_BQUOTE] = ACTIONS(1925), - [anon_sym_LT_LPAREN] = ACTIONS(1925), - [anon_sym_GT_LPAREN] = ACTIONS(1925), + [aux_sym_concatenation_repeat1] = STATE(377), + [sym__concat] = ACTIONS(686), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_SEMI_SEMI] = ACTIONS(1281), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1925), - [sym_word] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1281), + [sym_word] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), }, [876] = { - [sym_concatenation] = STATE(1518), - [sym_string] = STATE(1517), - [sym_simple_expansion] = STATE(1517), - [sym_string_expansion] = STATE(1517), - [sym_expansion] = STATE(1517), - [sym_command_substitution] = STATE(1517), - [sym_process_substitution] = STATE(1517), - [anon_sym_RBRACE] = ACTIONS(3143), - [sym__special_characters] = ACTIONS(3145), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(3147), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3149), + [sym__concat] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [877] = { - [sym__concat] = ACTIONS(1968), - [sym_variable_name] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [sym__special_characters] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [sym_raw_string] = ACTIONS(1970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [anon_sym_GT_LPAREN] = ACTIONS(1970), + [aux_sym_concatenation_repeat1] = STATE(877), + [sym__concat] = ACTIONS(3150), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1970), - [sym_word] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [878] = { + [sym__concat] = ACTIONS(1927), + [sym_variable_name] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), + [anon_sym_BQUOTE] = ACTIONS(1929), + [anon_sym_LT_LPAREN] = ACTIONS(1929), + [anon_sym_GT_LPAREN] = ACTIONS(1929), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3151), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), + [sym_word] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), }, [879] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [sym_concatenation] = STATE(1524), + [sym_string] = STATE(1523), + [sym_simple_expansion] = STATE(1523), + [sym_string_expansion] = STATE(1523), + [sym_expansion] = STATE(1523), + [sym_command_substitution] = STATE(1523), + [sym_process_substitution] = STATE(1523), [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [880] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(3155), - [sym_comment] = ACTIONS(56), - }, - [881] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1524), - [anon_sym_RBRACE] = ACTIONS(3157), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3159), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [882] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1527), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [883] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1529), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3165), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [884] = { - [sym__concat] = ACTIONS(2022), - [sym_variable_name] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [sym__special_characters] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_DOLLAR] = ACTIONS(2024), - [sym_raw_string] = ACTIONS(2024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2024), - [anon_sym_LT_LPAREN] = ACTIONS(2024), - [anon_sym_GT_LPAREN] = ACTIONS(2024), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2024), - [sym_word] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - }, - [885] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3167), - }, - [886] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [887] = { - [sym__concat] = ACTIONS(2030), - [sym_variable_name] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [sym__special_characters] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2032), - [sym_raw_string] = ACTIONS(2032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), - [anon_sym_BQUOTE] = ACTIONS(2032), - [anon_sym_LT_LPAREN] = ACTIONS(2032), - [anon_sym_GT_LPAREN] = ACTIONS(2032), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2032), - [sym_word] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), - }, - [888] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3171), - }, - [889] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [890] = { - [sym__concat] = ACTIONS(2190), - [sym_variable_name] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [sym__special_characters] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [sym_raw_string] = ACTIONS(2192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), - [anon_sym_BQUOTE] = ACTIONS(2192), - [anon_sym_LT_LPAREN] = ACTIONS(2192), - [anon_sym_GT_LPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2192), - [sym_word] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), - }, - [891] = { - [sym__concat] = ACTIONS(2396), - [sym_variable_name] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [sym__special_characters] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), - [anon_sym_BQUOTE] = ACTIONS(2398), - [anon_sym_LT_LPAREN] = ACTIONS(2398), - [anon_sym_GT_LPAREN] = ACTIONS(2398), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2398), - [sym_word] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - }, - [892] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [893] = { - [aux_sym_concatenation_repeat1] = STATE(893), - [sym__concat] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [894] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [sym__special_characters] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [sym_raw_string] = ACTIONS(1925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), - [anon_sym_BQUOTE] = ACTIONS(1925), - [anon_sym_LT_LPAREN] = ACTIONS(1925), - [anon_sym_GT_LPAREN] = ACTIONS(1925), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1925), - [sym_word] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - }, - [895] = { - [sym_concatenation] = STATE(1536), - [sym_string] = STATE(1535), - [sym_simple_expansion] = STATE(1535), - [sym_string_expansion] = STATE(1535), - [sym_expansion] = STATE(1535), - [sym_command_substitution] = STATE(1535), - [sym_process_substitution] = STATE(1535), - [anon_sym_RBRACE] = ACTIONS(3176), - [sym__special_characters] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(3180), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3182), - }, - [896] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [sym__special_characters] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [sym_raw_string] = ACTIONS(1970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1970), - [sym_word] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - }, - [897] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3184), - }, - [898] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [899] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(3188), - [sym_comment] = ACTIONS(56), - }, - [900] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1542), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3192), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [901] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1545), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3196), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [902] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1547), - [anon_sym_RBRACE] = ACTIONS(3176), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3198), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [903] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [sym__special_characters] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_DOLLAR] = ACTIONS(2024), - [sym_raw_string] = ACTIONS(2024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2024), - [anon_sym_LT_LPAREN] = ACTIONS(2024), - [anon_sym_GT_LPAREN] = ACTIONS(2024), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2024), - [sym_word] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - }, - [904] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3200), - }, - [905] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [906] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [sym__special_characters] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2032), - [sym_raw_string] = ACTIONS(2032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), - [anon_sym_BQUOTE] = ACTIONS(2032), - [anon_sym_LT_LPAREN] = ACTIONS(2032), - [anon_sym_GT_LPAREN] = ACTIONS(2032), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2032), - [sym_word] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), - }, - [907] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3204), - }, - [908] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3176), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [909] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [sym__special_characters] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [sym_raw_string] = ACTIONS(2192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), - [anon_sym_BQUOTE] = ACTIONS(2192), - [anon_sym_LT_LPAREN] = ACTIONS(2192), - [anon_sym_GT_LPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2192), - [sym_word] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), - }, - [910] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [sym__special_characters] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), - [anon_sym_BQUOTE] = ACTIONS(2398), - [anon_sym_LT_LPAREN] = ACTIONS(2398), - [anon_sym_GT_LPAREN] = ACTIONS(2398), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2398), - [sym_word] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - }, - [911] = { - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(3056), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3056), - }, - [912] = { - [aux_sym_concatenation_repeat1] = STATE(912), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(3206), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(3056), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3056), - }, - [913] = { - [sym_file_descriptor] = ACTIONS(1923), - [sym__concat] = ACTIONS(1923), - [sym_variable_name] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(1923), - [anon_sym_AMP_GT] = ACTIONS(3061), - [anon_sym_AMP_GT_GT] = ACTIONS(1923), - [anon_sym_LT_AMP] = ACTIONS(1923), - [anon_sym_GT_AMP] = ACTIONS(1923), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(1923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), - [anon_sym_BQUOTE] = ACTIONS(1923), - [anon_sym_LT_LPAREN] = ACTIONS(1923), - [anon_sym_GT_LPAREN] = ACTIONS(1923), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3061), - }, - [914] = { - [sym_concatenation] = STATE(1554), - [sym_string] = STATE(1553), - [sym_simple_expansion] = STATE(1553), - [sym_string_expansion] = STATE(1553), - [sym_expansion] = STATE(1553), - [sym_command_substitution] = STATE(1553), - [sym_process_substitution] = STATE(1553), - [anon_sym_RBRACE] = ACTIONS(3209), - [sym__special_characters] = ACTIONS(3211), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(3213), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3215), - }, - [915] = { - [sym_file_descriptor] = ACTIONS(1968), - [sym__concat] = ACTIONS(1968), - [sym_variable_name] = ACTIONS(1968), - [anon_sym_LT] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(1968), - [anon_sym_AMP_GT] = ACTIONS(3071), - [anon_sym_AMP_GT_GT] = ACTIONS(1968), - [anon_sym_LT_AMP] = ACTIONS(1968), - [anon_sym_GT_AMP] = ACTIONS(1968), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1968), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(3155), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(3157), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), [anon_sym_LT_LPAREN] = ACTIONS(1968), [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3071), + [sym_word] = ACTIONS(3159), + }, + [880] = { + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [sym__special_characters] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1974), + [sym_raw_string] = ACTIONS(1974), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [anon_sym_BQUOTE] = ACTIONS(1974), + [anon_sym_LT_LPAREN] = ACTIONS(1974), + [anon_sym_GT_LPAREN] = ACTIONS(1974), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1974), + [sym_word] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + }, + [881] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3161), + }, + [882] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3163), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [883] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(3165), + [sym_comment] = ACTIONS(56), + }, + [884] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1530), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3169), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [885] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1533), + [anon_sym_RBRACE] = ACTIONS(3171), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3173), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [886] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1535), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3175), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [887] = { + [sym__concat] = ACTIONS(2026), + [sym_variable_name] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym_raw_string] = ACTIONS(2028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(2028), + [anon_sym_LT_LPAREN] = ACTIONS(2028), + [anon_sym_GT_LPAREN] = ACTIONS(2028), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2028), + [sym_word] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + }, + [888] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3177), + }, + [889] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3179), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [890] = { + [sym__concat] = ACTIONS(2034), + [sym_variable_name] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [anon_sym_LT_LPAREN] = ACTIONS(2036), + [anon_sym_GT_LPAREN] = ACTIONS(2036), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2036), + [sym_word] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + }, + [891] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3181), + }, + [892] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [893] = { + [sym__concat] = ACTIONS(2196), + [sym_variable_name] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [sym__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2198), + [sym_word] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + }, + [894] = { + [sym__concat] = ACTIONS(2402), + [sym_variable_name] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [sym__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(2404), + [sym_raw_string] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2404), + [anon_sym_LT_LPAREN] = ACTIONS(2404), + [anon_sym_GT_LPAREN] = ACTIONS(2404), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2404), + [sym_word] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + }, + [895] = { + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [896] = { + [aux_sym_concatenation_repeat1] = STATE(896), + [sym__concat] = ACTIONS(3183), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [897] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), + [anon_sym_BQUOTE] = ACTIONS(1929), + [anon_sym_LT_LPAREN] = ACTIONS(1929), + [anon_sym_GT_LPAREN] = ACTIONS(1929), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), + [sym_word] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), + }, + [898] = { + [sym_concatenation] = STATE(1542), + [sym_string] = STATE(1541), + [sym_simple_expansion] = STATE(1541), + [sym_string_expansion] = STATE(1541), + [sym_expansion] = STATE(1541), + [sym_command_substitution] = STATE(1541), + [sym_process_substitution] = STATE(1541), + [anon_sym_RBRACE] = ACTIONS(3186), + [sym__special_characters] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(3190), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3192), + }, + [899] = { + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [sym__special_characters] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1974), + [sym_raw_string] = ACTIONS(1974), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [anon_sym_BQUOTE] = ACTIONS(1974), + [anon_sym_LT_LPAREN] = ACTIONS(1974), + [anon_sym_GT_LPAREN] = ACTIONS(1974), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1974), + [sym_word] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + }, + [900] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3194), + }, + [901] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3196), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [902] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(3198), + [sym_comment] = ACTIONS(56), + }, + [903] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1548), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3202), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [904] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1551), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3206), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [905] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1553), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3208), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [906] = { + [sym__concat] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym_raw_string] = ACTIONS(2028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(2028), + [anon_sym_LT_LPAREN] = ACTIONS(2028), + [anon_sym_GT_LPAREN] = ACTIONS(2028), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2028), + [sym_word] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + }, + [907] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3210), + }, + [908] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3212), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [909] = { + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [anon_sym_LT_LPAREN] = ACTIONS(2036), + [anon_sym_GT_LPAREN] = ACTIONS(2036), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2036), + [sym_word] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + }, + [910] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3214), + }, + [911] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3186), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [912] = { + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [sym__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2198), + [sym_word] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + }, + [913] = { + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [sym__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(2404), + [sym_raw_string] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2404), + [anon_sym_LT_LPAREN] = ACTIONS(2404), + [anon_sym_GT_LPAREN] = ACTIONS(2404), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2404), + [sym_word] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + }, + [914] = { + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(3066), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3066), + }, + [915] = { + [aux_sym_concatenation_repeat1] = STATE(915), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(3216), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(3066), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3066), }, [916] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3217), + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [sym_variable_name] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3071), + [anon_sym_GT_GT] = ACTIONS(1927), + [anon_sym_AMP_GT] = ACTIONS(3071), + [anon_sym_AMP_GT_GT] = ACTIONS(1927), + [anon_sym_LT_AMP] = ACTIONS(1927), + [anon_sym_GT_AMP] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3071), }, [917] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [sym_concatenation] = STATE(1560), + [sym_string] = STATE(1559), + [sym_simple_expansion] = STATE(1559), + [sym_string_expansion] = STATE(1559), + [sym_expansion] = STATE(1559), + [sym_command_substitution] = STATE(1559), + [sym_process_substitution] = STATE(1559), [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__special_characters] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(3223), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3225), }, [918] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(3221), + [sym_file_descriptor] = ACTIONS(1972), + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3081), + [anon_sym_GT_GT] = ACTIONS(1972), + [anon_sym_AMP_GT] = ACTIONS(3081), + [anon_sym_AMP_GT_GT] = ACTIONS(1972), + [anon_sym_LT_AMP] = ACTIONS(1972), + [anon_sym_GT_AMP] = ACTIONS(1972), + [sym__special_characters] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(3081), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [anon_sym_LT_LPAREN] = ACTIONS(1972), + [anon_sym_GT_LPAREN] = ACTIONS(1972), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3081), }, [919] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1560), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3225), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(3227), }, [920] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1563), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3229), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [921] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1565), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3231), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(3231), + [sym_comment] = ACTIONS(56), }, [922] = { - [sym_file_descriptor] = ACTIONS(2022), - [sym__concat] = ACTIONS(2022), - [sym_variable_name] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(2022), - [anon_sym_AMP_GT] = ACTIONS(3089), - [anon_sym_AMP_GT_GT] = ACTIONS(2022), - [anon_sym_LT_AMP] = ACTIONS(2022), - [anon_sym_GT_AMP] = ACTIONS(2022), - [sym__special_characters] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(3089), - [sym_raw_string] = ACTIONS(2022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_BQUOTE] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2022), - [anon_sym_GT_LPAREN] = ACTIONS(2022), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3089), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1566), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3235), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [923] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1569), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3239), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3233), + [sym_word] = ACTIONS(866), }, [924] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1571), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3241), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [925] = { - [sym_file_descriptor] = ACTIONS(2030), - [sym__concat] = ACTIONS(2030), - [sym_variable_name] = ACTIONS(2030), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_GT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(2030), - [anon_sym_AMP_GT] = ACTIONS(3095), - [anon_sym_AMP_GT_GT] = ACTIONS(2030), - [anon_sym_LT_AMP] = ACTIONS(2030), - [anon_sym_GT_AMP] = ACTIONS(2030), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(2030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3095), - }, - [926] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3237), - }, - [927] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [928] = { - [sym_file_descriptor] = ACTIONS(2190), - [sym__concat] = ACTIONS(2190), - [sym_variable_name] = ACTIONS(2190), + [sym_file_descriptor] = ACTIONS(2026), + [sym__concat] = ACTIONS(2026), + [sym_variable_name] = ACTIONS(2026), [anon_sym_LT] = ACTIONS(3099), [anon_sym_GT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2026), [anon_sym_AMP_GT] = ACTIONS(3099), - [anon_sym_AMP_GT_GT] = ACTIONS(2190), - [anon_sym_LT_AMP] = ACTIONS(2190), - [anon_sym_GT_AMP] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2026), + [anon_sym_LT_AMP] = ACTIONS(2026), + [anon_sym_GT_AMP] = ACTIONS(2026), [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), - [anon_sym_BQUOTE] = ACTIONS(2190), - [anon_sym_LT_LPAREN] = ACTIONS(2190), - [anon_sym_GT_LPAREN] = ACTIONS(2190), + [sym_raw_string] = ACTIONS(2026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2026), + [anon_sym_GT_LPAREN] = ACTIONS(2026), [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(3099), }, - [929] = { - [sym_file_descriptor] = ACTIONS(2396), - [sym__concat] = ACTIONS(2396), - [sym_variable_name] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_GT_GT] = ACTIONS(2396), - [anon_sym_AMP_GT] = ACTIONS(3101), - [anon_sym_AMP_GT_GT] = ACTIONS(2396), - [anon_sym_LT_AMP] = ACTIONS(2396), - [anon_sym_GT_AMP] = ACTIONS(2396), - [sym__special_characters] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(3101), - [sym_raw_string] = ACTIONS(2396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_LT_LPAREN] = ACTIONS(2396), - [anon_sym_GT_LPAREN] = ACTIONS(2396), + [926] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3243), + }, + [927] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [928] = { + [sym_file_descriptor] = ACTIONS(2034), + [sym__concat] = ACTIONS(2034), + [sym_variable_name] = ACTIONS(2034), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_GT] = ACTIONS(3105), + [anon_sym_GT_GT] = ACTIONS(2034), + [anon_sym_AMP_GT] = ACTIONS(3105), + [anon_sym_AMP_GT_GT] = ACTIONS(2034), + [anon_sym_LT_AMP] = ACTIONS(2034), + [anon_sym_GT_AMP] = ACTIONS(2034), + [sym__special_characters] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(3105), + [sym_raw_string] = ACTIONS(2034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), + [anon_sym_BQUOTE] = ACTIONS(2034), + [anon_sym_LT_LPAREN] = ACTIONS(2034), + [anon_sym_GT_LPAREN] = ACTIONS(2034), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3101), + [sym_word] = ACTIONS(3105), + }, + [929] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3247), }, [930] = { - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_DOLLAR] = ACTIONS(3239), - [sym__string_content] = ACTIONS(3241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3239), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3239), - [anon_sym_BQUOTE] = ACTIONS(3239), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [931] = { - [sym_concatenation] = STATE(1572), - [sym_string] = STATE(1571), - [sym_simple_expansion] = STATE(1571), - [sym_string_expansion] = STATE(1571), - [sym_expansion] = STATE(1571), - [sym_command_substitution] = STATE(1571), - [sym_process_substitution] = STATE(1571), - [anon_sym_RBRACE] = ACTIONS(3243), - [sym__special_characters] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(3247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [sym_file_descriptor] = ACTIONS(2196), + [sym__concat] = ACTIONS(2196), + [sym_variable_name] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(3109), + [anon_sym_GT] = ACTIONS(3109), + [anon_sym_GT_GT] = ACTIONS(2196), + [anon_sym_AMP_GT] = ACTIONS(3109), + [anon_sym_AMP_GT_GT] = ACTIONS(2196), + [anon_sym_LT_AMP] = ACTIONS(2196), + [anon_sym_GT_AMP] = ACTIONS(2196), + [sym__special_characters] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(3109), + [sym_raw_string] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3249), + [sym_word] = ACTIONS(3109), }, [932] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [sym__string_content] = ACTIONS(3071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [sym_comment] = ACTIONS(182), + [sym_file_descriptor] = ACTIONS(2402), + [sym__concat] = ACTIONS(2402), + [sym_variable_name] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3111), + [anon_sym_GT_GT] = ACTIONS(2402), + [anon_sym_AMP_GT] = ACTIONS(3111), + [anon_sym_AMP_GT_GT] = ACTIONS(2402), + [anon_sym_LT_AMP] = ACTIONS(2402), + [anon_sym_GT_AMP] = ACTIONS(2402), + [sym__special_characters] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(3111), + [sym_raw_string] = ACTIONS(2402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), + [anon_sym_BQUOTE] = ACTIONS(2402), + [anon_sym_LT_LPAREN] = ACTIONS(2402), + [anon_sym_GT_LPAREN] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3111), }, [933] = { + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_DOLLAR] = ACTIONS(3249), + [sym__string_content] = ACTIONS(3251), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3249), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3249), + [anon_sym_BQUOTE] = ACTIONS(3249), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3251), }, [934] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [sym_concatenation] = STATE(1578), + [sym_string] = STATE(1577), + [sym_simple_expansion] = STATE(1577), + [sym_string_expansion] = STATE(1577), + [sym_expansion] = STATE(1577), + [sym_command_substitution] = STATE(1577), + [sym_process_substitution] = STATE(1577), [anon_sym_RBRACE] = ACTIONS(3253), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__special_characters] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(3257), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3259), }, [935] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(3255), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1974), + [sym__string_content] = ACTIONS(3081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [anon_sym_BQUOTE] = ACTIONS(1974), + [sym_comment] = ACTIONS(182), }, [936] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1578), - [anon_sym_RBRACE] = ACTIONS(3257), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3259), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(3261), }, [937] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1581), - [anon_sym_RBRACE] = ACTIONS(3261), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3263), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3263), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [938] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1583), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3265), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(3265), + [sym_comment] = ACTIONS(56), }, [939] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_DOLLAR] = ACTIONS(2024), - [sym__string_content] = ACTIONS(3089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2024), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1584), + [anon_sym_RBRACE] = ACTIONS(3267), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [940] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1587), + [anon_sym_RBRACE] = ACTIONS(3271), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3273), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3267), + [sym_word] = ACTIONS(866), }, [941] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3269), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1589), + [anon_sym_RBRACE] = ACTIONS(3253), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3275), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [942] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2032), - [sym__string_content] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), - [anon_sym_BQUOTE] = ACTIONS(2032), + [sym__concat] = ACTIONS(2026), + [anon_sym_DQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym__string_content] = ACTIONS(3099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(2028), [sym_comment] = ACTIONS(182), }, [943] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3271), + [sym_regex_without_right_brace] = ACTIONS(3277), }, [944] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [945] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [sym__string_content] = ACTIONS(3099), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), - [anon_sym_BQUOTE] = ACTIONS(2192), + [sym__concat] = ACTIONS(2034), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [sym__string_content] = ACTIONS(3105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), [sym_comment] = ACTIONS(182), }, [946] = { - [aux_sym_concatenation_repeat1] = STATE(631), - [sym__concat] = ACTIONS(3273), - [anon_sym_RBRACK] = ACTIONS(3275), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3281), }, [947] = { - [aux_sym_concatenation_repeat1] = STATE(631), - [sym__concat] = ACTIONS(3277), - [anon_sym_RBRACK] = ACTIONS(3279), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3253), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [948] = { - [sym__concat] = ACTIONS(3281), - [anon_sym_RBRACK] = ACTIONS(3279), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2198), + [sym__string_content] = ACTIONS(3109), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), }, [949] = { - [sym_file_descriptor] = ACTIONS(3283), + [aux_sym_concatenation_repeat1] = STATE(632), [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_EQ_TILDE] = ACTIONS(3285), - [anon_sym_EQ_EQ] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_GT] = ACTIONS(3285), - [anon_sym_GT_GT] = ACTIONS(3285), - [anon_sym_AMP_GT] = ACTIONS(3285), - [anon_sym_AMP_GT_GT] = ACTIONS(3285), - [anon_sym_LT_AMP] = ACTIONS(3285), - [anon_sym_GT_AMP] = ACTIONS(3285), - [anon_sym_LT_LT] = ACTIONS(3285), - [anon_sym_LT_LT_DASH] = ACTIONS(3285), - [anon_sym_LT_LT_LT] = ACTIONS(3285), - [sym__special_characters] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_DOLLAR] = ACTIONS(3285), - [sym_raw_string] = ACTIONS(3285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), - [anon_sym_BQUOTE] = ACTIONS(3285), - [anon_sym_LT_LPAREN] = ACTIONS(3285), - [anon_sym_GT_LPAREN] = ACTIONS(3285), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_RBRACK] = ACTIONS(3285), + [sym_comment] = ACTIONS(56), }, [950] = { - [aux_sym_concatenation_repeat1] = STATE(1594), + [aux_sym_concatenation_repeat1] = STATE(632), [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_RBRACK] = ACTIONS(3289), [sym_comment] = ACTIONS(56), }, [951] = { + [sym__concat] = ACTIONS(3291), + [anon_sym_RBRACK] = ACTIONS(3289), + [sym_comment] = ACTIONS(56), + }, + [952] = { + [sym_file_descriptor] = ACTIONS(3293), + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_EQ_TILDE] = ACTIONS(3295), + [anon_sym_EQ_EQ] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_GT] = ACTIONS(3295), + [anon_sym_GT_GT] = ACTIONS(3295), + [anon_sym_AMP_GT] = ACTIONS(3295), + [anon_sym_AMP_GT_GT] = ACTIONS(3295), + [anon_sym_LT_AMP] = ACTIONS(3295), + [anon_sym_GT_AMP] = ACTIONS(3295), + [anon_sym_LT_LT] = ACTIONS(3295), + [anon_sym_LT_LT_DASH] = ACTIONS(3295), + [anon_sym_LT_LT_LT] = ACTIONS(3295), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), + [anon_sym_BQUOTE] = ACTIONS(3295), + [anon_sym_LT_LPAREN] = ACTIONS(3295), + [anon_sym_GT_LPAREN] = ACTIONS(3295), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + }, + [953] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3299), + [sym_comment] = ACTIONS(56), + }, + [954] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1596), - [anon_sym_DQUOTE] = ACTIONS(3291), + [aux_sym_string_repeat1] = STATE(1602), + [anon_sym_DQUOTE] = ACTIONS(3301), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -35279,56 +35373,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [952] = { - [sym_string] = STATE(1598), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(3293), - [sym_raw_string] = ACTIONS(3295), - [anon_sym_POUND] = ACTIONS(3293), - [anon_sym_DASH] = ACTIONS(3293), + [955] = { + [sym_string] = STATE(1604), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(3303), + [sym_raw_string] = ACTIONS(3305), + [anon_sym_POUND] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3297), - [anon_sym_STAR] = ACTIONS(3293), - [anon_sym_AT] = ACTIONS(3293), - [anon_sym_QMARK] = ACTIONS(3293), - [anon_sym_0] = ACTIONS(3299), - [anon_sym__] = ACTIONS(3299), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3307), + [anon_sym_STAR] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3303), + [anon_sym_QMARK] = ACTIONS(3303), + [anon_sym_0] = ACTIONS(3309), + [anon_sym__] = ACTIONS(3309), }, - [953] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(3301), + [956] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3311), [sym_comment] = ACTIONS(56), }, - [954] = { - [sym_subscript] = STATE(1605), - [sym_variable_name] = ACTIONS(3303), - [anon_sym_DOLLAR] = ACTIONS(3305), - [anon_sym_POUND] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3305), + [957] = { + [sym_subscript] = STATE(1611), + [sym_variable_name] = ACTIONS(3313), + [anon_sym_DOLLAR] = ACTIONS(3315), + [anon_sym_POUND] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3315), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3309), - [anon_sym_STAR] = ACTIONS(3305), - [anon_sym_AT] = ACTIONS(3305), - [anon_sym_QMARK] = ACTIONS(3305), - [anon_sym_0] = ACTIONS(3311), - [anon_sym__] = ACTIONS(3311), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3315), + [anon_sym_AT] = ACTIONS(3315), + [anon_sym_QMARK] = ACTIONS(3315), + [anon_sym_0] = ACTIONS(3321), + [anon_sym__] = ACTIONS(3321), }, - [955] = { - [sym_for_statement] = STATE(1606), - [sym_while_statement] = STATE(1606), - [sym_if_statement] = STATE(1606), - [sym_case_statement] = STATE(1606), - [sym_function_definition] = STATE(1606), - [sym_subshell] = STATE(1606), - [sym_pipeline] = STATE(1606), - [sym_list] = STATE(1606), - [sym_command] = STATE(1606), + [958] = { + [sym_for_statement] = STATE(1612), + [sym_while_statement] = STATE(1612), + [sym_if_statement] = STATE(1612), + [sym_case_statement] = STATE(1612), + [sym_function_definition] = STATE(1612), + [sym_subshell] = STATE(1612), + [sym_pipeline] = STATE(1612), + [sym_list] = STATE(1612), + [sym_command] = STATE(1612), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1606), - [sym_variable_assignment] = STATE(1607), - [sym_declaration_command] = STATE(1606), - [sym_unset_command] = STATE(1606), + [sym_bracket_command] = STATE(1612), + [sym_variable_assignment] = STATE(1613), + [sym_declaration_command] = STATE(1612), + [sym_unset_command] = STATE(1612), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -35375,21 +35469,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [956] = { - [sym_for_statement] = STATE(1608), - [sym_while_statement] = STATE(1608), - [sym_if_statement] = STATE(1608), - [sym_case_statement] = STATE(1608), - [sym_function_definition] = STATE(1608), - [sym_subshell] = STATE(1608), - [sym_pipeline] = STATE(1608), - [sym_list] = STATE(1608), - [sym_command] = STATE(1608), + [959] = { + [sym_for_statement] = STATE(1614), + [sym_while_statement] = STATE(1614), + [sym_if_statement] = STATE(1614), + [sym_case_statement] = STATE(1614), + [sym_function_definition] = STATE(1614), + [sym_subshell] = STATE(1614), + [sym_pipeline] = STATE(1614), + [sym_list] = STATE(1614), + [sym_command] = STATE(1614), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1608), - [sym_variable_assignment] = STATE(1609), - [sym_declaration_command] = STATE(1608), - [sym_unset_command] = STATE(1608), + [sym_bracket_command] = STATE(1614), + [sym_variable_assignment] = STATE(1615), + [sym_declaration_command] = STATE(1614), + [sym_unset_command] = STATE(1614), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -35436,21 +35530,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [957] = { - [sym_for_statement] = STATE(1610), - [sym_while_statement] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_case_statement] = STATE(1610), - [sym_function_definition] = STATE(1610), - [sym_subshell] = STATE(1610), - [sym_pipeline] = STATE(1610), - [sym_list] = STATE(1610), - [sym_command] = STATE(1610), + [960] = { + [sym_for_statement] = STATE(1616), + [sym_while_statement] = STATE(1616), + [sym_if_statement] = STATE(1616), + [sym_case_statement] = STATE(1616), + [sym_function_definition] = STATE(1616), + [sym_subshell] = STATE(1616), + [sym_pipeline] = STATE(1616), + [sym_list] = STATE(1616), + [sym_command] = STATE(1616), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1610), - [sym_variable_assignment] = STATE(1611), - [sym_declaration_command] = STATE(1610), - [sym_unset_command] = STATE(1610), + [sym_bracket_command] = STATE(1616), + [sym_variable_assignment] = STATE(1617), + [sym_declaration_command] = STATE(1616), + [sym_unset_command] = STATE(1616), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -35497,825 +35591,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [958] = { - [anon_sym_RBRACE] = ACTIONS(3301), - [sym_comment] = ACTIONS(56), - }, - [959] = { - [sym_string] = STATE(1612), - [sym_simple_expansion] = STATE(1612), - [sym_string_expansion] = STATE(1612), - [sym_expansion] = STATE(1612), - [sym_command_substitution] = STATE(1612), - [sym_process_substitution] = STATE(1612), - [sym__special_characters] = ACTIONS(3313), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(3315), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3313), - }, - [960] = { - [aux_sym_concatenation_repeat1] = STATE(1613), - [sym__concat] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(788), - [anon_sym_EQ] = ACTIONS(1567), - [sym__special_characters] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(1567), - [sym_raw_string] = ACTIONS(788), - [anon_sym_POUND] = ACTIONS(788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), - [anon_sym_COLON] = ACTIONS(1567), - [anon_sym_COLON_QMARK] = ACTIONS(1567), - [anon_sym_COLON_DASH] = ACTIONS(1567), - [anon_sym_PERCENT] = ACTIONS(1567), - [anon_sym_DASH] = ACTIONS(1567), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LT_LPAREN] = ACTIONS(788), - [anon_sym_GT_LPAREN] = ACTIONS(788), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(790), - }, [961] = { - [sym__concat] = ACTIONS(792), - [anon_sym_RBRACE] = ACTIONS(792), - [anon_sym_EQ] = ACTIONS(1569), - [sym__special_characters] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(1569), - [sym_raw_string] = ACTIONS(792), - [anon_sym_POUND] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_COLON] = ACTIONS(1569), - [anon_sym_COLON_QMARK] = ACTIONS(1569), - [anon_sym_COLON_DASH] = ACTIONS(1569), - [anon_sym_PERCENT] = ACTIONS(1569), - [anon_sym_DASH] = ACTIONS(1569), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(794), + [anon_sym_RBRACE] = ACTIONS(3311), + [sym_comment] = ACTIONS(56), }, [962] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(3317), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), + [sym_string] = STATE(1618), + [sym_simple_expansion] = STATE(1618), + [sym_string_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1618), + [sym_process_substitution] = STATE(1618), + [sym__special_characters] = ACTIONS(3323), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(3325), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3323), }, [963] = { - [sym__concat] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), + [aux_sym_concatenation_repeat1] = STATE(1619), + [sym__concat] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(790), + [anon_sym_EQ] = ACTIONS(1571), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(1571), + [sym_raw_string] = ACTIONS(790), + [anon_sym_POUND] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_COLON] = ACTIONS(1571), + [anon_sym_COLON_QMARK] = ACTIONS(1571), + [anon_sym_COLON_DASH] = ACTIONS(1571), + [anon_sym_PERCENT] = ACTIONS(1571), + [anon_sym_DASH] = ACTIONS(1571), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(792), + }, + [964] = { + [sym__concat] = ACTIONS(794), + [anon_sym_RBRACE] = ACTIONS(794), [anon_sym_EQ] = ACTIONS(1573), - [sym__special_characters] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(824), + [sym__special_characters] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(794), [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(824), - [anon_sym_POUND] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), + [sym_raw_string] = ACTIONS(794), + [anon_sym_POUND] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), [anon_sym_COLON] = ACTIONS(1573), [anon_sym_COLON_QMARK] = ACTIONS(1573), [anon_sym_COLON_DASH] = ACTIONS(1573), [anon_sym_PERCENT] = ACTIONS(1573), [anon_sym_DASH] = ACTIONS(1573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_LT_LPAREN] = ACTIONS(824), - [anon_sym_GT_LPAREN] = ACTIONS(824), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(826), - }, - [964] = { - [sym__concat] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), - [anon_sym_EQ] = ACTIONS(1575), - [sym__special_characters] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1575), - [sym_raw_string] = ACTIONS(828), - [anon_sym_POUND] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_COLON] = ACTIONS(1575), - [anon_sym_COLON_QMARK] = ACTIONS(1575), - [anon_sym_COLON_DASH] = ACTIONS(1575), - [anon_sym_PERCENT] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(830), + [sym_word] = ACTIONS(796), }, [965] = { - [sym__concat] = ACTIONS(832), - [anon_sym_RBRACE] = ACTIONS(832), - [anon_sym_EQ] = ACTIONS(1577), - [sym__special_characters] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(832), - [anon_sym_POUND] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_COLON] = ACTIONS(1577), - [anon_sym_COLON_QMARK] = ACTIONS(1577), - [anon_sym_COLON_DASH] = ACTIONS(1577), - [anon_sym_PERCENT] = ACTIONS(1577), - [anon_sym_DASH] = ACTIONS(1577), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(834), - }, - [966] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(3319), - [sym_comment] = ACTIONS(56), - }, - [967] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1618), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3323), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [968] = { - [sym_subscript] = STATE(1622), - [sym_variable_name] = ACTIONS(3325), - [anon_sym_DOLLAR] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3329), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [anon_sym_QMARK] = ACTIONS(3327), - [anon_sym_0] = ACTIONS(3331), - [anon_sym__] = ACTIONS(3331), - }, - [969] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1625), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3335), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [970] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1628), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3339), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [971] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1630), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [972] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3343), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [973] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3343), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [974] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(3343), - [sym_comment] = ACTIONS(56), - }, - [975] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(3343), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [976] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3345), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [977] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3345), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [978] = { - [sym_file_descriptor] = ACTIONS(3347), - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [anon_sym_EQ_TILDE] = ACTIONS(3349), - [anon_sym_EQ_EQ] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_GT] = ACTIONS(3349), - [anon_sym_GT_GT] = ACTIONS(3349), - [anon_sym_AMP_GT] = ACTIONS(3349), - [anon_sym_AMP_GT_GT] = ACTIONS(3349), - [anon_sym_LT_AMP] = ACTIONS(3349), - [anon_sym_GT_AMP] = ACTIONS(3349), - [anon_sym_LT_LT] = ACTIONS(3349), - [anon_sym_LT_LT_DASH] = ACTIONS(3349), - [anon_sym_LT_LT_LT] = ACTIONS(3349), - [sym__special_characters] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3349), - [sym_raw_string] = ACTIONS(3349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), - [anon_sym_BQUOTE] = ACTIONS(3349), - [anon_sym_LT_LPAREN] = ACTIONS(3349), - [anon_sym_GT_LPAREN] = ACTIONS(3349), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - }, - [979] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3353), - [sym__special_characters] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_DOLLAR] = ACTIONS(3362), - [sym_raw_string] = ACTIONS(3365), - [anon_sym_POUND] = ACTIONS(3368), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3371), - [anon_sym_COLON] = ACTIONS(3353), - [anon_sym_COLON_QMARK] = ACTIONS(3353), - [anon_sym_COLON_DASH] = ACTIONS(3353), - [anon_sym_PERCENT] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3374), - [anon_sym_BQUOTE] = ACTIONS(3377), - [anon_sym_LT_LPAREN] = ACTIONS(3380), - [anon_sym_GT_LPAREN] = ACTIONS(3380), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3383), - }, - [980] = { - [sym_concatenation] = STATE(1635), - [sym_string] = STATE(1634), - [sym_simple_expansion] = STATE(1634), - [sym_string_expansion] = STATE(1634), - [sym_expansion] = STATE(1634), - [sym_command_substitution] = STATE(1634), - [sym_process_substitution] = STATE(1634), - [anon_sym_RBRACE] = ACTIONS(3301), - [sym__special_characters] = ACTIONS(3386), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(3388), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3390), - }, - [981] = { - [sym_file_descriptor] = ACTIONS(3392), - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [anon_sym_EQ_TILDE] = ACTIONS(3394), - [anon_sym_EQ_EQ] = ACTIONS(3394), - [anon_sym_LT] = ACTIONS(3394), - [anon_sym_GT] = ACTIONS(3394), - [anon_sym_GT_GT] = ACTIONS(3394), - [anon_sym_AMP_GT] = ACTIONS(3394), - [anon_sym_AMP_GT_GT] = ACTIONS(3394), - [anon_sym_LT_AMP] = ACTIONS(3394), - [anon_sym_GT_AMP] = ACTIONS(3394), - [anon_sym_LT_LT] = ACTIONS(3394), - [anon_sym_LT_LT_DASH] = ACTIONS(3394), - [anon_sym_LT_LT_LT] = ACTIONS(3394), - [sym__special_characters] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_DOLLAR] = ACTIONS(3394), - [sym_raw_string] = ACTIONS(3394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), - [anon_sym_BQUOTE] = ACTIONS(3394), - [anon_sym_LT_LPAREN] = ACTIONS(3394), - [anon_sym_GT_LPAREN] = ACTIONS(3394), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3394), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), - }, - [982] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3396), - }, - [983] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3398), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [984] = { - [sym_file_descriptor] = ACTIONS(3400), - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [anon_sym_EQ_TILDE] = ACTIONS(3402), - [anon_sym_EQ_EQ] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(3402), - [anon_sym_GT] = ACTIONS(3402), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_AMP_GT] = ACTIONS(3402), - [anon_sym_AMP_GT_GT] = ACTIONS(3402), - [anon_sym_LT_AMP] = ACTIONS(3402), - [anon_sym_GT_AMP] = ACTIONS(3402), - [anon_sym_LT_LT] = ACTIONS(3402), - [anon_sym_LT_LT_DASH] = ACTIONS(3402), - [anon_sym_LT_LT_LT] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(3402), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3402), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), - }, - [985] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3404), - }, - [986] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3406), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [987] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3408), - }, - [988] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [989] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1642), - [anon_sym_RBRACE] = ACTIONS(3410), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [990] = { - [sym_file_descriptor] = ACTIONS(3412), - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [anon_sym_EQ_TILDE] = ACTIONS(3414), - [anon_sym_EQ_EQ] = ACTIONS(3414), - [anon_sym_LT] = ACTIONS(3414), - [anon_sym_GT] = ACTIONS(3414), - [anon_sym_GT_GT] = ACTIONS(3414), - [anon_sym_AMP_GT] = ACTIONS(3414), - [anon_sym_AMP_GT_GT] = ACTIONS(3414), - [anon_sym_LT_AMP] = ACTIONS(3414), - [anon_sym_GT_AMP] = ACTIONS(3414), - [anon_sym_LT_LT] = ACTIONS(3414), - [anon_sym_LT_LT_DASH] = ACTIONS(3414), - [anon_sym_LT_LT_LT] = ACTIONS(3414), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_DOLLAR] = ACTIONS(3414), - [sym_raw_string] = ACTIONS(3414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), - [anon_sym_BQUOTE] = ACTIONS(3414), - [anon_sym_LT_LPAREN] = ACTIONS(3414), - [anon_sym_GT_LPAREN] = ACTIONS(3414), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), - }, - [991] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1644), - [anon_sym_RBRACE] = ACTIONS(3416), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [992] = { - [sym_file_descriptor] = ACTIONS(1277), - [sym_variable_name] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(3418), - [anon_sym_RPAREN] = ACTIONS(1277), - [anon_sym_PIPE_AMP] = ACTIONS(1277), - [anon_sym_AMP_AMP] = ACTIONS(1277), - [anon_sym_PIPE_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(3418), - [anon_sym_GT] = ACTIONS(3418), - [anon_sym_GT_GT] = ACTIONS(1277), - [anon_sym_AMP_GT] = ACTIONS(3418), - [anon_sym_AMP_GT_GT] = ACTIONS(1277), - [anon_sym_LT_AMP] = ACTIONS(1277), - [anon_sym_GT_AMP] = ACTIONS(1277), - [sym__special_characters] = ACTIONS(3418), - [anon_sym_DQUOTE] = ACTIONS(1277), - [anon_sym_DOLLAR] = ACTIONS(3418), - [sym_raw_string] = ACTIONS(1277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), - [anon_sym_BQUOTE] = ACTIONS(1277), - [anon_sym_LT_LPAREN] = ACTIONS(1277), - [anon_sym_GT_LPAREN] = ACTIONS(1277), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3418), - }, - [993] = { - [sym_concatenation] = STATE(660), - [sym_string] = STATE(655), - [sym_simple_expansion] = STATE(655), - [sym_string_expansion] = STATE(655), - [sym_expansion] = STATE(655), - [sym_command_substitution] = STATE(655), - [sym_process_substitution] = STATE(655), - [aux_sym_for_statement_repeat1] = STATE(1646), - [anon_sym_RPAREN] = ACTIONS(3420), - [sym__special_characters] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1287), - [sym_raw_string] = ACTIONS(1289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LT_LPAREN] = ACTIONS(1297), - [anon_sym_GT_LPAREN] = ACTIONS(1297), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1299), - }, - [994] = { - [aux_sym_concatenation_repeat1] = STATE(1648), - [sym_file_descriptor] = ACTIONS(1301), - [sym__concat] = ACTIONS(3422), - [sym_variable_name] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_RPAREN] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_GT] = ACTIONS(3424), - [anon_sym_GT_GT] = ACTIONS(1301), - [anon_sym_AMP_GT] = ACTIONS(3424), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3424), - }, - [995] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1650), - [anon_sym_DQUOTE] = ACTIONS(3426), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(3327), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -36323,55 +35672,757 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [996] = { - [sym_string] = STATE(1652), - [anon_sym_DQUOTE] = ACTIONS(2042), - [anon_sym_DOLLAR] = ACTIONS(3428), - [sym_raw_string] = ACTIONS(3430), - [anon_sym_POUND] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), + [966] = { + [sym__concat] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), + [anon_sym_EQ] = ACTIONS(1577), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(826), + [anon_sym_POUND] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_COLON] = ACTIONS(1577), + [anon_sym_COLON_QMARK] = ACTIONS(1577), + [anon_sym_COLON_DASH] = ACTIONS(1577), + [anon_sym_PERCENT] = ACTIONS(1577), + [anon_sym_DASH] = ACTIONS(1577), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3432), - [anon_sym_STAR] = ACTIONS(3428), - [anon_sym_AT] = ACTIONS(3428), - [anon_sym_QMARK] = ACTIONS(3428), - [anon_sym_0] = ACTIONS(3434), - [anon_sym__] = ACTIONS(3434), + [sym_word] = ACTIONS(828), + }, + [967] = { + [sym__concat] = ACTIONS(830), + [anon_sym_RBRACE] = ACTIONS(830), + [anon_sym_EQ] = ACTIONS(1579), + [sym__special_characters] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(1579), + [sym_raw_string] = ACTIONS(830), + [anon_sym_POUND] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_COLON] = ACTIONS(1579), + [anon_sym_COLON_QMARK] = ACTIONS(1579), + [anon_sym_COLON_DASH] = ACTIONS(1579), + [anon_sym_PERCENT] = ACTIONS(1579), + [anon_sym_DASH] = ACTIONS(1579), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(832), + }, + [968] = { + [sym__concat] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_EQ] = ACTIONS(1581), + [sym__special_characters] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1581), + [sym_raw_string] = ACTIONS(834), + [anon_sym_POUND] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_COLON] = ACTIONS(1581), + [anon_sym_COLON_QMARK] = ACTIONS(1581), + [anon_sym_COLON_DASH] = ACTIONS(1581), + [anon_sym_PERCENT] = ACTIONS(1581), + [anon_sym_DASH] = ACTIONS(1581), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(836), + }, + [969] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(3329), + [sym_comment] = ACTIONS(56), + }, + [970] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1624), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3333), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [971] = { + [sym_subscript] = STATE(1628), + [sym_variable_name] = ACTIONS(3335), + [anon_sym_DOLLAR] = ACTIONS(3337), + [anon_sym_DASH] = ACTIONS(3337), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_AT] = ACTIONS(3337), + [anon_sym_QMARK] = ACTIONS(3337), + [anon_sym_0] = ACTIONS(3341), + [anon_sym__] = ACTIONS(3341), + }, + [972] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1631), + [anon_sym_RBRACE] = ACTIONS(3343), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3345), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [973] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1634), + [anon_sym_RBRACE] = ACTIONS(3347), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3349), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [974] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1636), + [anon_sym_RBRACE] = ACTIONS(3351), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [975] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3353), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [976] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3353), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [977] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(3353), + [sym_comment] = ACTIONS(56), + }, + [978] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(3353), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [979] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [980] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3355), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [981] = { + [sym_file_descriptor] = ACTIONS(3357), + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [anon_sym_EQ_TILDE] = ACTIONS(3359), + [anon_sym_EQ_EQ] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_AMP_GT] = ACTIONS(3359), + [anon_sym_AMP_GT_GT] = ACTIONS(3359), + [anon_sym_LT_AMP] = ACTIONS(3359), + [anon_sym_GT_AMP] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(3359), + [anon_sym_LT_LT_DASH] = ACTIONS(3359), + [anon_sym_LT_LT_LT] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), + }, + [982] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [sym__special_characters] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3369), + [anon_sym_DOLLAR] = ACTIONS(3372), + [sym_raw_string] = ACTIONS(3375), + [anon_sym_POUND] = ACTIONS(3378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3381), + [anon_sym_COLON] = ACTIONS(3363), + [anon_sym_COLON_QMARK] = ACTIONS(3363), + [anon_sym_COLON_DASH] = ACTIONS(3363), + [anon_sym_PERCENT] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3384), + [anon_sym_BQUOTE] = ACTIONS(3387), + [anon_sym_LT_LPAREN] = ACTIONS(3390), + [anon_sym_GT_LPAREN] = ACTIONS(3390), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3393), + }, + [983] = { + [sym_concatenation] = STATE(1641), + [sym_string] = STATE(1640), + [sym_simple_expansion] = STATE(1640), + [sym_string_expansion] = STATE(1640), + [sym_expansion] = STATE(1640), + [sym_command_substitution] = STATE(1640), + [sym_process_substitution] = STATE(1640), + [anon_sym_RBRACE] = ACTIONS(3311), + [sym__special_characters] = ACTIONS(3396), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(3398), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3400), + }, + [984] = { + [sym_file_descriptor] = ACTIONS(3402), + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_EQ_TILDE] = ACTIONS(3404), + [anon_sym_EQ_EQ] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_GT] = ACTIONS(3404), + [anon_sym_GT_GT] = ACTIONS(3404), + [anon_sym_AMP_GT] = ACTIONS(3404), + [anon_sym_AMP_GT_GT] = ACTIONS(3404), + [anon_sym_LT_AMP] = ACTIONS(3404), + [anon_sym_GT_AMP] = ACTIONS(3404), + [anon_sym_LT_LT] = ACTIONS(3404), + [anon_sym_LT_LT_DASH] = ACTIONS(3404), + [anon_sym_LT_LT_LT] = ACTIONS(3404), + [sym__special_characters] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_DOLLAR] = ACTIONS(3404), + [sym_raw_string] = ACTIONS(3404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), + [anon_sym_BQUOTE] = ACTIONS(3404), + [anon_sym_LT_LPAREN] = ACTIONS(3404), + [anon_sym_GT_LPAREN] = ACTIONS(3404), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), + }, + [985] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3406), + }, + [986] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3408), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [987] = { + [sym_file_descriptor] = ACTIONS(3410), + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_EQ_TILDE] = ACTIONS(3412), + [anon_sym_EQ_EQ] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_GT] = ACTIONS(3412), + [anon_sym_AMP_GT_GT] = ACTIONS(3412), + [anon_sym_LT_AMP] = ACTIONS(3412), + [anon_sym_GT_AMP] = ACTIONS(3412), + [anon_sym_LT_LT] = ACTIONS(3412), + [anon_sym_LT_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT_LT] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(3412), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), + }, + [988] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3414), + }, + [989] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3416), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [990] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3418), + }, + [991] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [992] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1648), + [anon_sym_RBRACE] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [993] = { + [sym_file_descriptor] = ACTIONS(3422), + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_EQ_TILDE] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(3424), + [anon_sym_AMP_GT] = ACTIONS(3424), + [anon_sym_AMP_GT_GT] = ACTIONS(3424), + [anon_sym_LT_AMP] = ACTIONS(3424), + [anon_sym_GT_AMP] = ACTIONS(3424), + [anon_sym_LT_LT] = ACTIONS(3424), + [anon_sym_LT_LT_DASH] = ACTIONS(3424), + [anon_sym_LT_LT_LT] = ACTIONS(3424), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(3424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), + [anon_sym_BQUOTE] = ACTIONS(3424), + [anon_sym_LT_LPAREN] = ACTIONS(3424), + [anon_sym_GT_LPAREN] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), + }, + [994] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1650), + [anon_sym_RBRACE] = ACTIONS(3426), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [995] = { + [sym_file_descriptor] = ACTIONS(1279), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(3428), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(3428), + [anon_sym_GT] = ACTIONS(3428), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_AMP_GT] = ACTIONS(3428), + [anon_sym_AMP_GT_GT] = ACTIONS(1279), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(3428), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(3428), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3428), + }, + [996] = { + [sym_concatenation] = STATE(661), + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [aux_sym_for_statement_repeat1] = STATE(1652), + [anon_sym_RPAREN] = ACTIONS(3430), + [sym__special_characters] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1289), + [sym_raw_string] = ACTIONS(1291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), + [anon_sym_BQUOTE] = ACTIONS(1297), + [anon_sym_LT_LPAREN] = ACTIONS(1299), + [anon_sym_GT_LPAREN] = ACTIONS(1299), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1301), }, [997] = { - [aux_sym_concatenation_repeat1] = STATE(1648), - [sym_file_descriptor] = ACTIONS(1277), - [sym__concat] = ACTIONS(3422), - [sym_variable_name] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(3418), - [anon_sym_RPAREN] = ACTIONS(1277), - [anon_sym_PIPE_AMP] = ACTIONS(1277), - [anon_sym_AMP_AMP] = ACTIONS(1277), - [anon_sym_PIPE_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(3418), - [anon_sym_GT] = ACTIONS(3418), - [anon_sym_GT_GT] = ACTIONS(1277), - [anon_sym_AMP_GT] = ACTIONS(3418), - [anon_sym_AMP_GT_GT] = ACTIONS(1277), - [anon_sym_LT_AMP] = ACTIONS(1277), - [anon_sym_GT_AMP] = ACTIONS(1277), - [sym__special_characters] = ACTIONS(3418), - [anon_sym_DQUOTE] = ACTIONS(1277), - [anon_sym_DOLLAR] = ACTIONS(3418), - [sym_raw_string] = ACTIONS(1277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), - [anon_sym_BQUOTE] = ACTIONS(1277), - [anon_sym_LT_LPAREN] = ACTIONS(1277), - [anon_sym_GT_LPAREN] = ACTIONS(1277), + [aux_sym_concatenation_repeat1] = STATE(1654), + [sym_file_descriptor] = ACTIONS(1303), + [sym__concat] = ACTIONS(3432), + [sym_variable_name] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_RPAREN] = ACTIONS(1303), + [anon_sym_PIPE_AMP] = ACTIONS(1303), + [anon_sym_AMP_AMP] = ACTIONS(1303), + [anon_sym_PIPE_PIPE] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_GT] = ACTIONS(3434), + [anon_sym_GT_GT] = ACTIONS(1303), + [anon_sym_AMP_GT] = ACTIONS(3434), + [anon_sym_AMP_GT_GT] = ACTIONS(1303), + [anon_sym_LT_AMP] = ACTIONS(1303), + [anon_sym_GT_AMP] = ACTIONS(1303), + [sym__special_characters] = ACTIONS(3434), + [anon_sym_DQUOTE] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(3434), + [sym_raw_string] = ACTIONS(1303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1303), + [anon_sym_BQUOTE] = ACTIONS(1303), + [anon_sym_LT_LPAREN] = ACTIONS(1303), + [anon_sym_GT_LPAREN] = ACTIONS(1303), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3418), + [sym_word] = ACTIONS(3434), }, [998] = { - [sym_subscript] = STATE(1658), - [sym_variable_name] = ACTIONS(3436), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(1656), + [anon_sym_DQUOTE] = ACTIONS(3436), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [999] = { + [sym_string] = STATE(1658), + [anon_sym_DQUOTE] = ACTIONS(2046), [anon_sym_DOLLAR] = ACTIONS(3438), - [anon_sym_POUND] = ACTIONS(3440), + [sym_raw_string] = ACTIONS(3440), + [anon_sym_POUND] = ACTIONS(3438), [anon_sym_DASH] = ACTIONS(3438), [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3442), @@ -36381,21 +36432,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(3444), [anon_sym__] = ACTIONS(3444), }, - [999] = { - [sym_for_statement] = STATE(1659), - [sym_while_statement] = STATE(1659), - [sym_if_statement] = STATE(1659), - [sym_case_statement] = STATE(1659), - [sym_function_definition] = STATE(1659), - [sym_subshell] = STATE(1659), - [sym_pipeline] = STATE(1659), - [sym_list] = STATE(1659), - [sym_command] = STATE(1659), + [1000] = { + [aux_sym_concatenation_repeat1] = STATE(1654), + [sym_file_descriptor] = ACTIONS(1279), + [sym__concat] = ACTIONS(3432), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(3428), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(3428), + [anon_sym_GT] = ACTIONS(3428), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_AMP_GT] = ACTIONS(3428), + [anon_sym_AMP_GT_GT] = ACTIONS(1279), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(3428), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(3428), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3428), + }, + [1001] = { + [sym_subscript] = STATE(1664), + [sym_variable_name] = ACTIONS(3446), + [anon_sym_DOLLAR] = ACTIONS(3448), + [anon_sym_POUND] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3448), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3448), + [anon_sym_AT] = ACTIONS(3448), + [anon_sym_QMARK] = ACTIONS(3448), + [anon_sym_0] = ACTIONS(3454), + [anon_sym__] = ACTIONS(3454), + }, + [1002] = { + [sym_for_statement] = STATE(1665), + [sym_while_statement] = STATE(1665), + [sym_if_statement] = STATE(1665), + [sym_case_statement] = STATE(1665), + [sym_function_definition] = STATE(1665), + [sym_subshell] = STATE(1665), + [sym_pipeline] = STATE(1665), + [sym_list] = STATE(1665), + [sym_command] = STATE(1665), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1659), - [sym_variable_assignment] = STATE(1660), - [sym_declaration_command] = STATE(1659), - [sym_unset_command] = STATE(1659), + [sym_bracket_command] = STATE(1665), + [sym_variable_assignment] = STATE(1666), + [sym_declaration_command] = STATE(1665), + [sym_unset_command] = STATE(1665), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -36442,21 +36536,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [1000] = { - [sym_for_statement] = STATE(1661), - [sym_while_statement] = STATE(1661), - [sym_if_statement] = STATE(1661), - [sym_case_statement] = STATE(1661), - [sym_function_definition] = STATE(1661), - [sym_subshell] = STATE(1661), - [sym_pipeline] = STATE(1661), - [sym_list] = STATE(1661), - [sym_command] = STATE(1661), + [1003] = { + [sym_for_statement] = STATE(1667), + [sym_while_statement] = STATE(1667), + [sym_if_statement] = STATE(1667), + [sym_case_statement] = STATE(1667), + [sym_function_definition] = STATE(1667), + [sym_subshell] = STATE(1667), + [sym_pipeline] = STATE(1667), + [sym_list] = STATE(1667), + [sym_command] = STATE(1667), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1661), - [sym_variable_assignment] = STATE(1662), - [sym_declaration_command] = STATE(1661), - [sym_unset_command] = STATE(1661), + [sym_bracket_command] = STATE(1667), + [sym_variable_assignment] = STATE(1668), + [sym_declaration_command] = STATE(1667), + [sym_unset_command] = STATE(1667), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -36503,21 +36597,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [1001] = { - [sym_for_statement] = STATE(1663), - [sym_while_statement] = STATE(1663), - [sym_if_statement] = STATE(1663), - [sym_case_statement] = STATE(1663), - [sym_function_definition] = STATE(1663), - [sym_subshell] = STATE(1663), - [sym_pipeline] = STATE(1663), - [sym_list] = STATE(1663), - [sym_command] = STATE(1663), + [1004] = { + [sym_for_statement] = STATE(1669), + [sym_while_statement] = STATE(1669), + [sym_if_statement] = STATE(1669), + [sym_case_statement] = STATE(1669), + [sym_function_definition] = STATE(1669), + [sym_subshell] = STATE(1669), + [sym_pipeline] = STATE(1669), + [sym_list] = STATE(1669), + [sym_command] = STATE(1669), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1663), - [sym_variable_assignment] = STATE(1664), - [sym_declaration_command] = STATE(1663), - [sym_unset_command] = STATE(1663), + [sym_bracket_command] = STATE(1669), + [sym_variable_assignment] = STATE(1670), + [sym_declaration_command] = STATE(1669), + [sym_unset_command] = STATE(1669), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -36564,225 +36658,137 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [1002] = { - [sym_concatenation] = STATE(688), - [sym_string] = STATE(683), - [sym_simple_expansion] = STATE(683), - [sym_string_expansion] = STATE(683), - [sym_expansion] = STATE(683), - [sym_command_substitution] = STATE(683), - [sym_process_substitution] = STATE(683), - [aux_sym_for_statement_repeat1] = STATE(1665), - [sym__special_characters] = ACTIONS(1327), - [anon_sym_DQUOTE] = ACTIONS(1329), - [anon_sym_DOLLAR] = ACTIONS(1331), - [sym_raw_string] = ACTIONS(1333), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1337), - [anon_sym_BQUOTE] = ACTIONS(1339), - [anon_sym_LT_LPAREN] = ACTIONS(1341), - [anon_sym_GT_LPAREN] = ACTIONS(1341), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1343), - }, - [1003] = { - [sym__terminated_statement] = STATE(691), - [sym_for_statement] = STATE(692), - [sym_while_statement] = STATE(692), - [sym_if_statement] = STATE(692), - [sym_case_statement] = STATE(692), - [sym_function_definition] = STATE(692), - [sym_subshell] = STATE(692), - [sym_pipeline] = STATE(692), - [sym_list] = STATE(692), - [sym_command] = STATE(692), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(692), - [sym_variable_assignment] = STATE(693), - [sym_declaration_command] = STATE(692), - [sym_unset_command] = STATE(692), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1667), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(3446), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [1004] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1668), - [sym_file_descriptor] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(3448), - [anon_sym_RPAREN] = ACTIONS(3450), - [anon_sym_PIPE_AMP] = ACTIONS(3450), - [anon_sym_AMP_AMP] = ACTIONS(3450), - [anon_sym_PIPE_PIPE] = ACTIONS(3450), - [anon_sym_LT] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_AMP_GT] = ACTIONS(988), - [anon_sym_AMP_GT_GT] = ACTIONS(990), - [anon_sym_LT_AMP] = ACTIONS(990), - [anon_sym_GT_AMP] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(996), - [sym_comment] = ACTIONS(56), - }, [1005] = { - [sym__terminated_statement] = STATE(699), - [sym_for_statement] = STATE(700), - [sym_while_statement] = STATE(700), - [sym_if_statement] = STATE(700), - [sym_elif_clause] = STATE(701), - [sym_else_clause] = STATE(1670), - [sym_case_statement] = STATE(700), - [sym_function_definition] = STATE(700), - [sym_subshell] = STATE(700), - [sym_pipeline] = STATE(700), - [sym_list] = STATE(700), - [sym_command] = STATE(700), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(700), - [sym_variable_assignment] = STATE(703), - [sym_declaration_command] = STATE(700), - [sym_unset_command] = STATE(700), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1671), - [aux_sym_if_statement_repeat1] = STATE(1672), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(3452), - [anon_sym_elif] = ACTIONS(1351), - [anon_sym_else] = ACTIONS(1353), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_concatenation] = STATE(689), + [sym_string] = STATE(684), + [sym_simple_expansion] = STATE(684), + [sym_string_expansion] = STATE(684), + [sym_expansion] = STATE(684), + [sym_command_substitution] = STATE(684), + [sym_process_substitution] = STATE(684), + [aux_sym_for_statement_repeat1] = STATE(1671), + [sym__special_characters] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(1333), + [sym_raw_string] = ACTIONS(1335), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1339), + [anon_sym_BQUOTE] = ACTIONS(1341), + [anon_sym_LT_LPAREN] = ACTIONS(1343), + [anon_sym_GT_LPAREN] = ACTIONS(1343), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_word] = ACTIONS(1345), }, [1006] = { - [anon_sym_SEMI_SEMI] = ACTIONS(3454), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_LF] = ACTIONS(3454), - [anon_sym_AMP] = ACTIONS(3454), + [sym_do_group] = STATE(1673), + [anon_sym_do] = ACTIONS(3456), + [sym_comment] = ACTIONS(56), }, [1007] = { - [anon_sym_in] = ACTIONS(3456), + [sym__terminated_statement] = STATE(694), + [sym_for_statement] = STATE(695), + [sym_while_statement] = STATE(695), + [sym_if_statement] = STATE(695), + [sym_case_statement] = STATE(695), + [sym_function_definition] = STATE(695), + [sym_subshell] = STATE(695), + [sym_pipeline] = STATE(695), + [sym_list] = STATE(695), + [sym_command] = STATE(695), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(695), + [sym_variable_assignment] = STATE(696), + [sym_declaration_command] = STATE(695), + [sym_unset_command] = STATE(695), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1675), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(3458), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), }, [1008] = { - [anon_sym_SEMI_SEMI] = ACTIONS(3458), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3458), - [anon_sym_LF] = ACTIONS(3458), - [anon_sym_AMP] = ACTIONS(3458), + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [aux_sym_while_statement_repeat1] = STATE(1676), + [sym_file_descriptor] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(3460), + [anon_sym_RPAREN] = ACTIONS(3462), + [anon_sym_PIPE_AMP] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3462), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [anon_sym_GT_GT] = ACTIONS(992), + [anon_sym_AMP_GT] = ACTIONS(990), + [anon_sym_AMP_GT_GT] = ACTIONS(992), + [anon_sym_LT_AMP] = ACTIONS(992), + [anon_sym_GT_AMP] = ACTIONS(992), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(998), + [sym_comment] = ACTIONS(56), }, [1009] = { - [anon_sym_in] = ACTIONS(3460), - [sym_comment] = ACTIONS(56), - }, - [1010] = { - [anon_sym_RPAREN] = ACTIONS(3462), - [sym_comment] = ACTIONS(56), - }, - [1011] = { - [sym__terminated_statement] = STATE(731), - [sym_for_statement] = STATE(732), - [sym_while_statement] = STATE(732), - [sym_if_statement] = STATE(732), - [sym_case_statement] = STATE(732), - [sym_function_definition] = STATE(732), - [sym_subshell] = STATE(732), - [sym_pipeline] = STATE(732), - [sym_list] = STATE(732), - [sym_command] = STATE(732), + [sym__terminated_statement] = STATE(702), + [sym_for_statement] = STATE(703), + [sym_while_statement] = STATE(703), + [sym_if_statement] = STATE(703), + [sym_elif_clause] = STATE(704), + [sym_else_clause] = STATE(1678), + [sym_case_statement] = STATE(703), + [sym_function_definition] = STATE(703), + [sym_subshell] = STATE(703), + [sym_pipeline] = STATE(703), + [sym_list] = STATE(703), + [sym_command] = STATE(703), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(732), - [sym_variable_assignment] = STATE(733), - [sym_declaration_command] = STATE(732), - [sym_unset_command] = STATE(732), + [sym_bracket_command] = STATE(703), + [sym_variable_assignment] = STATE(706), + [sym_declaration_command] = STATE(703), + [sym_unset_command] = STATE(703), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -36793,16 +36799,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), [aux_sym_program_repeat1] = STATE(1679), + [aux_sym_if_statement_repeat1] = STATE(1680), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(3464), + [anon_sym_elif] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(1357), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(3464), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_declare] = ACTIONS(32), @@ -36831,91 +36840,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [1012] = { - [sym_file_redirect] = STATE(1682), - [sym_file_descriptor] = ACTIONS(3466), - [anon_sym_PIPE] = ACTIONS(3468), - [anon_sym_RPAREN] = ACTIONS(3470), - [anon_sym_PIPE_AMP] = ACTIONS(3470), - [anon_sym_AMP_AMP] = ACTIONS(3470), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_LT] = ACTIONS(3472), - [anon_sym_GT] = ACTIONS(3472), - [anon_sym_GT_GT] = ACTIONS(3474), - [anon_sym_AMP_GT] = ACTIONS(3472), - [anon_sym_AMP_GT_GT] = ACTIONS(3474), - [anon_sym_LT_AMP] = ACTIONS(3474), - [anon_sym_GT_AMP] = ACTIONS(3474), + [1010] = { + [anon_sym_SEMI_SEMI] = ACTIONS(3466), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3466), + [anon_sym_LF] = ACTIONS(3466), + [anon_sym_AMP] = ACTIONS(3466), + }, + [1011] = { + [anon_sym_in] = ACTIONS(3468), [sym_comment] = ACTIONS(56), }, + [1012] = { + [anon_sym_SEMI_SEMI] = ACTIONS(3470), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3470), + [anon_sym_LF] = ACTIONS(3470), + [anon_sym_AMP] = ACTIONS(3470), + }, [1013] = { - [anon_sym_PIPE] = ACTIONS(3476), - [anon_sym_RPAREN] = ACTIONS(3478), - [anon_sym_PIPE_AMP] = ACTIONS(3478), - [anon_sym_AMP_AMP] = ACTIONS(3478), - [anon_sym_PIPE_PIPE] = ACTIONS(3478), - [anon_sym_BQUOTE] = ACTIONS(3478), + [anon_sym_in] = ACTIONS(3472), [sym_comment] = ACTIONS(56), }, [1014] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(3480), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(1102), - [sym_raw_string] = ACTIONS(1100), - [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), + [anon_sym_RPAREN] = ACTIONS(3474), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1104), }, [1015] = { - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(3482), - [anon_sym_SEMI_SEMI] = ACTIONS(3484), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_LF] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3484), + [sym__terminated_statement] = STATE(734), + [sym_for_statement] = STATE(735), + [sym_while_statement] = STATE(735), + [sym_if_statement] = STATE(735), + [sym_case_statement] = STATE(735), + [sym_function_definition] = STATE(735), + [sym_subshell] = STATE(735), + [sym_pipeline] = STATE(735), + [sym_list] = STATE(735), + [sym_command] = STATE(735), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(735), + [sym_variable_assignment] = STATE(736), + [sym_declaration_command] = STATE(735), + [sym_unset_command] = STATE(735), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1687), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_RBRACE] = ACTIONS(3476), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), }, [1016] = { + [sym_file_redirect] = STATE(1690), + [sym_file_descriptor] = ACTIONS(3478), + [anon_sym_PIPE] = ACTIONS(3480), + [anon_sym_RPAREN] = ACTIONS(3482), + [anon_sym_PIPE_AMP] = ACTIONS(3482), + [anon_sym_AMP_AMP] = ACTIONS(3482), + [anon_sym_PIPE_PIPE] = ACTIONS(3482), + [anon_sym_LT] = ACTIONS(3484), + [anon_sym_GT] = ACTIONS(3484), + [anon_sym_GT_GT] = ACTIONS(3486), + [anon_sym_AMP_GT] = ACTIONS(3484), + [anon_sym_AMP_GT_GT] = ACTIONS(3486), + [anon_sym_LT_AMP] = ACTIONS(3486), + [anon_sym_GT_AMP] = ACTIONS(3486), + [sym_comment] = ACTIONS(56), + }, + [1017] = { + [anon_sym_PIPE] = ACTIONS(3488), + [anon_sym_RPAREN] = ACTIONS(3490), + [anon_sym_PIPE_AMP] = ACTIONS(3490), + [anon_sym_AMP_AMP] = ACTIONS(3490), + [anon_sym_PIPE_PIPE] = ACTIONS(3490), + [anon_sym_BQUOTE] = ACTIONS(3490), + [sym_comment] = ACTIONS(56), + }, + [1018] = { + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_RPAREN] = ACTIONS(3492), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1104), + [sym_raw_string] = ACTIONS(1102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), + [anon_sym_BQUOTE] = ACTIONS(1102), + [anon_sym_LT_LPAREN] = ACTIONS(1102), + [anon_sym_GT_LPAREN] = ACTIONS(1102), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1106), + }, + [1019] = { + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_RPAREN] = ACTIONS(3494), + [anon_sym_SEMI_SEMI] = ACTIONS(3496), + [anon_sym_PIPE_AMP] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(556), + [anon_sym_PIPE_PIPE] = ACTIONS(556), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym_LF] = ACTIONS(3496), + [anon_sym_AMP] = ACTIONS(3496), + }, + [1020] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(548), - [anon_sym_RPAREN] = ACTIONS(3482), - [anon_sym_SEMI_SEMI] = ACTIONS(3484), - [anon_sym_PIPE_AMP] = ACTIONS(548), - [anon_sym_AMP_AMP] = ACTIONS(554), - [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_PIPE] = ACTIONS(550), + [anon_sym_RPAREN] = ACTIONS(3494), + [anon_sym_SEMI_SEMI] = ACTIONS(3496), + [anon_sym_PIPE_AMP] = ACTIONS(550), + [anon_sym_AMP_AMP] = ACTIONS(556), + [anon_sym_PIPE_PIPE] = ACTIONS(556), [anon_sym_LT] = ACTIONS(382), [anon_sym_GT] = ACTIONS(382), [anon_sym_GT_GT] = ACTIONS(382), @@ -36934,66 +37033,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_LF] = ACTIONS(3484), - [anon_sym_AMP] = ACTIONS(3484), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym_LF] = ACTIONS(3496), + [anon_sym_AMP] = ACTIONS(3496), }, - [1017] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1685), - [sym_file_descriptor] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(3486), - [anon_sym_RPAREN] = ACTIONS(3488), - [anon_sym_PIPE_AMP] = ACTIONS(3488), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_PIPE_PIPE] = ACTIONS(3488), - [anon_sym_LT] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_AMP_GT] = ACTIONS(988), - [anon_sym_AMP_GT_GT] = ACTIONS(990), - [anon_sym_LT_AMP] = ACTIONS(990), - [anon_sym_GT_AMP] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(996), + [1021] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [aux_sym_while_statement_repeat1] = STATE(1693), + [sym_file_descriptor] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(3498), + [anon_sym_RPAREN] = ACTIONS(3500), + [anon_sym_PIPE_AMP] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(3500), + [anon_sym_PIPE_PIPE] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [anon_sym_GT_GT] = ACTIONS(992), + [anon_sym_AMP_GT] = ACTIONS(990), + [anon_sym_AMP_GT_GT] = ACTIONS(992), + [anon_sym_LT_AMP] = ACTIONS(992), + [anon_sym_GT_AMP] = ACTIONS(992), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(998), [sym_comment] = ACTIONS(56), }, - [1018] = { - [sym_concatenation] = STATE(1686), - [sym_string] = STATE(1689), - [sym_array] = STATE(1686), - [sym_simple_expansion] = STATE(1689), - [sym_string_expansion] = STATE(1689), - [sym_expansion] = STATE(1689), - [sym_command_substitution] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [sym__empty_value] = ACTIONS(3490), - [anon_sym_LPAREN] = ACTIONS(3492), - [sym__special_characters] = ACTIONS(3494), - [anon_sym_DQUOTE] = ACTIONS(902), - [anon_sym_DOLLAR] = ACTIONS(904), - [sym_raw_string] = ACTIONS(3496), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(908), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(910), - [anon_sym_BQUOTE] = ACTIONS(912), - [anon_sym_LT_LPAREN] = ACTIONS(914), - [anon_sym_GT_LPAREN] = ACTIONS(914), + [1022] = { + [sym_concatenation] = STATE(1694), + [sym_string] = STATE(1697), + [sym_array] = STATE(1694), + [sym_simple_expansion] = STATE(1697), + [sym_string_expansion] = STATE(1697), + [sym_expansion] = STATE(1697), + [sym_command_substitution] = STATE(1697), + [sym_process_substitution] = STATE(1697), + [sym__empty_value] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3504), + [sym__special_characters] = ACTIONS(3506), + [anon_sym_DQUOTE] = ACTIONS(904), + [anon_sym_DOLLAR] = ACTIONS(906), + [sym_raw_string] = ACTIONS(3508), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(910), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(912), + [anon_sym_BQUOTE] = ACTIONS(914), + [anon_sym_LT_LPAREN] = ACTIONS(916), + [anon_sym_GT_LPAREN] = ACTIONS(916), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3498), + [sym_word] = ACTIONS(3510), }, - [1019] = { + [1023] = { [sym_variable_name] = ACTIONS(440), - [anon_sym_PIPE] = ACTIONS(2058), + [anon_sym_PIPE] = ACTIONS(2062), [anon_sym_RPAREN] = ACTIONS(440), [anon_sym_PIPE_AMP] = ACTIONS(440), [anon_sym_AMP_AMP] = ACTIONS(440), [anon_sym_PIPE_PIPE] = ACTIONS(440), - [sym__special_characters] = ACTIONS(2058), + [sym__special_characters] = ACTIONS(2062), [anon_sym_DQUOTE] = ACTIONS(440), - [anon_sym_DOLLAR] = ACTIONS(2058), + [anon_sym_DOLLAR] = ACTIONS(2062), [sym_raw_string] = ACTIONS(440), [anon_sym_DOLLAR_LBRACE] = ACTIONS(440), [anon_sym_DOLLAR_LPAREN] = ACTIONS(440), @@ -37001,77 +37100,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(440), [anon_sym_GT_LPAREN] = ACTIONS(440), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2058), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2062), [sym_word] = ACTIONS(442), }, - [1020] = { - [sym_string] = STATE(1690), - [sym_simple_expansion] = STATE(1690), - [sym_string_expansion] = STATE(1690), - [sym_expansion] = STATE(1690), - [sym_command_substitution] = STATE(1690), - [sym_process_substitution] = STATE(1690), - [sym__special_characters] = ACTIONS(3500), - [anon_sym_DQUOTE] = ACTIONS(902), - [anon_sym_DOLLAR] = ACTIONS(904), - [sym_raw_string] = ACTIONS(3502), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(908), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(910), - [anon_sym_BQUOTE] = ACTIONS(912), - [anon_sym_LT_LPAREN] = ACTIONS(914), - [anon_sym_GT_LPAREN] = ACTIONS(914), + [1024] = { + [sym_string] = STATE(1698), + [sym_simple_expansion] = STATE(1698), + [sym_string_expansion] = STATE(1698), + [sym_expansion] = STATE(1698), + [sym_command_substitution] = STATE(1698), + [sym_process_substitution] = STATE(1698), + [sym__special_characters] = ACTIONS(3512), + [anon_sym_DQUOTE] = ACTIONS(904), + [anon_sym_DOLLAR] = ACTIONS(906), + [sym_raw_string] = ACTIONS(3514), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(910), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(912), + [anon_sym_BQUOTE] = ACTIONS(914), + [anon_sym_LT_LPAREN] = ACTIONS(916), + [anon_sym_GT_LPAREN] = ACTIONS(916), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3500), + [sym_word] = ACTIONS(3512), }, - [1021] = { - [aux_sym_concatenation_repeat1] = STATE(1691), - [sym__concat] = ACTIONS(2086), - [sym_variable_name] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_PIPE_AMP] = ACTIONS(788), - [anon_sym_AMP_AMP] = ACTIONS(788), - [anon_sym_PIPE_PIPE] = ACTIONS(788), - [sym__special_characters] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(1567), - [sym_raw_string] = ACTIONS(788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LT_LPAREN] = ACTIONS(788), - [anon_sym_GT_LPAREN] = ACTIONS(788), + [1025] = { + [aux_sym_concatenation_repeat1] = STATE(1699), + [sym__concat] = ACTIONS(2092), + [sym_variable_name] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [sym__special_characters] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(1571), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1567), - [sym_word] = ACTIONS(790), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1571), + [sym_word] = ACTIONS(792), }, - [1022] = { - [sym__concat] = ACTIONS(792), - [sym_variable_name] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [sym__special_characters] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(1569), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), + [1026] = { + [sym__concat] = ACTIONS(794), + [sym_variable_name] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1569), - [sym_word] = ACTIONS(794), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), + [sym_word] = ACTIONS(796), }, - [1023] = { + [1027] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(3504), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(3516), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -37079,262 +37178,193 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [1024] = { - [sym__concat] = ACTIONS(824), - [sym_variable_name] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_PIPE_AMP] = ACTIONS(824), - [anon_sym_AMP_AMP] = ACTIONS(824), - [anon_sym_PIPE_PIPE] = ACTIONS(824), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_LT_LPAREN] = ACTIONS(824), - [anon_sym_GT_LPAREN] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), - [sym_word] = ACTIONS(826), - }, - [1025] = { - [sym__concat] = ACTIONS(828), - [sym_variable_name] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [sym__special_characters] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1575), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1575), - [sym_word] = ACTIONS(830), - }, - [1026] = { - [sym__concat] = ACTIONS(832), - [sym_variable_name] = ACTIONS(832), + [1028] = { + [sym__concat] = ACTIONS(826), + [sym_variable_name] = ACTIONS(826), [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(826), [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(56), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1577), - [sym_word] = ACTIONS(834), - }, - [1027] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(3506), - [sym_comment] = ACTIONS(56), - }, - [1028] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1696), - [anon_sym_RBRACE] = ACTIONS(3508), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3510), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(828), }, [1029] = { - [sym_subscript] = STATE(1700), - [sym_variable_name] = ACTIONS(3512), - [anon_sym_DOLLAR] = ACTIONS(3514), - [anon_sym_DASH] = ACTIONS(3514), + [sym__concat] = ACTIONS(830), + [sym_variable_name] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [sym__special_characters] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(1579), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3516), - [anon_sym_STAR] = ACTIONS(3514), - [anon_sym_AT] = ACTIONS(3514), - [anon_sym_QMARK] = ACTIONS(3514), - [anon_sym_0] = ACTIONS(3518), - [anon_sym__] = ACTIONS(3518), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1579), + [sym_word] = ACTIONS(832), }, [1030] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1703), - [anon_sym_RBRACE] = ACTIONS(3520), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3522), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(834), + [sym_variable_name] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [sym__special_characters] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1581), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1581), + [sym_word] = ACTIONS(836), }, [1031] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1706), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3526), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(3518), + [sym_comment] = ACTIONS(56), }, [1032] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3528), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1704), + [anon_sym_RBRACE] = ACTIONS(3520), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3522), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1033] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3528), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_subscript] = STATE(1708), + [sym_variable_name] = ACTIONS(3524), + [anon_sym_DOLLAR] = ACTIONS(3526), + [anon_sym_DASH] = ACTIONS(3526), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3528), + [anon_sym_STAR] = ACTIONS(3526), + [anon_sym_AT] = ACTIONS(3526), + [anon_sym_QMARK] = ACTIONS(3526), + [anon_sym_0] = ACTIONS(3530), + [anon_sym__] = ACTIONS(3530), }, [1034] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(3528), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1711), + [anon_sym_RBRACE] = ACTIONS(3532), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3534), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1035] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(3528), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1714), + [anon_sym_RBRACE] = ACTIONS(3536), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3538), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1036] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3530), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3540), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, [1037] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3530), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3540), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -37355,292 +37385,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(384), }, [1038] = { - [sym_variable_assignment] = STATE(496), - [sym_subscript] = STATE(497), - [sym_concatenation] = STATE(496), - [sym_string] = STATE(490), - [sym_simple_expansion] = STATE(490), - [sym_string_expansion] = STATE(490), - [sym_expansion] = STATE(490), - [sym_command_substitution] = STATE(490), - [sym_process_substitution] = STATE(490), - [aux_sym_declaration_command_repeat1] = STATE(1038), - [sym_variable_name] = ACTIONS(3532), - [anon_sym_PIPE] = ACTIONS(3535), - [anon_sym_RPAREN] = ACTIONS(3537), - [anon_sym_PIPE_AMP] = ACTIONS(3537), - [anon_sym_AMP_AMP] = ACTIONS(3537), - [anon_sym_PIPE_PIPE] = ACTIONS(3537), - [sym__special_characters] = ACTIONS(3539), - [anon_sym_DQUOTE] = ACTIONS(3542), - [anon_sym_DOLLAR] = ACTIONS(3545), - [sym_raw_string] = ACTIONS(3548), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3551), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3554), - [anon_sym_BQUOTE] = ACTIONS(3557), - [anon_sym_LT_LPAREN] = ACTIONS(3560), - [anon_sym_GT_LPAREN] = ACTIONS(3560), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(3540), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3563), - [sym_word] = ACTIONS(3566), }, [1039] = { - [sym_string] = STATE(1709), - [sym_simple_expansion] = STATE(1709), - [sym_string_expansion] = STATE(1709), - [sym_expansion] = STATE(1709), - [sym_command_substitution] = STATE(1709), - [sym_process_substitution] = STATE(1709), - [sym__special_characters] = ACTIONS(3569), - [anon_sym_DQUOTE] = ACTIONS(926), - [anon_sym_DOLLAR] = ACTIONS(928), - [sym_raw_string] = ACTIONS(3571), - [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_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3569), - }, - [1040] = { - [aux_sym_concatenation_repeat1] = STATE(1710), - [sym__concat] = ACTIONS(2118), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_PIPE_AMP] = ACTIONS(788), - [anon_sym_AMP_AMP] = ACTIONS(788), - [anon_sym_PIPE_PIPE] = ACTIONS(788), - [sym__special_characters] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(1567), - [sym_raw_string] = ACTIONS(788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LT_LPAREN] = ACTIONS(788), - [anon_sym_GT_LPAREN] = ACTIONS(788), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1567), - [sym_word] = ACTIONS(790), - }, - [1041] = { - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [sym__special_characters] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(1569), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1569), - [sym_word] = ACTIONS(794), - }, - [1042] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(3573), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1043] = { - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_PIPE_AMP] = ACTIONS(824), - [anon_sym_AMP_AMP] = ACTIONS(824), - [anon_sym_PIPE_PIPE] = ACTIONS(824), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_LT_LPAREN] = ACTIONS(824), - [anon_sym_GT_LPAREN] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), - [sym_word] = ACTIONS(826), - }, - [1044] = { - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [sym__special_characters] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1575), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1575), - [sym_word] = ACTIONS(830), - }, - [1045] = { - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1577), - [sym_word] = ACTIONS(834), - }, - [1046] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(3575), - [sym_comment] = ACTIONS(56), - }, - [1047] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1715), - [anon_sym_RBRACE] = ACTIONS(3577), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3579), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1048] = { - [sym_subscript] = STATE(1719), - [sym_variable_name] = ACTIONS(3581), - [anon_sym_DOLLAR] = ACTIONS(3583), - [anon_sym_DASH] = ACTIONS(3583), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3585), - [anon_sym_STAR] = ACTIONS(3583), - [anon_sym_AT] = ACTIONS(3583), - [anon_sym_QMARK] = ACTIONS(3583), - [anon_sym_0] = ACTIONS(3587), - [anon_sym__] = ACTIONS(3587), - }, - [1049] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1722), - [anon_sym_RBRACE] = ACTIONS(3589), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3591), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1050] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1725), - [anon_sym_RBRACE] = ACTIONS(3593), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3595), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1051] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3597), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [1052] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3597), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(3540), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1040] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3542), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [1041] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3542), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -37660,56 +37453,293 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [1053] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(3597), + [1042] = { + [sym_variable_assignment] = STATE(497), + [sym_subscript] = STATE(498), + [sym_concatenation] = STATE(497), + [sym_string] = STATE(491), + [sym_simple_expansion] = STATE(491), + [sym_string_expansion] = STATE(491), + [sym_expansion] = STATE(491), + [sym_command_substitution] = STATE(491), + [sym_process_substitution] = STATE(491), + [aux_sym_declaration_command_repeat1] = STATE(1042), + [sym_variable_name] = ACTIONS(3544), + [anon_sym_PIPE] = ACTIONS(3547), + [anon_sym_RPAREN] = ACTIONS(3549), + [anon_sym_PIPE_AMP] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3549), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [sym__special_characters] = ACTIONS(3551), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_DOLLAR] = ACTIONS(3557), + [sym_raw_string] = ACTIONS(3560), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3566), + [anon_sym_BQUOTE] = ACTIONS(3569), + [anon_sym_LT_LPAREN] = ACTIONS(3572), + [anon_sym_GT_LPAREN] = ACTIONS(3572), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3575), + [sym_word] = ACTIONS(3578), + }, + [1043] = { + [sym_string] = STATE(1717), + [sym_simple_expansion] = STATE(1717), + [sym_string_expansion] = STATE(1717), + [sym_expansion] = STATE(1717), + [sym_command_substitution] = STATE(1717), + [sym_process_substitution] = STATE(1717), + [sym__special_characters] = ACTIONS(3581), + [anon_sym_DQUOTE] = ACTIONS(928), + [anon_sym_DOLLAR] = ACTIONS(930), + [sym_raw_string] = ACTIONS(3583), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(936), + [anon_sym_BQUOTE] = ACTIONS(938), + [anon_sym_LT_LPAREN] = ACTIONS(940), + [anon_sym_GT_LPAREN] = ACTIONS(940), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3581), + }, + [1044] = { + [aux_sym_concatenation_repeat1] = STATE(1718), + [sym__concat] = ACTIONS(2124), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [sym__special_characters] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(1571), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1571), + [sym_word] = ACTIONS(792), + }, + [1045] = { + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), + [sym_word] = ACTIONS(796), + }, + [1046] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(3585), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1047] = { + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [sym__special_characters] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1577), + [sym_word] = ACTIONS(828), + }, + [1048] = { + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [sym__special_characters] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(1579), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1579), + [sym_word] = ACTIONS(832), + }, + [1049] = { + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [sym__special_characters] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1581), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1581), + [sym_word] = ACTIONS(836), + }, + [1050] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(3587), + [sym_comment] = ACTIONS(56), + }, + [1051] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1723), + [anon_sym_RBRACE] = ACTIONS(3589), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3591), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1052] = { + [sym_subscript] = STATE(1727), + [sym_variable_name] = ACTIONS(3593), + [anon_sym_DOLLAR] = ACTIONS(3595), + [anon_sym_DASH] = ACTIONS(3595), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3597), + [anon_sym_STAR] = ACTIONS(3595), + [anon_sym_AT] = ACTIONS(3595), + [anon_sym_QMARK] = ACTIONS(3595), + [anon_sym_0] = ACTIONS(3599), + [anon_sym__] = ACTIONS(3599), + }, + [1053] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1730), + [anon_sym_RBRACE] = ACTIONS(3601), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3603), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1054] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(3597), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1733), + [anon_sym_RBRACE] = ACTIONS(3605), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3607), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1055] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3599), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3609), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, [1056] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3599), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3609), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -37730,561 +37760,595 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(384), }, [1057] = { - [sym_concatenation] = STATE(508), - [sym_string] = STATE(502), - [sym_simple_expansion] = STATE(502), - [sym_string_expansion] = STATE(502), - [sym_expansion] = STATE(502), - [sym_command_substitution] = STATE(502), - [sym_process_substitution] = STATE(502), - [aux_sym_unset_command_repeat1] = STATE(1057), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_RPAREN] = ACTIONS(3603), - [anon_sym_PIPE_AMP] = ACTIONS(3603), - [anon_sym_AMP_AMP] = ACTIONS(3603), - [anon_sym_PIPE_PIPE] = ACTIONS(3603), - [sym__special_characters] = ACTIONS(3605), - [anon_sym_DQUOTE] = ACTIONS(3608), - [anon_sym_DOLLAR] = ACTIONS(3611), - [sym_raw_string] = ACTIONS(3614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3617), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3620), - [anon_sym_BQUOTE] = ACTIONS(3623), - [anon_sym_LT_LPAREN] = ACTIONS(3626), - [anon_sym_GT_LPAREN] = ACTIONS(3626), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(3609), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3629), - [sym_word] = ACTIONS(3632), }, [1058] = { - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_EQ_TILDE] = ACTIONS(3056), - [anon_sym_EQ_EQ] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(3056), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(3609), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1888), + [sym_word] = ACTIONS(384), }, [1059] = { - [aux_sym_concatenation_repeat1] = STATE(1059), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(3635), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_EQ_TILDE] = ACTIONS(3056), - [anon_sym_EQ_EQ] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(3056), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3611), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1888), }, [1060] = { - [sym_file_descriptor] = ACTIONS(1923), - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(1923), - [anon_sym_PIPE_AMP] = ACTIONS(1923), - [anon_sym_AMP_AMP] = ACTIONS(1923), - [anon_sym_PIPE_PIPE] = ACTIONS(1923), - [anon_sym_EQ_TILDE] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(1923), - [anon_sym_AMP_GT] = ACTIONS(3061), - [anon_sym_AMP_GT_GT] = ACTIONS(1923), - [anon_sym_LT_AMP] = ACTIONS(1923), - [anon_sym_GT_AMP] = ACTIONS(1923), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_LT_LT_DASH] = ACTIONS(1923), - [anon_sym_LT_LT_LT] = ACTIONS(1923), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(1923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), - [anon_sym_BQUOTE] = ACTIONS(1923), - [anon_sym_LT_LPAREN] = ACTIONS(1923), - [anon_sym_GT_LPAREN] = ACTIONS(1923), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3611), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1925), + [sym_word] = ACTIONS(384), }, [1061] = { - [sym_concatenation] = STATE(1731), - [sym_string] = STATE(1730), - [sym_simple_expansion] = STATE(1730), - [sym_string_expansion] = STATE(1730), - [sym_expansion] = STATE(1730), - [sym_command_substitution] = STATE(1730), - [sym_process_substitution] = STATE(1730), - [anon_sym_RBRACE] = ACTIONS(3638), - [sym__special_characters] = ACTIONS(3640), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(3642), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [sym_concatenation] = STATE(509), + [sym_string] = STATE(503), + [sym_simple_expansion] = STATE(503), + [sym_string_expansion] = STATE(503), + [sym_expansion] = STATE(503), + [sym_command_substitution] = STATE(503), + [sym_process_substitution] = STATE(503), + [aux_sym_unset_command_repeat1] = STATE(1061), + [anon_sym_PIPE] = ACTIONS(3613), + [anon_sym_RPAREN] = ACTIONS(3615), + [anon_sym_PIPE_AMP] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_PIPE_PIPE] = ACTIONS(3615), + [sym__special_characters] = ACTIONS(3617), + [anon_sym_DQUOTE] = ACTIONS(3620), + [anon_sym_DOLLAR] = ACTIONS(3623), + [sym_raw_string] = ACTIONS(3626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3629), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3632), + [anon_sym_BQUOTE] = ACTIONS(3635), + [anon_sym_LT_LPAREN] = ACTIONS(3638), + [anon_sym_GT_LPAREN] = ACTIONS(3638), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3641), [sym_word] = ACTIONS(3644), }, [1062] = { - [sym_file_descriptor] = ACTIONS(1968), - [sym__concat] = ACTIONS(1968), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_EQ_TILDE] = ACTIONS(3066), + [anon_sym_EQ_EQ] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(3066), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(3066), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1892), + }, + [1063] = { + [aux_sym_concatenation_repeat1] = STATE(1063), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(3647), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_EQ_TILDE] = ACTIONS(3066), + [anon_sym_EQ_EQ] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(3066), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(3066), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1892), + }, + [1064] = { + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1968), - [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), [anon_sym_EQ_TILDE] = ACTIONS(3071), [anon_sym_EQ_EQ] = ACTIONS(3071), [anon_sym_LT] = ACTIONS(3071), [anon_sym_GT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_GT_GT] = ACTIONS(1927), [anon_sym_AMP_GT] = ACTIONS(3071), - [anon_sym_AMP_GT_GT] = ACTIONS(1968), - [anon_sym_LT_AMP] = ACTIONS(1968), - [anon_sym_GT_AMP] = ACTIONS(1968), + [anon_sym_AMP_GT_GT] = ACTIONS(1927), + [anon_sym_LT_AMP] = ACTIONS(1927), + [anon_sym_GT_AMP] = ACTIONS(1927), [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_LT_LT_DASH] = ACTIONS(1968), - [anon_sym_LT_LT_LT] = ACTIONS(1968), + [anon_sym_LT_LT_DASH] = ACTIONS(1927), + [anon_sym_LT_LT_LT] = ACTIONS(1927), [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1927), [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1929), + }, + [1065] = { + [sym_concatenation] = STATE(1739), + [sym_string] = STATE(1738), + [sym_simple_expansion] = STATE(1738), + [sym_string_expansion] = STATE(1738), + [sym_expansion] = STATE(1738), + [sym_command_substitution] = STATE(1738), + [sym_process_substitution] = STATE(1738), + [anon_sym_RBRACE] = ACTIONS(3650), + [sym__special_characters] = ACTIONS(3652), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(3654), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), [anon_sym_LT_LPAREN] = ACTIONS(1968), [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1970), - }, - [1063] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3646), - }, - [1064] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3648), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1065] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(3650), - [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3656), }, [1066] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1737), - [anon_sym_RBRACE] = ACTIONS(3652), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3654), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(1972), + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(3081), + [anon_sym_RPAREN] = ACTIONS(1972), + [anon_sym_PIPE_AMP] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_PIPE_PIPE] = ACTIONS(1972), + [anon_sym_EQ_TILDE] = ACTIONS(3081), + [anon_sym_EQ_EQ] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3081), + [anon_sym_GT_GT] = ACTIONS(1972), + [anon_sym_AMP_GT] = ACTIONS(3081), + [anon_sym_AMP_GT_GT] = ACTIONS(1972), + [anon_sym_LT_AMP] = ACTIONS(1972), + [anon_sym_GT_AMP] = ACTIONS(1972), + [anon_sym_LT_LT] = ACTIONS(3081), + [anon_sym_LT_LT_DASH] = ACTIONS(1972), + [anon_sym_LT_LT_LT] = ACTIONS(1972), + [sym__special_characters] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(3081), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [anon_sym_LT_LPAREN] = ACTIONS(1972), + [anon_sym_GT_LPAREN] = ACTIONS(1972), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1974), }, [1067] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1740), - [anon_sym_RBRACE] = ACTIONS(3656), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3658), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(3658), }, [1068] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1742), - [anon_sym_RBRACE] = ACTIONS(3638), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3660), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3660), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [1069] = { - [sym_file_descriptor] = ACTIONS(2022), - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(2022), - [anon_sym_PIPE_AMP] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), - [anon_sym_EQ_TILDE] = ACTIONS(3089), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(2022), - [anon_sym_AMP_GT] = ACTIONS(3089), - [anon_sym_AMP_GT_GT] = ACTIONS(2022), - [anon_sym_LT_AMP] = ACTIONS(2022), - [anon_sym_GT_AMP] = ACTIONS(2022), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_LT_LT_DASH] = ACTIONS(2022), - [anon_sym_LT_LT_LT] = ACTIONS(2022), - [sym__special_characters] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(3089), - [sym_raw_string] = ACTIONS(2022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_BQUOTE] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2022), - [anon_sym_GT_LPAREN] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(3662), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2024), }, [1070] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1745), + [anon_sym_RBRACE] = ACTIONS(3664), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3666), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3662), + [sym_word] = ACTIONS(866), }, [1071] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3664), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1748), + [anon_sym_RBRACE] = ACTIONS(3668), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3670), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [1072] = { - [sym_file_descriptor] = ACTIONS(2030), - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(3095), - [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_EQ_TILDE] = ACTIONS(3095), - [anon_sym_EQ_EQ] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_GT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(2030), - [anon_sym_AMP_GT] = ACTIONS(3095), - [anon_sym_AMP_GT_GT] = ACTIONS(2030), - [anon_sym_LT_AMP] = ACTIONS(2030), - [anon_sym_GT_AMP] = ACTIONS(2030), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_LT_LT_DASH] = ACTIONS(2030), - [anon_sym_LT_LT_LT] = ACTIONS(2030), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(2030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2032), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1750), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3672), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1073] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3666), - }, - [1074] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3638), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1075] = { - [sym_file_descriptor] = ACTIONS(2190), - [sym__concat] = ACTIONS(2190), + [sym_file_descriptor] = ACTIONS(2026), + [sym__concat] = ACTIONS(2026), [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_PIPE_AMP] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), [anon_sym_EQ_TILDE] = ACTIONS(3099), [anon_sym_EQ_EQ] = ACTIONS(3099), [anon_sym_LT] = ACTIONS(3099), [anon_sym_GT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2026), [anon_sym_AMP_GT] = ACTIONS(3099), - [anon_sym_AMP_GT_GT] = ACTIONS(2190), - [anon_sym_LT_AMP] = ACTIONS(2190), - [anon_sym_GT_AMP] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2026), + [anon_sym_LT_AMP] = ACTIONS(2026), + [anon_sym_GT_AMP] = ACTIONS(2026), [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_LT_LT_DASH] = ACTIONS(2190), - [anon_sym_LT_LT_LT] = ACTIONS(2190), + [anon_sym_LT_LT_DASH] = ACTIONS(2026), + [anon_sym_LT_LT_LT] = ACTIONS(2026), [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), - [anon_sym_BQUOTE] = ACTIONS(2190), - [anon_sym_LT_LPAREN] = ACTIONS(2190), - [anon_sym_GT_LPAREN] = ACTIONS(2190), + [sym_raw_string] = ACTIONS(2026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2026), + [anon_sym_GT_LPAREN] = ACTIONS(2026), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2192), + [sym_word] = ACTIONS(2028), + }, + [1074] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3674), + }, + [1075] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3676), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1076] = { - [sym_file_descriptor] = ACTIONS(2396), - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_RPAREN] = ACTIONS(2396), - [anon_sym_PIPE_AMP] = ACTIONS(2396), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [anon_sym_EQ_TILDE] = ACTIONS(3101), - [anon_sym_EQ_EQ] = ACTIONS(3101), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_GT_GT] = ACTIONS(2396), - [anon_sym_AMP_GT] = ACTIONS(3101), - [anon_sym_AMP_GT_GT] = ACTIONS(2396), - [anon_sym_LT_AMP] = ACTIONS(2396), - [anon_sym_GT_AMP] = ACTIONS(2396), - [anon_sym_LT_LT] = ACTIONS(3101), - [anon_sym_LT_LT_DASH] = ACTIONS(2396), - [anon_sym_LT_LT_LT] = ACTIONS(2396), - [sym__special_characters] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(3101), - [sym_raw_string] = ACTIONS(2396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_LT_LPAREN] = ACTIONS(2396), - [anon_sym_GT_LPAREN] = ACTIONS(2396), + [sym_file_descriptor] = ACTIONS(2034), + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_RPAREN] = ACTIONS(2034), + [anon_sym_PIPE_AMP] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_PIPE_PIPE] = ACTIONS(2034), + [anon_sym_EQ_TILDE] = ACTIONS(3105), + [anon_sym_EQ_EQ] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_GT] = ACTIONS(3105), + [anon_sym_GT_GT] = ACTIONS(2034), + [anon_sym_AMP_GT] = ACTIONS(3105), + [anon_sym_AMP_GT_GT] = ACTIONS(2034), + [anon_sym_LT_AMP] = ACTIONS(2034), + [anon_sym_GT_AMP] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(3105), + [anon_sym_LT_LT_DASH] = ACTIONS(2034), + [anon_sym_LT_LT_LT] = ACTIONS(2034), + [sym__special_characters] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(3105), + [sym_raw_string] = ACTIONS(2034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), + [anon_sym_BQUOTE] = ACTIONS(2034), + [anon_sym_LT_LPAREN] = ACTIONS(2034), + [anon_sym_GT_LPAREN] = ACTIONS(2034), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2398), + [sym_word] = ACTIONS(2036), }, [1077] = { - [sym_compound_statement] = STATE(1746), - [anon_sym_LBRACE] = ACTIONS(2076), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3678), }, [1078] = { - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_RPAREN] = ACTIONS(3670), - [anon_sym_PIPE_AMP] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3670), - [anon_sym_PIPE_PIPE] = ACTIONS(3670), - [anon_sym_BQUOTE] = ACTIONS(3670), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3650), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1079] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_RPAREN] = ACTIONS(3670), - [anon_sym_PIPE_AMP] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3670), - [anon_sym_PIPE_PIPE] = ACTIONS(3670), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_file_descriptor] = ACTIONS(2196), + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(3109), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_EQ_TILDE] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3109), + [anon_sym_GT] = ACTIONS(3109), + [anon_sym_GT_GT] = ACTIONS(2196), + [anon_sym_AMP_GT] = ACTIONS(3109), + [anon_sym_AMP_GT_GT] = ACTIONS(2196), + [anon_sym_LT_AMP] = ACTIONS(2196), + [anon_sym_GT_AMP] = ACTIONS(2196), + [anon_sym_LT_LT] = ACTIONS(3109), + [anon_sym_LT_LT_DASH] = ACTIONS(2196), + [anon_sym_LT_LT_LT] = ACTIONS(2196), + [sym__special_characters] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(3109), + [sym_raw_string] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [sym_word] = ACTIONS(2198), }, [1080] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3672), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_PIPE_PIPE] = ACTIONS(3672), + [sym_file_descriptor] = ACTIONS(2402), + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_PIPE_AMP] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [anon_sym_EQ_TILDE] = ACTIONS(3111), + [anon_sym_EQ_EQ] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3111), + [anon_sym_GT_GT] = ACTIONS(2402), + [anon_sym_AMP_GT] = ACTIONS(3111), + [anon_sym_AMP_GT_GT] = ACTIONS(2402), + [anon_sym_LT_AMP] = ACTIONS(2402), + [anon_sym_GT_AMP] = ACTIONS(2402), + [anon_sym_LT_LT] = ACTIONS(3111), + [anon_sym_LT_LT_DASH] = ACTIONS(2402), + [anon_sym_LT_LT_LT] = ACTIONS(2402), + [sym__special_characters] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(3111), + [sym_raw_string] = ACTIONS(2402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), + [anon_sym_BQUOTE] = ACTIONS(2402), + [anon_sym_LT_LPAREN] = ACTIONS(2402), + [anon_sym_GT_LPAREN] = ACTIONS(2402), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2404), }, [1081] = { + [sym_compound_statement] = STATE(1754), + [anon_sym_LBRACE] = ACTIONS(2082), + [sym_comment] = ACTIONS(56), + }, + [1082] = { + [anon_sym_PIPE] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3682), + [anon_sym_PIPE_AMP] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_BQUOTE] = ACTIONS(3682), + [sym_comment] = ACTIONS(56), + }, + [1083] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3672), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_PIPE_PIPE] = ACTIONS(3672), + [anon_sym_PIPE] = ACTIONS(3680), + [anon_sym_RPAREN] = ACTIONS(3682), + [anon_sym_PIPE_AMP] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -38304,150 +38368,185 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [1082] = { - [sym_concatenation] = STATE(1749), - [sym_string] = STATE(1748), - [sym_simple_expansion] = STATE(1748), - [sym_string_expansion] = STATE(1748), - [sym_expansion] = STATE(1748), - [sym_command_substitution] = STATE(1748), - [sym_process_substitution] = STATE(1748), - [sym__special_characters] = ACTIONS(3674), - [anon_sym_DQUOTE] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2220), - [sym_raw_string] = ACTIONS(3676), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2226), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2230), - [anon_sym_GT_LPAREN] = ACTIONS(2230), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3678), - }, - [1083] = { - [aux_sym_concatenation_repeat1] = STATE(511), - [sym_file_descriptor] = ACTIONS(1553), - [sym__concat] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_PIPE_AMP] = ACTIONS(1553), - [anon_sym_AMP_AMP] = ACTIONS(1553), - [anon_sym_PIPE_PIPE] = ACTIONS(1553), - [anon_sym_EQ_TILDE] = ACTIONS(1551), - [anon_sym_EQ_EQ] = ACTIONS(1551), - [anon_sym_LT] = ACTIONS(1551), - [anon_sym_GT] = ACTIONS(1551), - [anon_sym_GT_GT] = ACTIONS(1553), - [anon_sym_AMP_GT] = ACTIONS(1551), - [anon_sym_AMP_GT_GT] = ACTIONS(1553), - [anon_sym_LT_AMP] = ACTIONS(1553), - [anon_sym_GT_AMP] = ACTIONS(1553), - [anon_sym_LT_LT] = ACTIONS(1551), - [anon_sym_LT_LT_DASH] = ACTIONS(1553), - [anon_sym_LT_LT_LT] = ACTIONS(1553), - [sym__special_characters] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(1551), - [sym_raw_string] = ACTIONS(1553), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1553), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1553), - [anon_sym_BQUOTE] = ACTIONS(1553), - [anon_sym_LT_LPAREN] = ACTIONS(1553), - [anon_sym_GT_LPAREN] = ACTIONS(1553), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1555), - }, [1084] = { - [aux_sym_concatenation_repeat1] = STATE(511), - [sym_file_descriptor] = ACTIONS(1559), - [sym__concat] = ACTIONS(944), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_RPAREN] = ACTIONS(1559), - [anon_sym_PIPE_AMP] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_PIPE_PIPE] = ACTIONS(1559), - [anon_sym_EQ_TILDE] = ACTIONS(1557), - [anon_sym_EQ_EQ] = ACTIONS(1557), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [anon_sym_GT_GT] = ACTIONS(1559), - [anon_sym_AMP_GT] = ACTIONS(1557), - [anon_sym_AMP_GT_GT] = ACTIONS(1559), - [anon_sym_LT_AMP] = ACTIONS(1559), - [anon_sym_GT_AMP] = ACTIONS(1559), - [anon_sym_LT_LT] = ACTIONS(1557), - [anon_sym_LT_LT_DASH] = ACTIONS(1559), - [anon_sym_LT_LT_LT] = ACTIONS(1559), - [sym__special_characters] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1557), - [sym_raw_string] = ACTIONS(1559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), - [anon_sym_BQUOTE] = ACTIONS(1559), - [anon_sym_LT_LPAREN] = ACTIONS(1559), - [anon_sym_GT_LPAREN] = ACTIONS(1559), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3684), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1561), }, [1085] = { - [sym_file_descriptor] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_RPAREN] = ACTIONS(1559), - [anon_sym_PIPE_AMP] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_PIPE_PIPE] = ACTIONS(1559), - [anon_sym_EQ_TILDE] = ACTIONS(1557), - [anon_sym_EQ_EQ] = ACTIONS(1557), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [anon_sym_GT_GT] = ACTIONS(1559), - [anon_sym_AMP_GT] = ACTIONS(1557), - [anon_sym_AMP_GT_GT] = ACTIONS(1559), - [anon_sym_LT_AMP] = ACTIONS(1559), - [anon_sym_GT_AMP] = ACTIONS(1559), - [anon_sym_LT_LT] = ACTIONS(1557), - [anon_sym_LT_LT_DASH] = ACTIONS(1559), - [anon_sym_LT_LT_LT] = ACTIONS(1559), - [sym__special_characters] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1557), - [sym_raw_string] = ACTIONS(1559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), - [anon_sym_BQUOTE] = ACTIONS(1559), - [anon_sym_LT_LPAREN] = ACTIONS(1559), - [anon_sym_GT_LPAREN] = ACTIONS(1559), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3684), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1561), + [sym_word] = ACTIONS(384), }, [1086] = { - [aux_sym_concatenation_repeat1] = STATE(1751), - [sym_file_descriptor] = ACTIONS(754), - [sym__concat] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(758), - [anon_sym_RPAREN] = ACTIONS(754), - [anon_sym_PIPE_AMP] = ACTIONS(754), - [anon_sym_AMP_AMP] = ACTIONS(754), - [anon_sym_PIPE_PIPE] = ACTIONS(754), - [anon_sym_LT] = ACTIONS(758), - [anon_sym_GT] = ACTIONS(758), - [anon_sym_GT_GT] = ACTIONS(754), - [anon_sym_AMP_GT] = ACTIONS(758), - [anon_sym_AMP_GT_GT] = ACTIONS(754), - [anon_sym_LT_AMP] = ACTIONS(754), - [anon_sym_GT_AMP] = ACTIONS(754), - [anon_sym_LT_LT] = ACTIONS(758), - [anon_sym_LT_LT_DASH] = ACTIONS(754), - [anon_sym_LT_LT_LT] = ACTIONS(754), + [sym_concatenation] = STATE(1757), + [sym_string] = STATE(1756), + [sym_simple_expansion] = STATE(1756), + [sym_string_expansion] = STATE(1756), + [sym_expansion] = STATE(1756), + [sym_command_substitution] = STATE(1756), + [sym_process_substitution] = STATE(1756), + [sym__special_characters] = ACTIONS(3686), + [anon_sym_DQUOTE] = ACTIONS(2224), + [anon_sym_DOLLAR] = ACTIONS(2226), + [sym_raw_string] = ACTIONS(3688), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2232), + [anon_sym_BQUOTE] = ACTIONS(2234), + [anon_sym_LT_LPAREN] = ACTIONS(2236), + [anon_sym_GT_LPAREN] = ACTIONS(2236), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3690), }, [1087] = { + [aux_sym_concatenation_repeat1] = STATE(512), + [sym_file_descriptor] = ACTIONS(1557), + [sym__concat] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(1555), + [anon_sym_RPAREN] = ACTIONS(1557), + [anon_sym_PIPE_AMP] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1557), + [anon_sym_EQ_TILDE] = ACTIONS(1555), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_GT_GT] = ACTIONS(1557), + [anon_sym_AMP_GT] = ACTIONS(1555), + [anon_sym_AMP_GT_GT] = ACTIONS(1557), + [anon_sym_LT_AMP] = ACTIONS(1557), + [anon_sym_GT_AMP] = ACTIONS(1557), + [anon_sym_LT_LT] = ACTIONS(1555), + [anon_sym_LT_LT_DASH] = ACTIONS(1557), + [anon_sym_LT_LT_LT] = ACTIONS(1557), + [sym__special_characters] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(1555), + [sym_raw_string] = ACTIONS(1557), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1557), + [anon_sym_BQUOTE] = ACTIONS(1557), + [anon_sym_LT_LPAREN] = ACTIONS(1557), + [anon_sym_GT_LPAREN] = ACTIONS(1557), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1559), + }, + [1088] = { + [aux_sym_concatenation_repeat1] = STATE(512), + [sym_file_descriptor] = ACTIONS(1563), + [sym__concat] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1563), + [anon_sym_PIPE_AMP] = ACTIONS(1563), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_PIPE_PIPE] = ACTIONS(1563), + [anon_sym_EQ_TILDE] = ACTIONS(1561), + [anon_sym_EQ_EQ] = ACTIONS(1561), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1563), + [anon_sym_AMP_GT] = ACTIONS(1561), + [anon_sym_AMP_GT_GT] = ACTIONS(1563), + [anon_sym_LT_AMP] = ACTIONS(1563), + [anon_sym_GT_AMP] = ACTIONS(1563), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_LT_LT_DASH] = ACTIONS(1563), + [anon_sym_LT_LT_LT] = ACTIONS(1563), + [sym__special_characters] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_DOLLAR] = ACTIONS(1561), + [sym_raw_string] = ACTIONS(1563), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [anon_sym_LT_LPAREN] = ACTIONS(1563), + [anon_sym_GT_LPAREN] = ACTIONS(1563), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1565), + }, + [1089] = { + [sym_file_descriptor] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1563), + [anon_sym_PIPE_AMP] = ACTIONS(1563), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_PIPE_PIPE] = ACTIONS(1563), + [anon_sym_EQ_TILDE] = ACTIONS(1561), + [anon_sym_EQ_EQ] = ACTIONS(1561), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1563), + [anon_sym_AMP_GT] = ACTIONS(1561), + [anon_sym_AMP_GT_GT] = ACTIONS(1563), + [anon_sym_LT_AMP] = ACTIONS(1563), + [anon_sym_GT_AMP] = ACTIONS(1563), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_LT_LT_DASH] = ACTIONS(1563), + [anon_sym_LT_LT_LT] = ACTIONS(1563), + [sym__special_characters] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_DOLLAR] = ACTIONS(1561), + [sym_raw_string] = ACTIONS(1563), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [anon_sym_LT_LPAREN] = ACTIONS(1563), + [anon_sym_GT_LPAREN] = ACTIONS(1563), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1565), + }, + [1090] = { + [aux_sym_concatenation_repeat1] = STATE(1759), + [sym_file_descriptor] = ACTIONS(756), + [sym__concat] = ACTIONS(3692), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_PIPE_AMP] = ACTIONS(756), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(760), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_AMP_GT] = ACTIONS(760), + [anon_sym_AMP_GT_GT] = ACTIONS(756), + [anon_sym_LT_AMP] = ACTIONS(756), + [anon_sym_GT_AMP] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(760), + [anon_sym_LT_LT_DASH] = ACTIONS(756), + [anon_sym_LT_LT_LT] = ACTIONS(756), + [sym_comment] = ACTIONS(56), + }, + [1091] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1753), - [anon_sym_DQUOTE] = ACTIONS(3682), + [aux_sym_string_repeat1] = STATE(1761), + [anon_sym_DQUOTE] = ACTIONS(3694), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -38455,71 +38554,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [1088] = { - [sym_string] = STATE(1755), - [anon_sym_DQUOTE] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(3684), - [sym_raw_string] = ACTIONS(3686), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_DASH] = ACTIONS(3684), + [1092] = { + [sym_string] = STATE(1763), + [anon_sym_DQUOTE] = ACTIONS(2224), + [anon_sym_DOLLAR] = ACTIONS(3696), + [sym_raw_string] = ACTIONS(3698), + [anon_sym_POUND] = ACTIONS(3696), + [anon_sym_DASH] = ACTIONS(3696), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3688), - [anon_sym_STAR] = ACTIONS(3684), - [anon_sym_AT] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3684), - [anon_sym_0] = ACTIONS(3690), - [anon_sym__] = ACTIONS(3690), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3696), + [anon_sym_AT] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_0] = ACTIONS(3702), + [anon_sym__] = ACTIONS(3702), }, - [1089] = { - [aux_sym_concatenation_repeat1] = STATE(1751), - [sym_file_descriptor] = ACTIONS(770), - [sym__concat] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(770), - [anon_sym_PIPE_AMP] = ACTIONS(770), - [anon_sym_AMP_AMP] = ACTIONS(770), - [anon_sym_PIPE_PIPE] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_AMP_GT] = ACTIONS(772), - [anon_sym_AMP_GT_GT] = ACTIONS(770), - [anon_sym_LT_AMP] = ACTIONS(770), - [anon_sym_GT_AMP] = ACTIONS(770), - [anon_sym_LT_LT] = ACTIONS(772), - [anon_sym_LT_LT_DASH] = ACTIONS(770), - [anon_sym_LT_LT_LT] = ACTIONS(770), + [1093] = { + [aux_sym_concatenation_repeat1] = STATE(1759), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(3692), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_AMP_GT] = ACTIONS(774), + [anon_sym_AMP_GT_GT] = ACTIONS(772), + [anon_sym_LT_AMP] = ACTIONS(772), + [anon_sym_GT_AMP] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_LT_LT_DASH] = ACTIONS(772), + [anon_sym_LT_LT_LT] = ACTIONS(772), [sym_comment] = ACTIONS(56), }, - [1090] = { - [sym_subscript] = STATE(1761), - [sym_variable_name] = ACTIONS(3692), - [anon_sym_DOLLAR] = ACTIONS(3694), - [anon_sym_POUND] = ACTIONS(3696), - [anon_sym_DASH] = ACTIONS(3694), + [1094] = { + [sym_subscript] = STATE(1769), + [sym_variable_name] = ACTIONS(3704), + [anon_sym_DOLLAR] = ACTIONS(3706), + [anon_sym_POUND] = ACTIONS(3708), + [anon_sym_DASH] = ACTIONS(3706), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3698), - [anon_sym_STAR] = ACTIONS(3694), - [anon_sym_AT] = ACTIONS(3694), - [anon_sym_QMARK] = ACTIONS(3694), - [anon_sym_0] = ACTIONS(3700), - [anon_sym__] = ACTIONS(3700), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3710), + [anon_sym_STAR] = ACTIONS(3706), + [anon_sym_AT] = ACTIONS(3706), + [anon_sym_QMARK] = ACTIONS(3706), + [anon_sym_0] = ACTIONS(3712), + [anon_sym__] = ACTIONS(3712), }, - [1091] = { - [sym_for_statement] = STATE(1762), - [sym_while_statement] = STATE(1762), - [sym_if_statement] = STATE(1762), - [sym_case_statement] = STATE(1762), - [sym_function_definition] = STATE(1762), - [sym_subshell] = STATE(1762), - [sym_pipeline] = STATE(1762), - [sym_list] = STATE(1762), - [sym_command] = STATE(1762), + [1095] = { + [sym_for_statement] = STATE(1770), + [sym_while_statement] = STATE(1770), + [sym_if_statement] = STATE(1770), + [sym_case_statement] = STATE(1770), + [sym_function_definition] = STATE(1770), + [sym_subshell] = STATE(1770), + [sym_pipeline] = STATE(1770), + [sym_list] = STATE(1770), + [sym_command] = STATE(1770), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1762), - [sym_variable_assignment] = STATE(1763), - [sym_declaration_command] = STATE(1762), - [sym_unset_command] = STATE(1762), + [sym_bracket_command] = STATE(1770), + [sym_variable_assignment] = STATE(1771), + [sym_declaration_command] = STATE(1770), + [sym_unset_command] = STATE(1770), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -38566,21 +38665,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [1092] = { - [sym_for_statement] = STATE(1764), - [sym_while_statement] = STATE(1764), - [sym_if_statement] = STATE(1764), - [sym_case_statement] = STATE(1764), - [sym_function_definition] = STATE(1764), - [sym_subshell] = STATE(1764), - [sym_pipeline] = STATE(1764), - [sym_list] = STATE(1764), - [sym_command] = STATE(1764), + [1096] = { + [sym_for_statement] = STATE(1772), + [sym_while_statement] = STATE(1772), + [sym_if_statement] = STATE(1772), + [sym_case_statement] = STATE(1772), + [sym_function_definition] = STATE(1772), + [sym_subshell] = STATE(1772), + [sym_pipeline] = STATE(1772), + [sym_list] = STATE(1772), + [sym_command] = STATE(1772), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1764), - [sym_variable_assignment] = STATE(1765), - [sym_declaration_command] = STATE(1764), - [sym_unset_command] = STATE(1764), + [sym_bracket_command] = STATE(1772), + [sym_variable_assignment] = STATE(1773), + [sym_declaration_command] = STATE(1772), + [sym_unset_command] = STATE(1772), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -38627,21 +38726,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [1093] = { - [sym_for_statement] = STATE(1766), - [sym_while_statement] = STATE(1766), - [sym_if_statement] = STATE(1766), - [sym_case_statement] = STATE(1766), - [sym_function_definition] = STATE(1766), - [sym_subshell] = STATE(1766), - [sym_pipeline] = STATE(1766), - [sym_list] = STATE(1766), - [sym_command] = STATE(1766), + [1097] = { + [sym_for_statement] = STATE(1774), + [sym_while_statement] = STATE(1774), + [sym_if_statement] = STATE(1774), + [sym_case_statement] = STATE(1774), + [sym_function_definition] = STATE(1774), + [sym_subshell] = STATE(1774), + [sym_pipeline] = STATE(1774), + [sym_list] = STATE(1774), + [sym_command] = STATE(1774), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1766), - [sym_variable_assignment] = STATE(1767), - [sym_declaration_command] = STATE(1766), - [sym_unset_command] = STATE(1766), + [sym_bracket_command] = STATE(1774), + [sym_variable_assignment] = STATE(1775), + [sym_declaration_command] = STATE(1774), + [sym_unset_command] = STATE(1774), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -38688,300 +38787,300 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [1094] = { - [sym_file_descriptor] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(770), - [anon_sym_PIPE_AMP] = ACTIONS(770), - [anon_sym_AMP_AMP] = ACTIONS(770), - [anon_sym_PIPE_PIPE] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_AMP_GT] = ACTIONS(772), - [anon_sym_AMP_GT_GT] = ACTIONS(770), - [anon_sym_LT_AMP] = ACTIONS(770), - [anon_sym_GT_AMP] = ACTIONS(770), - [anon_sym_LT_LT] = ACTIONS(772), - [anon_sym_LT_LT_DASH] = ACTIONS(770), - [anon_sym_LT_LT_LT] = ACTIONS(770), - [anon_sym_BQUOTE] = ACTIONS(770), - [sym_comment] = ACTIONS(56), - }, - [1095] = { - [sym_file_descriptor] = ACTIONS(2436), - [anon_sym_PIPE] = ACTIONS(3702), - [anon_sym_RPAREN] = ACTIONS(2436), - [anon_sym_PIPE_AMP] = ACTIONS(2436), - [anon_sym_AMP_AMP] = ACTIONS(2436), - [anon_sym_PIPE_PIPE] = ACTIONS(2436), - [anon_sym_LT] = ACTIONS(3702), - [anon_sym_GT] = ACTIONS(3702), - [anon_sym_GT_GT] = ACTIONS(2436), - [anon_sym_AMP_GT] = ACTIONS(3702), - [anon_sym_AMP_GT_GT] = ACTIONS(2436), - [anon_sym_LT_AMP] = ACTIONS(2436), - [anon_sym_GT_AMP] = ACTIONS(2436), - [anon_sym_LT_LT] = ACTIONS(3702), - [anon_sym_LT_LT_DASH] = ACTIONS(2436), - [anon_sym_LT_LT_LT] = ACTIONS(2436), - [anon_sym_BQUOTE] = ACTIONS(2436), - [sym_comment] = ACTIONS(56), - }, - [1096] = { - [sym_simple_expansion] = STATE(1218), - [sym_expansion] = STATE(1218), - [aux_sym_heredoc_repeat1] = STATE(1769), - [sym__heredoc_middle] = ACTIONS(2440), - [sym__heredoc_end] = ACTIONS(3704), - [anon_sym_DOLLAR] = ACTIONS(2444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), - [sym_comment] = ACTIONS(56), - }, - [1097] = { - [sym_file_descriptor] = ACTIONS(2448), - [anon_sym_PIPE] = ACTIONS(3706), - [anon_sym_RPAREN] = ACTIONS(2448), - [anon_sym_PIPE_AMP] = ACTIONS(2448), - [anon_sym_AMP_AMP] = ACTIONS(2448), - [anon_sym_PIPE_PIPE] = ACTIONS(2448), - [anon_sym_LT] = ACTIONS(3706), - [anon_sym_GT] = ACTIONS(3706), - [anon_sym_GT_GT] = ACTIONS(2448), - [anon_sym_AMP_GT] = ACTIONS(3706), - [anon_sym_AMP_GT_GT] = ACTIONS(2448), - [anon_sym_LT_AMP] = ACTIONS(2448), - [anon_sym_GT_AMP] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(3706), - [anon_sym_LT_LT_DASH] = ACTIONS(2448), - [anon_sym_LT_LT_LT] = ACTIONS(2448), - [anon_sym_BQUOTE] = ACTIONS(2448), - [sym_comment] = ACTIONS(56), - }, [1098] = { - [aux_sym_concatenation_repeat1] = STATE(1751), - [sym_file_descriptor] = ACTIONS(2452), - [sym__concat] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3708), - [anon_sym_RPAREN] = ACTIONS(2452), - [anon_sym_PIPE_AMP] = ACTIONS(2452), - [anon_sym_AMP_AMP] = ACTIONS(2452), - [anon_sym_PIPE_PIPE] = ACTIONS(2452), - [anon_sym_LT] = ACTIONS(3708), - [anon_sym_GT] = ACTIONS(3708), - [anon_sym_GT_GT] = ACTIONS(2452), - [anon_sym_AMP_GT] = ACTIONS(3708), - [anon_sym_AMP_GT_GT] = ACTIONS(2452), - [anon_sym_LT_AMP] = ACTIONS(2452), - [anon_sym_GT_AMP] = ACTIONS(2452), - [anon_sym_LT_LT] = ACTIONS(3708), - [anon_sym_LT_LT_DASH] = ACTIONS(2452), - [anon_sym_LT_LT_LT] = ACTIONS(2452), + [sym_file_descriptor] = ACTIONS(772), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_AMP_GT] = ACTIONS(774), + [anon_sym_AMP_GT_GT] = ACTIONS(772), + [anon_sym_LT_AMP] = ACTIONS(772), + [anon_sym_GT_AMP] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_LT_LT_DASH] = ACTIONS(772), + [anon_sym_LT_LT_LT] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), [sym_comment] = ACTIONS(56), }, [1099] = { - [aux_sym_concatenation_repeat1] = STATE(1751), - [sym_file_descriptor] = ACTIONS(2456), - [sym__concat] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_RPAREN] = ACTIONS(2456), - [anon_sym_PIPE_AMP] = ACTIONS(2456), - [anon_sym_AMP_AMP] = ACTIONS(2456), - [anon_sym_PIPE_PIPE] = ACTIONS(2456), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(2456), - [anon_sym_AMP_GT] = ACTIONS(3710), - [anon_sym_AMP_GT_GT] = ACTIONS(2456), - [anon_sym_LT_AMP] = ACTIONS(2456), - [anon_sym_GT_AMP] = ACTIONS(2456), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_LT_LT_DASH] = ACTIONS(2456), - [anon_sym_LT_LT_LT] = ACTIONS(2456), + [sym_file_descriptor] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(3714), + [anon_sym_RPAREN] = ACTIONS(2442), + [anon_sym_PIPE_AMP] = ACTIONS(2442), + [anon_sym_AMP_AMP] = ACTIONS(2442), + [anon_sym_PIPE_PIPE] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(3714), + [anon_sym_GT] = ACTIONS(3714), + [anon_sym_GT_GT] = ACTIONS(2442), + [anon_sym_AMP_GT] = ACTIONS(3714), + [anon_sym_AMP_GT_GT] = ACTIONS(2442), + [anon_sym_LT_AMP] = ACTIONS(2442), + [anon_sym_GT_AMP] = ACTIONS(2442), + [anon_sym_LT_LT] = ACTIONS(3714), + [anon_sym_LT_LT_DASH] = ACTIONS(2442), + [anon_sym_LT_LT_LT] = ACTIONS(2442), + [anon_sym_BQUOTE] = ACTIONS(2442), [sym_comment] = ACTIONS(56), }, [1100] = { - [sym_file_descriptor] = ACTIONS(2456), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_RPAREN] = ACTIONS(2456), - [anon_sym_PIPE_AMP] = ACTIONS(2456), - [anon_sym_AMP_AMP] = ACTIONS(2456), - [anon_sym_PIPE_PIPE] = ACTIONS(2456), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(2456), - [anon_sym_AMP_GT] = ACTIONS(3710), - [anon_sym_AMP_GT_GT] = ACTIONS(2456), - [anon_sym_LT_AMP] = ACTIONS(2456), - [anon_sym_GT_AMP] = ACTIONS(2456), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_LT_LT_DASH] = ACTIONS(2456), - [anon_sym_LT_LT_LT] = ACTIONS(2456), - [anon_sym_BQUOTE] = ACTIONS(2456), + [sym_simple_expansion] = STATE(1222), + [sym_expansion] = STATE(1222), + [aux_sym_heredoc_repeat1] = STATE(1777), + [sym__heredoc_middle] = ACTIONS(2446), + [sym__heredoc_end] = ACTIONS(3716), + [anon_sym_DOLLAR] = ACTIONS(2450), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2452), [sym_comment] = ACTIONS(56), }, [1101] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1101), - [sym_file_descriptor] = ACTIONS(3712), - [anon_sym_PIPE] = ACTIONS(3715), - [anon_sym_RPAREN] = ACTIONS(3717), - [anon_sym_PIPE_AMP] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3719), - [anon_sym_GT] = ACTIONS(3719), - [anon_sym_GT_GT] = ACTIONS(3722), - [anon_sym_AMP_GT] = ACTIONS(3719), - [anon_sym_AMP_GT_GT] = ACTIONS(3722), - [anon_sym_LT_AMP] = ACTIONS(3722), - [anon_sym_GT_AMP] = ACTIONS(3722), - [anon_sym_LT_LT] = ACTIONS(3725), - [anon_sym_LT_LT_DASH] = ACTIONS(3728), - [anon_sym_LT_LT_LT] = ACTIONS(3731), + [sym_file_descriptor] = ACTIONS(2454), + [anon_sym_PIPE] = ACTIONS(3718), + [anon_sym_RPAREN] = ACTIONS(2454), + [anon_sym_PIPE_AMP] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(2454), + [anon_sym_PIPE_PIPE] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(3718), + [anon_sym_GT] = ACTIONS(3718), + [anon_sym_GT_GT] = ACTIONS(2454), + [anon_sym_AMP_GT] = ACTIONS(3718), + [anon_sym_AMP_GT_GT] = ACTIONS(2454), + [anon_sym_LT_AMP] = ACTIONS(2454), + [anon_sym_GT_AMP] = ACTIONS(2454), + [anon_sym_LT_LT] = ACTIONS(3718), + [anon_sym_LT_LT_DASH] = ACTIONS(2454), + [anon_sym_LT_LT_LT] = ACTIONS(2454), + [anon_sym_BQUOTE] = ACTIONS(2454), [sym_comment] = ACTIONS(56), }, [1102] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1101), - [sym_file_descriptor] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_RPAREN] = ACTIONS(3736), - [anon_sym_PIPE_AMP] = ACTIONS(3736), - [anon_sym_AMP_AMP] = ACTIONS(3736), - [anon_sym_PIPE_PIPE] = ACTIONS(3736), - [anon_sym_LT] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_AMP_GT] = ACTIONS(988), - [anon_sym_AMP_GT_GT] = ACTIONS(990), - [anon_sym_LT_AMP] = ACTIONS(990), - [anon_sym_GT_AMP] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(996), + [aux_sym_concatenation_repeat1] = STATE(1759), + [sym_file_descriptor] = ACTIONS(2458), + [sym__concat] = ACTIONS(3692), + [anon_sym_PIPE] = ACTIONS(3720), + [anon_sym_RPAREN] = ACTIONS(2458), + [anon_sym_PIPE_AMP] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(3720), + [anon_sym_GT] = ACTIONS(3720), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_AMP_GT] = ACTIONS(3720), + [anon_sym_AMP_GT_GT] = ACTIONS(2458), + [anon_sym_LT_AMP] = ACTIONS(2458), + [anon_sym_GT_AMP] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(3720), + [anon_sym_LT_LT_DASH] = ACTIONS(2458), + [anon_sym_LT_LT_LT] = ACTIONS(2458), [sym_comment] = ACTIONS(56), }, [1103] = { - [sym_concatenation] = STATE(540), - [sym_string] = STATE(538), - [sym_simple_expansion] = STATE(538), - [sym_string_expansion] = STATE(538), - [sym_expansion] = STATE(538), - [sym_command_substitution] = STATE(538), - [sym_process_substitution] = STATE(538), - [aux_sym_command_repeat2] = STATE(1103), - [sym_file_descriptor] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_RPAREN] = ACTIONS(1559), - [anon_sym_PIPE_AMP] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_PIPE_PIPE] = ACTIONS(1559), - [anon_sym_EQ_TILDE] = ACTIONS(3738), - [anon_sym_EQ_EQ] = ACTIONS(3738), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [anon_sym_GT_GT] = ACTIONS(1559), - [anon_sym_AMP_GT] = ACTIONS(1557), - [anon_sym_AMP_GT_GT] = ACTIONS(1559), - [anon_sym_LT_AMP] = ACTIONS(1559), - [anon_sym_GT_AMP] = ACTIONS(1559), - [anon_sym_LT_LT] = ACTIONS(1557), - [anon_sym_LT_LT_DASH] = ACTIONS(1559), - [anon_sym_LT_LT_LT] = ACTIONS(1559), - [sym__special_characters] = ACTIONS(3741), - [anon_sym_DQUOTE] = ACTIONS(3744), - [anon_sym_DOLLAR] = ACTIONS(3747), - [sym_raw_string] = ACTIONS(3750), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3753), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3756), - [anon_sym_BQUOTE] = ACTIONS(3759), - [anon_sym_LT_LPAREN] = ACTIONS(3762), - [anon_sym_GT_LPAREN] = ACTIONS(3762), + [aux_sym_concatenation_repeat1] = STATE(1759), + [sym_file_descriptor] = ACTIONS(2462), + [sym__concat] = ACTIONS(3692), + [anon_sym_PIPE] = ACTIONS(3722), + [anon_sym_RPAREN] = ACTIONS(2462), + [anon_sym_PIPE_AMP] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(3722), + [anon_sym_GT] = ACTIONS(3722), + [anon_sym_GT_GT] = ACTIONS(2462), + [anon_sym_AMP_GT] = ACTIONS(3722), + [anon_sym_AMP_GT_GT] = ACTIONS(2462), + [anon_sym_LT_AMP] = ACTIONS(2462), + [anon_sym_GT_AMP] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(3722), + [anon_sym_LT_LT_DASH] = ACTIONS(2462), + [anon_sym_LT_LT_LT] = ACTIONS(2462), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3765), }, [1104] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [sym_concatenation] = STATE(540), - [sym_string] = STATE(538), - [sym_simple_expansion] = STATE(538), - [sym_string_expansion] = STATE(538), - [sym_expansion] = STATE(538), - [sym_command_substitution] = STATE(538), - [sym_process_substitution] = STATE(538), - [aux_sym_while_statement_repeat1] = STATE(1770), - [aux_sym_command_repeat2] = STATE(1103), - [sym_file_descriptor] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_RPAREN] = ACTIONS(3736), - [anon_sym_PIPE_AMP] = ACTIONS(3736), - [anon_sym_AMP_AMP] = ACTIONS(3736), - [anon_sym_PIPE_PIPE] = ACTIONS(3736), - [anon_sym_EQ_TILDE] = ACTIONS(986), - [anon_sym_EQ_EQ] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_AMP_GT] = ACTIONS(988), - [anon_sym_AMP_GT_GT] = ACTIONS(990), - [anon_sym_LT_AMP] = ACTIONS(990), - [anon_sym_GT_AMP] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(996), - [sym__special_characters] = ACTIONS(998), + [sym_file_descriptor] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(3722), + [anon_sym_RPAREN] = ACTIONS(2462), + [anon_sym_PIPE_AMP] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(3722), + [anon_sym_GT] = ACTIONS(3722), + [anon_sym_GT_GT] = ACTIONS(2462), + [anon_sym_AMP_GT] = ACTIONS(3722), + [anon_sym_AMP_GT_GT] = ACTIONS(2462), + [anon_sym_LT_AMP] = ACTIONS(2462), + [anon_sym_GT_AMP] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(3722), + [anon_sym_LT_LT_DASH] = ACTIONS(2462), + [anon_sym_LT_LT_LT] = ACTIONS(2462), + [anon_sym_BQUOTE] = ACTIONS(2462), + [sym_comment] = ACTIONS(56), + }, + [1105] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [aux_sym_while_statement_repeat1] = STATE(1105), + [sym_file_descriptor] = ACTIONS(3724), + [anon_sym_PIPE] = ACTIONS(3727), + [anon_sym_RPAREN] = ACTIONS(3729), + [anon_sym_PIPE_AMP] = ACTIONS(3729), + [anon_sym_AMP_AMP] = ACTIONS(3729), + [anon_sym_PIPE_PIPE] = ACTIONS(3729), + [anon_sym_LT] = ACTIONS(3731), + [anon_sym_GT] = ACTIONS(3731), + [anon_sym_GT_GT] = ACTIONS(3734), + [anon_sym_AMP_GT] = ACTIONS(3731), + [anon_sym_AMP_GT_GT] = ACTIONS(3734), + [anon_sym_LT_AMP] = ACTIONS(3734), + [anon_sym_GT_AMP] = ACTIONS(3734), + [anon_sym_LT_LT] = ACTIONS(3737), + [anon_sym_LT_LT_DASH] = ACTIONS(3740), + [anon_sym_LT_LT_LT] = ACTIONS(3743), + [sym_comment] = ACTIONS(56), + }, + [1106] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [aux_sym_while_statement_repeat1] = STATE(1105), + [sym_file_descriptor] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(3746), + [anon_sym_RPAREN] = ACTIONS(3748), + [anon_sym_PIPE_AMP] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_PIPE_PIPE] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [anon_sym_GT_GT] = ACTIONS(992), + [anon_sym_AMP_GT] = ACTIONS(990), + [anon_sym_AMP_GT_GT] = ACTIONS(992), + [anon_sym_LT_AMP] = ACTIONS(992), + [anon_sym_GT_AMP] = ACTIONS(992), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(998), + [sym_comment] = ACTIONS(56), + }, + [1107] = { + [sym_concatenation] = STATE(541), + [sym_string] = STATE(539), + [sym_simple_expansion] = STATE(539), + [sym_string_expansion] = STATE(539), + [sym_expansion] = STATE(539), + [sym_command_substitution] = STATE(539), + [sym_process_substitution] = STATE(539), + [aux_sym_command_repeat2] = STATE(1107), + [sym_file_descriptor] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_RPAREN] = ACTIONS(1563), + [anon_sym_PIPE_AMP] = ACTIONS(1563), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_PIPE_PIPE] = ACTIONS(1563), + [anon_sym_EQ_TILDE] = ACTIONS(3750), + [anon_sym_EQ_EQ] = ACTIONS(3750), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1563), + [anon_sym_AMP_GT] = ACTIONS(1561), + [anon_sym_AMP_GT_GT] = ACTIONS(1563), + [anon_sym_LT_AMP] = ACTIONS(1563), + [anon_sym_GT_AMP] = ACTIONS(1563), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_LT_LT_DASH] = ACTIONS(1563), + [anon_sym_LT_LT_LT] = ACTIONS(1563), + [sym__special_characters] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3756), + [anon_sym_DOLLAR] = ACTIONS(3759), + [sym_raw_string] = ACTIONS(3762), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3765), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3768), + [anon_sym_BQUOTE] = ACTIONS(3771), + [anon_sym_LT_LPAREN] = ACTIONS(3774), + [anon_sym_GT_LPAREN] = ACTIONS(3774), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3777), + }, + [1108] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [sym_concatenation] = STATE(541), + [sym_string] = STATE(539), + [sym_simple_expansion] = STATE(539), + [sym_string_expansion] = STATE(539), + [sym_expansion] = STATE(539), + [sym_command_substitution] = STATE(539), + [sym_process_substitution] = STATE(539), + [aux_sym_while_statement_repeat1] = STATE(1778), + [aux_sym_command_repeat2] = STATE(1107), + [sym_file_descriptor] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(3746), + [anon_sym_RPAREN] = ACTIONS(3748), + [anon_sym_PIPE_AMP] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_PIPE_PIPE] = ACTIONS(3748), + [anon_sym_EQ_TILDE] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [anon_sym_GT_GT] = ACTIONS(992), + [anon_sym_AMP_GT] = ACTIONS(990), + [anon_sym_AMP_GT_GT] = ACTIONS(992), + [anon_sym_LT_AMP] = ACTIONS(992), + [anon_sym_GT_AMP] = ACTIONS(992), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(998), + [sym__special_characters] = ACTIONS(1000), [anon_sym_DQUOTE] = ACTIONS(288), [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(1000), + [sym_raw_string] = ACTIONS(1002), [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), [anon_sym_BQUOTE] = ACTIONS(298), [anon_sym_LT_LPAREN] = ACTIONS(300), [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1002), + [sym_word] = ACTIONS(1004), }, - [1105] = { - [aux_sym_concatenation_repeat1] = STATE(1772), - [sym_file_descriptor] = ACTIONS(1301), - [sym__concat] = ACTIONS(3768), - [sym_variable_name] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_GT] = ACTIONS(3424), - [anon_sym_GT_GT] = ACTIONS(1301), - [anon_sym_AMP_GT] = ACTIONS(3424), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), + [1109] = { + [aux_sym_concatenation_repeat1] = STATE(1780), + [sym_file_descriptor] = ACTIONS(1303), + [sym__concat] = ACTIONS(3780), + [sym_variable_name] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_PIPE_AMP] = ACTIONS(1303), + [anon_sym_AMP_AMP] = ACTIONS(1303), + [anon_sym_PIPE_PIPE] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_GT] = ACTIONS(3434), + [anon_sym_GT_GT] = ACTIONS(1303), + [anon_sym_AMP_GT] = ACTIONS(3434), + [anon_sym_AMP_GT_GT] = ACTIONS(1303), + [anon_sym_LT_AMP] = ACTIONS(1303), + [anon_sym_GT_AMP] = ACTIONS(1303), + [sym__special_characters] = ACTIONS(3434), + [anon_sym_DQUOTE] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(3434), + [sym_raw_string] = ACTIONS(1303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1303), + [anon_sym_BQUOTE] = ACTIONS(1303), + [anon_sym_LT_LPAREN] = ACTIONS(1303), + [anon_sym_GT_LPAREN] = ACTIONS(1303), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3424), + [sym_word] = ACTIONS(3434), }, - [1106] = { + [1110] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1774), - [anon_sym_DQUOTE] = ACTIONS(3770), + [aux_sym_string_repeat1] = STATE(1782), + [anon_sym_DQUOTE] = ACTIONS(3782), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -38989,78 +39088,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [1107] = { - [sym_string] = STATE(1776), - [anon_sym_DQUOTE] = ACTIONS(2252), - [anon_sym_DOLLAR] = ACTIONS(3772), - [sym_raw_string] = ACTIONS(3774), - [anon_sym_POUND] = ACTIONS(3772), - [anon_sym_DASH] = ACTIONS(3772), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3776), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_AT] = ACTIONS(3772), - [anon_sym_QMARK] = ACTIONS(3772), - [anon_sym_0] = ACTIONS(3778), - [anon_sym__] = ACTIONS(3778), - }, - [1108] = { - [aux_sym_concatenation_repeat1] = STATE(1772), - [sym_file_descriptor] = ACTIONS(1277), - [sym__concat] = ACTIONS(3768), - [sym_variable_name] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(3418), - [anon_sym_PIPE_AMP] = ACTIONS(1277), - [anon_sym_AMP_AMP] = ACTIONS(1277), - [anon_sym_PIPE_PIPE] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(3418), - [anon_sym_GT] = ACTIONS(3418), - [anon_sym_GT_GT] = ACTIONS(1277), - [anon_sym_AMP_GT] = ACTIONS(3418), - [anon_sym_AMP_GT_GT] = ACTIONS(1277), - [anon_sym_LT_AMP] = ACTIONS(1277), - [anon_sym_GT_AMP] = ACTIONS(1277), - [sym__special_characters] = ACTIONS(3418), - [anon_sym_DQUOTE] = ACTIONS(1277), - [anon_sym_DOLLAR] = ACTIONS(3418), - [sym_raw_string] = ACTIONS(1277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), - [anon_sym_BQUOTE] = ACTIONS(1277), - [anon_sym_LT_LPAREN] = ACTIONS(1277), - [anon_sym_GT_LPAREN] = ACTIONS(1277), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3418), - }, - [1109] = { - [sym_subscript] = STATE(1782), - [sym_variable_name] = ACTIONS(3780), - [anon_sym_DOLLAR] = ACTIONS(3782), + [1111] = { + [sym_string] = STATE(1784), + [anon_sym_DQUOTE] = ACTIONS(2258), + [anon_sym_DOLLAR] = ACTIONS(3784), + [sym_raw_string] = ACTIONS(3786), [anon_sym_POUND] = ACTIONS(3784), - [anon_sym_DASH] = ACTIONS(3782), + [anon_sym_DASH] = ACTIONS(3784), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3786), - [anon_sym_STAR] = ACTIONS(3782), - [anon_sym_AT] = ACTIONS(3782), - [anon_sym_QMARK] = ACTIONS(3782), - [anon_sym_0] = ACTIONS(3788), - [anon_sym__] = ACTIONS(3788), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3788), + [anon_sym_STAR] = ACTIONS(3784), + [anon_sym_AT] = ACTIONS(3784), + [anon_sym_QMARK] = ACTIONS(3784), + [anon_sym_0] = ACTIONS(3790), + [anon_sym__] = ACTIONS(3790), }, - [1110] = { - [sym_for_statement] = STATE(1783), - [sym_while_statement] = STATE(1783), - [sym_if_statement] = STATE(1783), - [sym_case_statement] = STATE(1783), - [sym_function_definition] = STATE(1783), - [sym_subshell] = STATE(1783), - [sym_pipeline] = STATE(1783), - [sym_list] = STATE(1783), - [sym_command] = STATE(1783), + [1112] = { + [aux_sym_concatenation_repeat1] = STATE(1780), + [sym_file_descriptor] = ACTIONS(1279), + [sym__concat] = ACTIONS(3780), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(3428), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(3428), + [anon_sym_GT] = ACTIONS(3428), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_AMP_GT] = ACTIONS(3428), + [anon_sym_AMP_GT_GT] = ACTIONS(1279), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(3428), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(3428), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3428), + }, + [1113] = { + [sym_subscript] = STATE(1790), + [sym_variable_name] = ACTIONS(3792), + [anon_sym_DOLLAR] = ACTIONS(3794), + [anon_sym_POUND] = ACTIONS(3796), + [anon_sym_DASH] = ACTIONS(3794), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3798), + [anon_sym_STAR] = ACTIONS(3794), + [anon_sym_AT] = ACTIONS(3794), + [anon_sym_QMARK] = ACTIONS(3794), + [anon_sym_0] = ACTIONS(3800), + [anon_sym__] = ACTIONS(3800), + }, + [1114] = { + [sym_for_statement] = STATE(1791), + [sym_while_statement] = STATE(1791), + [sym_if_statement] = STATE(1791), + [sym_case_statement] = STATE(1791), + [sym_function_definition] = STATE(1791), + [sym_subshell] = STATE(1791), + [sym_pipeline] = STATE(1791), + [sym_list] = STATE(1791), + [sym_command] = STATE(1791), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1783), - [sym_variable_assignment] = STATE(1784), - [sym_declaration_command] = STATE(1783), - [sym_unset_command] = STATE(1783), + [sym_bracket_command] = STATE(1791), + [sym_variable_assignment] = STATE(1792), + [sym_declaration_command] = STATE(1791), + [sym_unset_command] = STATE(1791), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -39107,21 +39206,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [1111] = { - [sym_for_statement] = STATE(1785), - [sym_while_statement] = STATE(1785), - [sym_if_statement] = STATE(1785), - [sym_case_statement] = STATE(1785), - [sym_function_definition] = STATE(1785), - [sym_subshell] = STATE(1785), - [sym_pipeline] = STATE(1785), - [sym_list] = STATE(1785), - [sym_command] = STATE(1785), + [1115] = { + [sym_for_statement] = STATE(1793), + [sym_while_statement] = STATE(1793), + [sym_if_statement] = STATE(1793), + [sym_case_statement] = STATE(1793), + [sym_function_definition] = STATE(1793), + [sym_subshell] = STATE(1793), + [sym_pipeline] = STATE(1793), + [sym_list] = STATE(1793), + [sym_command] = STATE(1793), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1785), - [sym_variable_assignment] = STATE(1786), - [sym_declaration_command] = STATE(1785), - [sym_unset_command] = STATE(1785), + [sym_bracket_command] = STATE(1793), + [sym_variable_assignment] = STATE(1794), + [sym_declaration_command] = STATE(1793), + [sym_unset_command] = STATE(1793), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -39168,21 +39267,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [1112] = { - [sym_for_statement] = STATE(1787), - [sym_while_statement] = STATE(1787), - [sym_if_statement] = STATE(1787), - [sym_case_statement] = STATE(1787), - [sym_function_definition] = STATE(1787), - [sym_subshell] = STATE(1787), - [sym_pipeline] = STATE(1787), - [sym_list] = STATE(1787), - [sym_command] = STATE(1787), + [1116] = { + [sym_for_statement] = STATE(1795), + [sym_while_statement] = STATE(1795), + [sym_if_statement] = STATE(1795), + [sym_case_statement] = STATE(1795), + [sym_function_definition] = STATE(1795), + [sym_subshell] = STATE(1795), + [sym_pipeline] = STATE(1795), + [sym_list] = STATE(1795), + [sym_command] = STATE(1795), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1787), - [sym_variable_assignment] = STATE(1788), - [sym_declaration_command] = STATE(1787), - [sym_unset_command] = STATE(1787), + [sym_bracket_command] = STATE(1795), + [sym_variable_assignment] = STATE(1796), + [sym_declaration_command] = STATE(1795), + [sym_unset_command] = STATE(1795), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -39229,162 +39328,162 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [1113] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1789), - [sym_file_descriptor] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(3448), - [anon_sym_PIPE_AMP] = ACTIONS(3450), - [anon_sym_AMP_AMP] = ACTIONS(3450), - [anon_sym_PIPE_PIPE] = ACTIONS(3450), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_GT_GT] = ACTIONS(1082), - [anon_sym_AMP_GT] = ACTIONS(1080), - [anon_sym_AMP_GT_GT] = ACTIONS(1082), - [anon_sym_LT_AMP] = ACTIONS(1082), - [anon_sym_GT_AMP] = ACTIONS(1082), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(1084), - [anon_sym_BQUOTE] = ACTIONS(3450), - [sym_comment] = ACTIONS(56), - }, - [1114] = { - [anon_sym_RPAREN] = ACTIONS(3790), - [sym_comment] = ACTIONS(56), - }, - [1115] = { - [sym_file_redirect] = STATE(1682), - [sym_file_descriptor] = ACTIONS(3792), - [anon_sym_PIPE] = ACTIONS(3468), - [anon_sym_PIPE_AMP] = ACTIONS(3470), - [anon_sym_AMP_AMP] = ACTIONS(3470), - [anon_sym_PIPE_PIPE] = ACTIONS(3470), - [anon_sym_LT] = ACTIONS(3794), - [anon_sym_GT] = ACTIONS(3794), - [anon_sym_GT_GT] = ACTIONS(3796), - [anon_sym_AMP_GT] = ACTIONS(3794), - [anon_sym_AMP_GT_GT] = ACTIONS(3796), - [anon_sym_LT_AMP] = ACTIONS(3796), - [anon_sym_GT_AMP] = ACTIONS(3796), - [anon_sym_BQUOTE] = ACTIONS(3470), - [sym_comment] = ACTIONS(56), - }, - [1116] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1793), - [sym_file_descriptor] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(3486), - [anon_sym_PIPE_AMP] = ACTIONS(3488), - [anon_sym_AMP_AMP] = ACTIONS(3488), - [anon_sym_PIPE_PIPE] = ACTIONS(3488), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_GT_GT] = ACTIONS(1082), - [anon_sym_AMP_GT] = ACTIONS(1080), - [anon_sym_AMP_GT_GT] = ACTIONS(1082), - [anon_sym_LT_AMP] = ACTIONS(1082), - [anon_sym_GT_AMP] = ACTIONS(1082), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(1084), - [anon_sym_BQUOTE] = ACTIONS(3488), - [sym_comment] = ACTIONS(56), - }, [1117] = { - [sym_concatenation] = STATE(1686), - [sym_string] = STATE(1795), - [sym_array] = STATE(1686), - [sym_simple_expansion] = STATE(1795), - [sym_string_expansion] = STATE(1795), - [sym_expansion] = STATE(1795), - [sym_command_substitution] = STATE(1795), - [sym_process_substitution] = STATE(1795), - [sym__empty_value] = ACTIONS(3490), - [anon_sym_LPAREN] = ACTIONS(3492), - [sym__special_characters] = ACTIONS(3798), - [anon_sym_DQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1018), - [sym_raw_string] = ACTIONS(3800), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1024), - [anon_sym_BQUOTE] = ACTIONS(3802), - [anon_sym_LT_LPAREN] = ACTIONS(1026), - [anon_sym_GT_LPAREN] = ACTIONS(1026), + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [aux_sym_while_statement_repeat1] = STATE(1797), + [sym_file_descriptor] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(3460), + [anon_sym_PIPE_AMP] = ACTIONS(3462), + [anon_sym_AMP_AMP] = ACTIONS(3462), + [anon_sym_PIPE_PIPE] = ACTIONS(3462), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1084), + [anon_sym_LT_AMP] = ACTIONS(1084), + [anon_sym_GT_AMP] = ACTIONS(1084), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_BQUOTE] = ACTIONS(3462), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3804), }, [1118] = { - [sym_string] = STATE(1796), - [sym_simple_expansion] = STATE(1796), - [sym_string_expansion] = STATE(1796), - [sym_expansion] = STATE(1796), - [sym_command_substitution] = STATE(1796), - [sym_process_substitution] = STATE(1796), - [sym__special_characters] = ACTIONS(3806), - [anon_sym_DQUOTE] = ACTIONS(1016), - [anon_sym_DOLLAR] = ACTIONS(1018), - [sym_raw_string] = ACTIONS(3808), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1024), - [anon_sym_BQUOTE] = ACTIONS(3802), - [anon_sym_LT_LPAREN] = ACTIONS(1026), - [anon_sym_GT_LPAREN] = ACTIONS(1026), + [anon_sym_RPAREN] = ACTIONS(3802), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3806), }, [1119] = { - [aux_sym_concatenation_repeat1] = STATE(1797), - [sym__concat] = ACTIONS(2274), - [sym_variable_name] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_PIPE_AMP] = ACTIONS(788), - [anon_sym_AMP_AMP] = ACTIONS(788), - [anon_sym_PIPE_PIPE] = ACTIONS(788), - [sym__special_characters] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(1567), - [sym_raw_string] = ACTIONS(788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LT_LPAREN] = ACTIONS(788), - [anon_sym_GT_LPAREN] = ACTIONS(788), + [sym_file_redirect] = STATE(1690), + [sym_file_descriptor] = ACTIONS(3804), + [anon_sym_PIPE] = ACTIONS(3480), + [anon_sym_PIPE_AMP] = ACTIONS(3482), + [anon_sym_AMP_AMP] = ACTIONS(3482), + [anon_sym_PIPE_PIPE] = ACTIONS(3482), + [anon_sym_LT] = ACTIONS(3806), + [anon_sym_GT] = ACTIONS(3806), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_AMP_GT] = ACTIONS(3806), + [anon_sym_AMP_GT_GT] = ACTIONS(3808), + [anon_sym_LT_AMP] = ACTIONS(3808), + [anon_sym_GT_AMP] = ACTIONS(3808), + [anon_sym_BQUOTE] = ACTIONS(3482), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1567), - [sym_word] = ACTIONS(790), }, [1120] = { - [sym__concat] = ACTIONS(792), - [sym_variable_name] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [sym__special_characters] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(1569), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [aux_sym_while_statement_repeat1] = STATE(1801), + [sym_file_descriptor] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(3498), + [anon_sym_PIPE_AMP] = ACTIONS(3500), + [anon_sym_AMP_AMP] = ACTIONS(3500), + [anon_sym_PIPE_PIPE] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1084), + [anon_sym_LT_AMP] = ACTIONS(1084), + [anon_sym_GT_AMP] = ACTIONS(1084), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_BQUOTE] = ACTIONS(3500), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1569), - [sym_word] = ACTIONS(794), }, [1121] = { + [sym_concatenation] = STATE(1694), + [sym_string] = STATE(1803), + [sym_array] = STATE(1694), + [sym_simple_expansion] = STATE(1803), + [sym_string_expansion] = STATE(1803), + [sym_expansion] = STATE(1803), + [sym_command_substitution] = STATE(1803), + [sym_process_substitution] = STATE(1803), + [sym__empty_value] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3504), + [sym__special_characters] = ACTIONS(3810), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1020), + [sym_raw_string] = ACTIONS(3812), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1026), + [anon_sym_BQUOTE] = ACTIONS(3814), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3816), + }, + [1122] = { + [sym_string] = STATE(1804), + [sym_simple_expansion] = STATE(1804), + [sym_string_expansion] = STATE(1804), + [sym_expansion] = STATE(1804), + [sym_command_substitution] = STATE(1804), + [sym_process_substitution] = STATE(1804), + [sym__special_characters] = ACTIONS(3818), + [anon_sym_DQUOTE] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1020), + [sym_raw_string] = ACTIONS(3820), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1024), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1026), + [anon_sym_BQUOTE] = ACTIONS(3814), + [anon_sym_LT_LPAREN] = ACTIONS(1028), + [anon_sym_GT_LPAREN] = ACTIONS(1028), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3818), + }, + [1123] = { + [aux_sym_concatenation_repeat1] = STATE(1805), + [sym__concat] = ACTIONS(2280), + [sym_variable_name] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [sym__special_characters] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(1571), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1571), + [sym_word] = ACTIONS(792), + }, + [1124] = { + [sym__concat] = ACTIONS(794), + [sym_variable_name] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), + [sym_word] = ACTIONS(796), + }, + [1125] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(3810), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(3822), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -39392,259 +39491,190 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [1122] = { - [sym__concat] = ACTIONS(824), - [sym_variable_name] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_PIPE_AMP] = ACTIONS(824), - [anon_sym_AMP_AMP] = ACTIONS(824), - [anon_sym_PIPE_PIPE] = ACTIONS(824), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_LT_LPAREN] = ACTIONS(824), - [anon_sym_GT_LPAREN] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), - [sym_word] = ACTIONS(826), - }, - [1123] = { - [sym__concat] = ACTIONS(828), - [sym_variable_name] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [sym__special_characters] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1575), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1575), - [sym_word] = ACTIONS(830), - }, - [1124] = { - [sym__concat] = ACTIONS(832), - [sym_variable_name] = ACTIONS(832), + [1126] = { + [sym__concat] = ACTIONS(826), + [sym_variable_name] = ACTIONS(826), [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(826), [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(56), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1577), - [sym_word] = ACTIONS(834), - }, - [1125] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(3812), - [sym_comment] = ACTIONS(56), - }, - [1126] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1802), - [anon_sym_RBRACE] = ACTIONS(3814), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3816), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(828), }, [1127] = { - [sym_subscript] = STATE(1806), - [sym_variable_name] = ACTIONS(3818), - [anon_sym_DOLLAR] = ACTIONS(3820), - [anon_sym_DASH] = ACTIONS(3820), + [sym__concat] = ACTIONS(830), + [sym_variable_name] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [sym__special_characters] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(1579), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3822), - [anon_sym_STAR] = ACTIONS(3820), - [anon_sym_AT] = ACTIONS(3820), - [anon_sym_QMARK] = ACTIONS(3820), - [anon_sym_0] = ACTIONS(3824), - [anon_sym__] = ACTIONS(3824), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1579), + [sym_word] = ACTIONS(832), }, [1128] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1809), - [anon_sym_RBRACE] = ACTIONS(3826), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3828), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(834), + [sym_variable_name] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [sym__special_characters] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1581), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1581), + [sym_word] = ACTIONS(836), }, [1129] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1812), - [anon_sym_RBRACE] = ACTIONS(3830), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3832), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(3824), + [sym_comment] = ACTIONS(56), }, [1130] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3834), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1810), + [anon_sym_RBRACE] = ACTIONS(3826), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3828), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1131] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3834), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_subscript] = STATE(1814), + [sym_variable_name] = ACTIONS(3830), + [anon_sym_DOLLAR] = ACTIONS(3832), + [anon_sym_DASH] = ACTIONS(3832), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3834), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_AT] = ACTIONS(3832), + [anon_sym_QMARK] = ACTIONS(3832), + [anon_sym_0] = ACTIONS(3836), + [anon_sym__] = ACTIONS(3836), }, [1132] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(3834), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1817), + [anon_sym_RBRACE] = ACTIONS(3838), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3840), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1133] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(3834), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1820), + [anon_sym_RBRACE] = ACTIONS(3842), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3844), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1134] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3836), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3846), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, [1135] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3836), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3846), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -39665,286 +39695,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(384), }, [1136] = { - [sym_variable_assignment] = STATE(496), - [sym_subscript] = STATE(558), - [sym_concatenation] = STATE(496), - [sym_string] = STATE(553), - [sym_simple_expansion] = STATE(553), - [sym_string_expansion] = STATE(553), - [sym_expansion] = STATE(553), - [sym_command_substitution] = STATE(553), - [sym_process_substitution] = STATE(553), - [aux_sym_declaration_command_repeat1] = STATE(1136), - [sym_variable_name] = ACTIONS(3838), - [anon_sym_PIPE] = ACTIONS(3535), - [anon_sym_PIPE_AMP] = ACTIONS(3537), - [anon_sym_AMP_AMP] = ACTIONS(3537), - [anon_sym_PIPE_PIPE] = ACTIONS(3537), - [sym__special_characters] = ACTIONS(3841), - [anon_sym_DQUOTE] = ACTIONS(3844), - [anon_sym_DOLLAR] = ACTIONS(3847), - [sym_raw_string] = ACTIONS(3850), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3853), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3856), - [anon_sym_BQUOTE] = ACTIONS(3859), - [anon_sym_LT_LPAREN] = ACTIONS(3862), - [anon_sym_GT_LPAREN] = ACTIONS(3862), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(3846), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3563), - [sym_word] = ACTIONS(3865), }, [1137] = { - [sym_string] = STATE(1815), - [sym_simple_expansion] = STATE(1815), - [sym_string_expansion] = STATE(1815), - [sym_expansion] = STATE(1815), - [sym_command_substitution] = STATE(1815), - [sym_process_substitution] = STATE(1815), - [sym__special_characters] = ACTIONS(3868), - [anon_sym_DQUOTE] = ACTIONS(1032), - [anon_sym_DOLLAR] = ACTIONS(1034), - [sym_raw_string] = ACTIONS(3870), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1038), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1040), - [anon_sym_BQUOTE] = ACTIONS(3872), - [anon_sym_LT_LPAREN] = ACTIONS(1042), - [anon_sym_GT_LPAREN] = ACTIONS(1042), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3868), - }, - [1138] = { - [aux_sym_concatenation_repeat1] = STATE(1816), - [sym__concat] = ACTIONS(2296), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_PIPE_AMP] = ACTIONS(788), - [anon_sym_AMP_AMP] = ACTIONS(788), - [anon_sym_PIPE_PIPE] = ACTIONS(788), - [sym__special_characters] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(1567), - [sym_raw_string] = ACTIONS(788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LT_LPAREN] = ACTIONS(788), - [anon_sym_GT_LPAREN] = ACTIONS(788), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1567), - [sym_word] = ACTIONS(790), - }, - [1139] = { - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [sym__special_characters] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(1569), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1569), - [sym_word] = ACTIONS(794), - }, - [1140] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(3874), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1141] = { - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_PIPE_AMP] = ACTIONS(824), - [anon_sym_AMP_AMP] = ACTIONS(824), - [anon_sym_PIPE_PIPE] = ACTIONS(824), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_LT_LPAREN] = ACTIONS(824), - [anon_sym_GT_LPAREN] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), - [sym_word] = ACTIONS(826), - }, - [1142] = { - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [sym__special_characters] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1575), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1575), - [sym_word] = ACTIONS(830), - }, - [1143] = { - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1577), - [sym_word] = ACTIONS(834), - }, - [1144] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(3876), - [sym_comment] = ACTIONS(56), - }, - [1145] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1821), - [anon_sym_RBRACE] = ACTIONS(3878), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3880), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1146] = { - [sym_subscript] = STATE(1825), - [sym_variable_name] = ACTIONS(3882), - [anon_sym_DOLLAR] = ACTIONS(3884), - [anon_sym_DASH] = ACTIONS(3884), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3886), - [anon_sym_STAR] = ACTIONS(3884), - [anon_sym_AT] = ACTIONS(3884), - [anon_sym_QMARK] = ACTIONS(3884), - [anon_sym_0] = ACTIONS(3888), - [anon_sym__] = ACTIONS(3888), - }, - [1147] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1828), - [anon_sym_RBRACE] = ACTIONS(3890), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3892), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1148] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1831), - [anon_sym_RBRACE] = ACTIONS(3894), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3896), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1149] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3898), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [1150] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3898), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(3846), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1138] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3848), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [1139] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3848), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -39964,56 +39763,287 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [1151] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(3898), + [1140] = { + [sym_variable_assignment] = STATE(497), + [sym_subscript] = STATE(559), + [sym_concatenation] = STATE(497), + [sym_string] = STATE(554), + [sym_simple_expansion] = STATE(554), + [sym_string_expansion] = STATE(554), + [sym_expansion] = STATE(554), + [sym_command_substitution] = STATE(554), + [sym_process_substitution] = STATE(554), + [aux_sym_declaration_command_repeat1] = STATE(1140), + [sym_variable_name] = ACTIONS(3850), + [anon_sym_PIPE] = ACTIONS(3547), + [anon_sym_PIPE_AMP] = ACTIONS(3549), + [anon_sym_AMP_AMP] = ACTIONS(3549), + [anon_sym_PIPE_PIPE] = ACTIONS(3549), + [sym__special_characters] = ACTIONS(3853), + [anon_sym_DQUOTE] = ACTIONS(3856), + [anon_sym_DOLLAR] = ACTIONS(3859), + [sym_raw_string] = ACTIONS(3862), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3865), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3868), + [anon_sym_BQUOTE] = ACTIONS(3871), + [anon_sym_LT_LPAREN] = ACTIONS(3874), + [anon_sym_GT_LPAREN] = ACTIONS(3874), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3575), + [sym_word] = ACTIONS(3877), + }, + [1141] = { + [sym_string] = STATE(1823), + [sym_simple_expansion] = STATE(1823), + [sym_string_expansion] = STATE(1823), + [sym_expansion] = STATE(1823), + [sym_command_substitution] = STATE(1823), + [sym_process_substitution] = STATE(1823), + [sym__special_characters] = ACTIONS(3880), + [anon_sym_DQUOTE] = ACTIONS(1034), + [anon_sym_DOLLAR] = ACTIONS(1036), + [sym_raw_string] = ACTIONS(3882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1042), + [anon_sym_BQUOTE] = ACTIONS(3884), + [anon_sym_LT_LPAREN] = ACTIONS(1044), + [anon_sym_GT_LPAREN] = ACTIONS(1044), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3880), + }, + [1142] = { + [aux_sym_concatenation_repeat1] = STATE(1824), + [sym__concat] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [sym__special_characters] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(1571), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1571), + [sym_word] = ACTIONS(792), + }, + [1143] = { + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1573), + [sym_word] = ACTIONS(796), + }, + [1144] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1145] = { + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [sym__special_characters] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1577), + [sym_word] = ACTIONS(828), + }, + [1146] = { + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [sym__special_characters] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(1579), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1579), + [sym_word] = ACTIONS(832), + }, + [1147] = { + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [sym__special_characters] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1581), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1581), + [sym_word] = ACTIONS(836), + }, + [1148] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(3888), + [sym_comment] = ACTIONS(56), + }, + [1149] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1829), + [anon_sym_RBRACE] = ACTIONS(3890), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3892), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1150] = { + [sym_subscript] = STATE(1833), + [sym_variable_name] = ACTIONS(3894), + [anon_sym_DOLLAR] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3898), + [anon_sym_STAR] = ACTIONS(3896), + [anon_sym_AT] = ACTIONS(3896), + [anon_sym_QMARK] = ACTIONS(3896), + [anon_sym_0] = ACTIONS(3900), + [anon_sym__] = ACTIONS(3900), + }, + [1151] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1836), + [anon_sym_RBRACE] = ACTIONS(3902), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3904), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1152] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(3898), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1839), + [anon_sym_RBRACE] = ACTIONS(3906), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3908), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1153] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3900), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3910), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, [1154] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(3900), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3910), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -40034,507 +40064,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(384), }, [1155] = { - [sym_concatenation] = STATE(508), - [sym_string] = STATE(563), - [sym_simple_expansion] = STATE(563), - [sym_string_expansion] = STATE(563), - [sym_expansion] = STATE(563), - [sym_command_substitution] = STATE(563), - [sym_process_substitution] = STATE(563), - [aux_sym_unset_command_repeat1] = STATE(1155), - [anon_sym_PIPE] = ACTIONS(3601), - [anon_sym_PIPE_AMP] = ACTIONS(3603), - [anon_sym_AMP_AMP] = ACTIONS(3603), - [anon_sym_PIPE_PIPE] = ACTIONS(3603), - [sym__special_characters] = ACTIONS(3902), - [anon_sym_DQUOTE] = ACTIONS(3905), - [anon_sym_DOLLAR] = ACTIONS(3908), - [sym_raw_string] = ACTIONS(3911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3914), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3917), - [anon_sym_BQUOTE] = ACTIONS(3920), - [anon_sym_LT_LPAREN] = ACTIONS(3923), - [anon_sym_GT_LPAREN] = ACTIONS(3923), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(3910), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3629), - [sym_word] = ACTIONS(3926), }, [1156] = { - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_EQ_TILDE] = ACTIONS(3056), - [anon_sym_EQ_EQ] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(3056), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1888), - }, - [1157] = { - [aux_sym_concatenation_repeat1] = STATE(1157), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(3929), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_EQ_TILDE] = ACTIONS(3056), - [anon_sym_EQ_EQ] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(3056), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1888), - }, - [1158] = { - [sym_file_descriptor] = ACTIONS(1923), - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_PIPE_AMP] = ACTIONS(1923), - [anon_sym_AMP_AMP] = ACTIONS(1923), - [anon_sym_PIPE_PIPE] = ACTIONS(1923), - [anon_sym_EQ_TILDE] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(1923), - [anon_sym_AMP_GT] = ACTIONS(3061), - [anon_sym_AMP_GT_GT] = ACTIONS(1923), - [anon_sym_LT_AMP] = ACTIONS(1923), - [anon_sym_GT_AMP] = ACTIONS(1923), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_LT_LT_DASH] = ACTIONS(1923), - [anon_sym_LT_LT_LT] = ACTIONS(1923), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(1923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), - [anon_sym_BQUOTE] = ACTIONS(1923), - [anon_sym_LT_LPAREN] = ACTIONS(1923), - [anon_sym_GT_LPAREN] = ACTIONS(1923), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1925), - }, - [1159] = { - [sym_concatenation] = STATE(1837), - [sym_string] = STATE(1836), - [sym_simple_expansion] = STATE(1836), - [sym_string_expansion] = STATE(1836), - [sym_expansion] = STATE(1836), - [sym_command_substitution] = STATE(1836), - [sym_process_substitution] = STATE(1836), - [anon_sym_RBRACE] = ACTIONS(3932), - [sym__special_characters] = ACTIONS(3934), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(3936), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3938), - }, - [1160] = { - [sym_file_descriptor] = ACTIONS(1968), - [sym__concat] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1968), - [anon_sym_PIPE_PIPE] = ACTIONS(1968), - [anon_sym_EQ_TILDE] = ACTIONS(3071), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(1968), - [anon_sym_AMP_GT] = ACTIONS(3071), - [anon_sym_AMP_GT_GT] = ACTIONS(1968), - [anon_sym_LT_AMP] = ACTIONS(1968), - [anon_sym_GT_AMP] = ACTIONS(1968), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_LT_LT_DASH] = ACTIONS(1968), - [anon_sym_LT_LT_LT] = ACTIONS(1968), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1968), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1970), - }, - [1161] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3940), - }, - [1162] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3942), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1163] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(3944), - [sym_comment] = ACTIONS(56), - }, - [1164] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1843), - [anon_sym_RBRACE] = ACTIONS(3946), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3948), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1165] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1846), - [anon_sym_RBRACE] = ACTIONS(3950), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3952), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1166] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1848), - [anon_sym_RBRACE] = ACTIONS(3932), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(3954), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1167] = { - [sym_file_descriptor] = ACTIONS(2022), - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PIPE_AMP] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), - [anon_sym_EQ_TILDE] = ACTIONS(3089), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(2022), - [anon_sym_AMP_GT] = ACTIONS(3089), - [anon_sym_AMP_GT_GT] = ACTIONS(2022), - [anon_sym_LT_AMP] = ACTIONS(2022), - [anon_sym_GT_AMP] = ACTIONS(2022), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_LT_LT_DASH] = ACTIONS(2022), - [anon_sym_LT_LT_LT] = ACTIONS(2022), - [sym__special_characters] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(3089), - [sym_raw_string] = ACTIONS(2022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_BQUOTE] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2022), - [anon_sym_GT_LPAREN] = ACTIONS(2022), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2024), - }, - [1168] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3956), - }, - [1169] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3958), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1170] = { - [sym_file_descriptor] = ACTIONS(2030), - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(2030), - [anon_sym_AMP_AMP] = ACTIONS(2030), - [anon_sym_PIPE_PIPE] = ACTIONS(2030), - [anon_sym_EQ_TILDE] = ACTIONS(3095), - [anon_sym_EQ_EQ] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_GT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(2030), - [anon_sym_AMP_GT] = ACTIONS(3095), - [anon_sym_AMP_GT_GT] = ACTIONS(2030), - [anon_sym_LT_AMP] = ACTIONS(2030), - [anon_sym_GT_AMP] = ACTIONS(2030), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_LT_LT_DASH] = ACTIONS(2030), - [anon_sym_LT_LT_LT] = ACTIONS(2030), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(2030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2032), - }, - [1171] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(3960), - }, - [1172] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(3932), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1173] = { - [sym_file_descriptor] = ACTIONS(2190), - [sym__concat] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_EQ_TILDE] = ACTIONS(3099), - [anon_sym_EQ_EQ] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_GT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_AMP_GT] = ACTIONS(3099), - [anon_sym_AMP_GT_GT] = ACTIONS(2190), - [anon_sym_LT_AMP] = ACTIONS(2190), - [anon_sym_GT_AMP] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_LT_LT_DASH] = ACTIONS(2190), - [anon_sym_LT_LT_LT] = ACTIONS(2190), - [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), - [anon_sym_BQUOTE] = ACTIONS(2190), - [anon_sym_LT_LPAREN] = ACTIONS(2190), - [anon_sym_GT_LPAREN] = ACTIONS(2190), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2192), - }, - [1174] = { - [sym_file_descriptor] = ACTIONS(2396), - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_PIPE_AMP] = ACTIONS(2396), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [anon_sym_EQ_TILDE] = ACTIONS(3101), - [anon_sym_EQ_EQ] = ACTIONS(3101), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_GT_GT] = ACTIONS(2396), - [anon_sym_AMP_GT] = ACTIONS(3101), - [anon_sym_AMP_GT_GT] = ACTIONS(2396), - [anon_sym_LT_AMP] = ACTIONS(2396), - [anon_sym_GT_AMP] = ACTIONS(2396), - [anon_sym_LT_LT] = ACTIONS(3101), - [anon_sym_LT_LT_DASH] = ACTIONS(2396), - [anon_sym_LT_LT_LT] = ACTIONS(2396), - [sym__special_characters] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(3101), - [sym_raw_string] = ACTIONS(2396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_LT_LPAREN] = ACTIONS(2396), - [anon_sym_GT_LPAREN] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2398), - }, - [1175] = { - [sym_compound_statement] = STATE(1852), - [anon_sym_LBRACE] = ACTIONS(2076), - [sym_comment] = ACTIONS(56), - }, - [1176] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(3668), - [anon_sym_PIPE_AMP] = ACTIONS(3670), - [anon_sym_AMP_AMP] = ACTIONS(3670), - [anon_sym_PIPE_PIPE] = ACTIONS(3670), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -40548,27 +40091,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(380), [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(3670), + [anon_sym_BQUOTE] = ACTIONS(3910), [anon_sym_LT_LPAREN] = ACTIONS(380), [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [1177] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_PIPE_PIPE] = ACTIONS(3672), - [anon_sym_BQUOTE] = ACTIONS(3672), + [1157] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3912), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, - [1178] = { + [1158] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(3672), - [anon_sym_PIPE_PIPE] = ACTIONS(3672), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(3912), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -40588,117 +40132,672 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [1179] = { - [sym_concatenation] = STATE(1749), - [sym_string] = STATE(1854), - [sym_simple_expansion] = STATE(1854), - [sym_string_expansion] = STATE(1854), - [sym_expansion] = STATE(1854), - [sym_command_substitution] = STATE(1854), - [sym_process_substitution] = STATE(1854), - [sym__special_characters] = ACTIONS(3962), - [anon_sym_DQUOTE] = ACTIONS(2374), - [anon_sym_DOLLAR] = ACTIONS(2376), - [sym_raw_string] = ACTIONS(3964), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2382), - [anon_sym_BQUOTE] = ACTIONS(2384), - [anon_sym_LT_LPAREN] = ACTIONS(2386), - [anon_sym_GT_LPAREN] = ACTIONS(2386), + [1159] = { + [sym_concatenation] = STATE(509), + [sym_string] = STATE(564), + [sym_simple_expansion] = STATE(564), + [sym_string_expansion] = STATE(564), + [sym_expansion] = STATE(564), + [sym_command_substitution] = STATE(564), + [sym_process_substitution] = STATE(564), + [aux_sym_unset_command_repeat1] = STATE(1159), + [anon_sym_PIPE] = ACTIONS(3613), + [anon_sym_PIPE_AMP] = ACTIONS(3615), + [anon_sym_AMP_AMP] = ACTIONS(3615), + [anon_sym_PIPE_PIPE] = ACTIONS(3615), + [sym__special_characters] = ACTIONS(3914), + [anon_sym_DQUOTE] = ACTIONS(3917), + [anon_sym_DOLLAR] = ACTIONS(3920), + [sym_raw_string] = ACTIONS(3923), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3926), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3929), + [anon_sym_BQUOTE] = ACTIONS(3932), + [anon_sym_LT_LPAREN] = ACTIONS(3935), + [anon_sym_GT_LPAREN] = ACTIONS(3935), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3641), + [sym_word] = ACTIONS(3938), + }, + [1160] = { + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_EQ_TILDE] = ACTIONS(3066), + [anon_sym_EQ_EQ] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(3066), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(3066), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1892), + }, + [1161] = { + [aux_sym_concatenation_repeat1] = STATE(1161), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(3941), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_EQ_TILDE] = ACTIONS(3066), + [anon_sym_EQ_EQ] = ACTIONS(3066), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(3066), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(3066), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1892), + }, + [1162] = { + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [anon_sym_EQ_TILDE] = ACTIONS(3071), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3071), + [anon_sym_GT_GT] = ACTIONS(1927), + [anon_sym_AMP_GT] = ACTIONS(3071), + [anon_sym_AMP_GT_GT] = ACTIONS(1927), + [anon_sym_LT_AMP] = ACTIONS(1927), + [anon_sym_GT_AMP] = ACTIONS(1927), + [anon_sym_LT_LT] = ACTIONS(3071), + [anon_sym_LT_LT_DASH] = ACTIONS(1927), + [anon_sym_LT_LT_LT] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1929), + }, + [1163] = { + [sym_concatenation] = STATE(1845), + [sym_string] = STATE(1844), + [sym_simple_expansion] = STATE(1844), + [sym_string_expansion] = STATE(1844), + [sym_expansion] = STATE(1844), + [sym_command_substitution] = STATE(1844), + [sym_process_substitution] = STATE(1844), + [anon_sym_RBRACE] = ACTIONS(3944), + [sym__special_characters] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(3948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3950), + }, + [1164] = { + [sym_file_descriptor] = ACTIONS(1972), + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(3081), + [anon_sym_PIPE_AMP] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_PIPE_PIPE] = ACTIONS(1972), + [anon_sym_EQ_TILDE] = ACTIONS(3081), + [anon_sym_EQ_EQ] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3081), + [anon_sym_GT_GT] = ACTIONS(1972), + [anon_sym_AMP_GT] = ACTIONS(3081), + [anon_sym_AMP_GT_GT] = ACTIONS(1972), + [anon_sym_LT_AMP] = ACTIONS(1972), + [anon_sym_GT_AMP] = ACTIONS(1972), + [anon_sym_LT_LT] = ACTIONS(3081), + [anon_sym_LT_LT_DASH] = ACTIONS(1972), + [anon_sym_LT_LT_LT] = ACTIONS(1972), + [sym__special_characters] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(3081), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [anon_sym_LT_LPAREN] = ACTIONS(1972), + [anon_sym_GT_LPAREN] = ACTIONS(1972), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1974), + }, + [1165] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3952), + }, + [1166] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3954), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1167] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(3956), + [sym_comment] = ACTIONS(56), + }, + [1168] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1851), + [anon_sym_RBRACE] = ACTIONS(3958), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3960), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1169] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1854), + [anon_sym_RBRACE] = ACTIONS(3962), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3964), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1170] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1856), + [anon_sym_RBRACE] = ACTIONS(3944), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(3966), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1171] = { + [sym_file_descriptor] = ACTIONS(2026), + [sym__concat] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_PIPE_AMP] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_EQ_TILDE] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3099), + [anon_sym_LT] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3099), + [anon_sym_GT_GT] = ACTIONS(2026), + [anon_sym_AMP_GT] = ACTIONS(3099), + [anon_sym_AMP_GT_GT] = ACTIONS(2026), + [anon_sym_LT_AMP] = ACTIONS(2026), + [anon_sym_GT_AMP] = ACTIONS(2026), + [anon_sym_LT_LT] = ACTIONS(3099), + [anon_sym_LT_LT_DASH] = ACTIONS(2026), + [anon_sym_LT_LT_LT] = ACTIONS(2026), + [sym__special_characters] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2026), + [anon_sym_GT_LPAREN] = ACTIONS(2026), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2028), + }, + [1172] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3968), + }, + [1173] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3970), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1174] = { + [sym_file_descriptor] = ACTIONS(2034), + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PIPE_AMP] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_PIPE_PIPE] = ACTIONS(2034), + [anon_sym_EQ_TILDE] = ACTIONS(3105), + [anon_sym_EQ_EQ] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_GT] = ACTIONS(3105), + [anon_sym_GT_GT] = ACTIONS(2034), + [anon_sym_AMP_GT] = ACTIONS(3105), + [anon_sym_AMP_GT_GT] = ACTIONS(2034), + [anon_sym_LT_AMP] = ACTIONS(2034), + [anon_sym_GT_AMP] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(3105), + [anon_sym_LT_LT_DASH] = ACTIONS(2034), + [anon_sym_LT_LT_LT] = ACTIONS(2034), + [sym__special_characters] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(3105), + [sym_raw_string] = ACTIONS(2034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), + [anon_sym_BQUOTE] = ACTIONS(2034), + [anon_sym_LT_LPAREN] = ACTIONS(2034), + [anon_sym_GT_LPAREN] = ACTIONS(2034), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2036), + }, + [1175] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(3972), + }, + [1176] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(3944), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1177] = { + [sym_file_descriptor] = ACTIONS(2196), + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(3109), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_EQ_TILDE] = ACTIONS(3109), + [anon_sym_EQ_EQ] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3109), + [anon_sym_GT] = ACTIONS(3109), + [anon_sym_GT_GT] = ACTIONS(2196), + [anon_sym_AMP_GT] = ACTIONS(3109), + [anon_sym_AMP_GT_GT] = ACTIONS(2196), + [anon_sym_LT_AMP] = ACTIONS(2196), + [anon_sym_GT_AMP] = ACTIONS(2196), + [anon_sym_LT_LT] = ACTIONS(3109), + [anon_sym_LT_LT_DASH] = ACTIONS(2196), + [anon_sym_LT_LT_LT] = ACTIONS(2196), + [sym__special_characters] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(3109), + [sym_raw_string] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2198), + }, + [1178] = { + [sym_file_descriptor] = ACTIONS(2402), + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_PIPE_AMP] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [anon_sym_EQ_TILDE] = ACTIONS(3111), + [anon_sym_EQ_EQ] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3111), + [anon_sym_GT_GT] = ACTIONS(2402), + [anon_sym_AMP_GT] = ACTIONS(3111), + [anon_sym_AMP_GT_GT] = ACTIONS(2402), + [anon_sym_LT_AMP] = ACTIONS(2402), + [anon_sym_GT_AMP] = ACTIONS(2402), + [anon_sym_LT_LT] = ACTIONS(3111), + [anon_sym_LT_LT_DASH] = ACTIONS(2402), + [anon_sym_LT_LT_LT] = ACTIONS(2402), + [sym__special_characters] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(3111), + [sym_raw_string] = ACTIONS(2402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), + [anon_sym_BQUOTE] = ACTIONS(2402), + [anon_sym_LT_LPAREN] = ACTIONS(2402), + [anon_sym_GT_LPAREN] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2404), + }, + [1179] = { + [sym_compound_statement] = STATE(1860), + [anon_sym_LBRACE] = ACTIONS(2082), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3966), }, [1180] = { - [aux_sym_concatenation_repeat1] = STATE(570), - [sym_file_descriptor] = ACTIONS(1553), - [sym__concat] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1551), - [anon_sym_PIPE_AMP] = ACTIONS(1553), - [anon_sym_AMP_AMP] = ACTIONS(1553), - [anon_sym_PIPE_PIPE] = ACTIONS(1553), - [anon_sym_EQ_TILDE] = ACTIONS(1551), - [anon_sym_EQ_EQ] = ACTIONS(1551), - [anon_sym_LT] = ACTIONS(1551), - [anon_sym_GT] = ACTIONS(1551), - [anon_sym_GT_GT] = ACTIONS(1553), - [anon_sym_AMP_GT] = ACTIONS(1551), - [anon_sym_AMP_GT_GT] = ACTIONS(1553), - [anon_sym_LT_AMP] = ACTIONS(1553), - [anon_sym_GT_AMP] = ACTIONS(1553), - [anon_sym_LT_LT] = ACTIONS(1551), - [anon_sym_LT_LT_DASH] = ACTIONS(1553), - [anon_sym_LT_LT_LT] = ACTIONS(1553), - [sym__special_characters] = ACTIONS(1551), - [anon_sym_DQUOTE] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(1551), - [sym_raw_string] = ACTIONS(1553), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1553), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1553), - [anon_sym_BQUOTE] = ACTIONS(1553), - [anon_sym_LT_LPAREN] = ACTIONS(1553), - [anon_sym_GT_LPAREN] = ACTIONS(1553), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(3680), + [anon_sym_PIPE_AMP] = ACTIONS(3682), + [anon_sym_AMP_AMP] = ACTIONS(3682), + [anon_sym_PIPE_PIPE] = ACTIONS(3682), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(3682), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1555), + [sym_word] = ACTIONS(384), }, [1181] = { - [aux_sym_concatenation_repeat1] = STATE(570), - [sym_file_descriptor] = ACTIONS(1559), - [sym__concat] = ACTIONS(1046), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_PIPE_AMP] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_PIPE_PIPE] = ACTIONS(1559), - [anon_sym_EQ_TILDE] = ACTIONS(1557), - [anon_sym_EQ_EQ] = ACTIONS(1557), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [anon_sym_GT_GT] = ACTIONS(1559), - [anon_sym_AMP_GT] = ACTIONS(1557), - [anon_sym_AMP_GT_GT] = ACTIONS(1559), - [anon_sym_LT_AMP] = ACTIONS(1559), - [anon_sym_GT_AMP] = ACTIONS(1559), - [anon_sym_LT_LT] = ACTIONS(1557), - [anon_sym_LT_LT_DASH] = ACTIONS(1559), - [anon_sym_LT_LT_LT] = ACTIONS(1559), - [sym__special_characters] = ACTIONS(1557), - [anon_sym_DQUOTE] = ACTIONS(1559), - [anon_sym_DOLLAR] = ACTIONS(1557), - [sym_raw_string] = ACTIONS(1559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), - [anon_sym_BQUOTE] = ACTIONS(1559), - [anon_sym_LT_LPAREN] = ACTIONS(1559), - [anon_sym_GT_LPAREN] = ACTIONS(1559), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), + [anon_sym_BQUOTE] = ACTIONS(3684), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1561), }, [1182] = { - [aux_sym_concatenation_repeat1] = STATE(1856), - [sym_file_descriptor] = ACTIONS(754), - [sym__concat] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(758), - [anon_sym_PIPE_AMP] = ACTIONS(754), - [anon_sym_AMP_AMP] = ACTIONS(754), - [anon_sym_PIPE_PIPE] = ACTIONS(754), - [anon_sym_LT] = ACTIONS(758), - [anon_sym_GT] = ACTIONS(758), - [anon_sym_GT_GT] = ACTIONS(754), - [anon_sym_AMP_GT] = ACTIONS(758), - [anon_sym_AMP_GT_GT] = ACTIONS(754), - [anon_sym_LT_AMP] = ACTIONS(754), - [anon_sym_GT_AMP] = ACTIONS(754), - [anon_sym_LT_LT] = ACTIONS(758), - [anon_sym_LT_LT_DASH] = ACTIONS(754), - [anon_sym_LT_LT_LT] = ACTIONS(754), - [anon_sym_BQUOTE] = ACTIONS(754), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(3684), + [anon_sym_PIPE_PIPE] = ACTIONS(3684), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [1183] = { + [sym_concatenation] = STATE(1757), + [sym_string] = STATE(1862), + [sym_simple_expansion] = STATE(1862), + [sym_string_expansion] = STATE(1862), + [sym_expansion] = STATE(1862), + [sym_command_substitution] = STATE(1862), + [sym_process_substitution] = STATE(1862), + [sym__special_characters] = ACTIONS(3974), + [anon_sym_DQUOTE] = ACTIONS(2380), + [anon_sym_DOLLAR] = ACTIONS(2382), + [sym_raw_string] = ACTIONS(3976), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2388), + [anon_sym_BQUOTE] = ACTIONS(2390), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3978), + }, + [1184] = { + [aux_sym_concatenation_repeat1] = STATE(571), + [sym_file_descriptor] = ACTIONS(1557), + [sym__concat] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1555), + [anon_sym_PIPE_AMP] = ACTIONS(1557), + [anon_sym_AMP_AMP] = ACTIONS(1557), + [anon_sym_PIPE_PIPE] = ACTIONS(1557), + [anon_sym_EQ_TILDE] = ACTIONS(1555), + [anon_sym_EQ_EQ] = ACTIONS(1555), + [anon_sym_LT] = ACTIONS(1555), + [anon_sym_GT] = ACTIONS(1555), + [anon_sym_GT_GT] = ACTIONS(1557), + [anon_sym_AMP_GT] = ACTIONS(1555), + [anon_sym_AMP_GT_GT] = ACTIONS(1557), + [anon_sym_LT_AMP] = ACTIONS(1557), + [anon_sym_GT_AMP] = ACTIONS(1557), + [anon_sym_LT_LT] = ACTIONS(1555), + [anon_sym_LT_LT_DASH] = ACTIONS(1557), + [anon_sym_LT_LT_LT] = ACTIONS(1557), + [sym__special_characters] = ACTIONS(1555), + [anon_sym_DQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(1555), + [sym_raw_string] = ACTIONS(1557), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1557), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1557), + [anon_sym_BQUOTE] = ACTIONS(1557), + [anon_sym_LT_LPAREN] = ACTIONS(1557), + [anon_sym_GT_LPAREN] = ACTIONS(1557), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1559), + }, + [1185] = { + [aux_sym_concatenation_repeat1] = STATE(571), + [sym_file_descriptor] = ACTIONS(1563), + [sym__concat] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_PIPE_AMP] = ACTIONS(1563), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_PIPE_PIPE] = ACTIONS(1563), + [anon_sym_EQ_TILDE] = ACTIONS(1561), + [anon_sym_EQ_EQ] = ACTIONS(1561), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1563), + [anon_sym_AMP_GT] = ACTIONS(1561), + [anon_sym_AMP_GT_GT] = ACTIONS(1563), + [anon_sym_LT_AMP] = ACTIONS(1563), + [anon_sym_GT_AMP] = ACTIONS(1563), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_LT_LT_DASH] = ACTIONS(1563), + [anon_sym_LT_LT_LT] = ACTIONS(1563), + [sym__special_characters] = ACTIONS(1561), + [anon_sym_DQUOTE] = ACTIONS(1563), + [anon_sym_DOLLAR] = ACTIONS(1561), + [sym_raw_string] = ACTIONS(1563), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1563), + [anon_sym_BQUOTE] = ACTIONS(1563), + [anon_sym_LT_LPAREN] = ACTIONS(1563), + [anon_sym_GT_LPAREN] = ACTIONS(1563), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1565), + }, + [1186] = { + [aux_sym_concatenation_repeat1] = STATE(1864), + [sym_file_descriptor] = ACTIONS(756), + [sym__concat] = ACTIONS(3980), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PIPE_AMP] = ACTIONS(756), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_LT] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(760), + [anon_sym_GT_GT] = ACTIONS(756), + [anon_sym_AMP_GT] = ACTIONS(760), + [anon_sym_AMP_GT_GT] = ACTIONS(756), + [anon_sym_LT_AMP] = ACTIONS(756), + [anon_sym_GT_AMP] = ACTIONS(756), + [anon_sym_LT_LT] = ACTIONS(760), + [anon_sym_LT_LT_DASH] = ACTIONS(756), + [anon_sym_LT_LT_LT] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(756), + [sym_comment] = ACTIONS(56), + }, + [1187] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1858), - [anon_sym_DQUOTE] = ACTIONS(3970), + [aux_sym_string_repeat1] = STATE(1866), + [anon_sym_DQUOTE] = ACTIONS(3982), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -40706,71 +40805,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [1184] = { - [sym_string] = STATE(1860), - [anon_sym_DQUOTE] = ACTIONS(2374), - [anon_sym_DOLLAR] = ACTIONS(3972), - [sym_raw_string] = ACTIONS(3974), - [anon_sym_POUND] = ACTIONS(3972), - [anon_sym_DASH] = ACTIONS(3972), + [1188] = { + [sym_string] = STATE(1868), + [anon_sym_DQUOTE] = ACTIONS(2380), + [anon_sym_DOLLAR] = ACTIONS(3984), + [sym_raw_string] = ACTIONS(3986), + [anon_sym_POUND] = ACTIONS(3984), + [anon_sym_DASH] = ACTIONS(3984), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3976), - [anon_sym_STAR] = ACTIONS(3972), - [anon_sym_AT] = ACTIONS(3972), - [anon_sym_QMARK] = ACTIONS(3972), - [anon_sym_0] = ACTIONS(3978), - [anon_sym__] = ACTIONS(3978), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3988), + [anon_sym_STAR] = ACTIONS(3984), + [anon_sym_AT] = ACTIONS(3984), + [anon_sym_QMARK] = ACTIONS(3984), + [anon_sym_0] = ACTIONS(3990), + [anon_sym__] = ACTIONS(3990), }, - [1185] = { - [aux_sym_concatenation_repeat1] = STATE(1856), - [sym_file_descriptor] = ACTIONS(770), - [sym__concat] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_PIPE_AMP] = ACTIONS(770), - [anon_sym_AMP_AMP] = ACTIONS(770), - [anon_sym_PIPE_PIPE] = ACTIONS(770), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(772), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_AMP_GT] = ACTIONS(772), - [anon_sym_AMP_GT_GT] = ACTIONS(770), - [anon_sym_LT_AMP] = ACTIONS(770), - [anon_sym_GT_AMP] = ACTIONS(770), - [anon_sym_LT_LT] = ACTIONS(772), - [anon_sym_LT_LT_DASH] = ACTIONS(770), - [anon_sym_LT_LT_LT] = ACTIONS(770), - [anon_sym_BQUOTE] = ACTIONS(770), + [1189] = { + [aux_sym_concatenation_repeat1] = STATE(1864), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(3980), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_LT] = ACTIONS(774), + [anon_sym_GT] = ACTIONS(774), + [anon_sym_GT_GT] = ACTIONS(772), + [anon_sym_AMP_GT] = ACTIONS(774), + [anon_sym_AMP_GT_GT] = ACTIONS(772), + [anon_sym_LT_AMP] = ACTIONS(772), + [anon_sym_GT_AMP] = ACTIONS(772), + [anon_sym_LT_LT] = ACTIONS(774), + [anon_sym_LT_LT_DASH] = ACTIONS(772), + [anon_sym_LT_LT_LT] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), [sym_comment] = ACTIONS(56), }, - [1186] = { - [sym_subscript] = STATE(1866), - [sym_variable_name] = ACTIONS(3980), - [anon_sym_DOLLAR] = ACTIONS(3982), - [anon_sym_POUND] = ACTIONS(3984), - [anon_sym_DASH] = ACTIONS(3982), + [1190] = { + [sym_subscript] = STATE(1874), + [sym_variable_name] = ACTIONS(3992), + [anon_sym_DOLLAR] = ACTIONS(3994), + [anon_sym_POUND] = ACTIONS(3996), + [anon_sym_DASH] = ACTIONS(3994), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3986), - [anon_sym_STAR] = ACTIONS(3982), - [anon_sym_AT] = ACTIONS(3982), - [anon_sym_QMARK] = ACTIONS(3982), - [anon_sym_0] = ACTIONS(3988), - [anon_sym__] = ACTIONS(3988), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3998), + [anon_sym_STAR] = ACTIONS(3994), + [anon_sym_AT] = ACTIONS(3994), + [anon_sym_QMARK] = ACTIONS(3994), + [anon_sym_0] = ACTIONS(4000), + [anon_sym__] = ACTIONS(4000), }, - [1187] = { - [sym_for_statement] = STATE(1867), - [sym_while_statement] = STATE(1867), - [sym_if_statement] = STATE(1867), - [sym_case_statement] = STATE(1867), - [sym_function_definition] = STATE(1867), - [sym_subshell] = STATE(1867), - [sym_pipeline] = STATE(1867), - [sym_list] = STATE(1867), - [sym_command] = STATE(1867), + [1191] = { + [sym_for_statement] = STATE(1875), + [sym_while_statement] = STATE(1875), + [sym_if_statement] = STATE(1875), + [sym_case_statement] = STATE(1875), + [sym_function_definition] = STATE(1875), + [sym_subshell] = STATE(1875), + [sym_pipeline] = STATE(1875), + [sym_list] = STATE(1875), + [sym_command] = STATE(1875), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1867), - [sym_variable_assignment] = STATE(1868), - [sym_declaration_command] = STATE(1867), - [sym_unset_command] = STATE(1867), + [sym_bracket_command] = STATE(1875), + [sym_variable_assignment] = STATE(1876), + [sym_declaration_command] = STATE(1875), + [sym_unset_command] = STATE(1875), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -40817,21 +40916,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [1188] = { - [sym_for_statement] = STATE(1869), - [sym_while_statement] = STATE(1869), - [sym_if_statement] = STATE(1869), - [sym_case_statement] = STATE(1869), - [sym_function_definition] = STATE(1869), - [sym_subshell] = STATE(1869), - [sym_pipeline] = STATE(1869), - [sym_list] = STATE(1869), - [sym_command] = STATE(1869), + [1192] = { + [sym_for_statement] = STATE(1877), + [sym_while_statement] = STATE(1877), + [sym_if_statement] = STATE(1877), + [sym_case_statement] = STATE(1877), + [sym_function_definition] = STATE(1877), + [sym_subshell] = STATE(1877), + [sym_pipeline] = STATE(1877), + [sym_list] = STATE(1877), + [sym_command] = STATE(1877), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(1869), - [sym_variable_assignment] = STATE(1870), - [sym_declaration_command] = STATE(1869), - [sym_unset_command] = STATE(1869), + [sym_bracket_command] = STATE(1877), + [sym_variable_assignment] = STATE(1878), + [sym_declaration_command] = STATE(1877), + [sym_unset_command] = STATE(1877), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -40878,21 +40977,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [1189] = { - [sym_for_statement] = STATE(1871), - [sym_while_statement] = STATE(1871), - [sym_if_statement] = STATE(1871), - [sym_case_statement] = STATE(1871), - [sym_function_definition] = STATE(1871), - [sym_subshell] = STATE(1871), - [sym_pipeline] = STATE(1871), - [sym_list] = STATE(1871), - [sym_command] = STATE(1871), + [1193] = { + [sym_for_statement] = STATE(1879), + [sym_while_statement] = STATE(1879), + [sym_if_statement] = STATE(1879), + [sym_case_statement] = STATE(1879), + [sym_function_definition] = STATE(1879), + [sym_subshell] = STATE(1879), + [sym_pipeline] = STATE(1879), + [sym_list] = STATE(1879), + [sym_command] = STATE(1879), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(1871), - [sym_variable_assignment] = STATE(1872), - [sym_declaration_command] = STATE(1871), - [sym_unset_command] = STATE(1871), + [sym_bracket_command] = STATE(1879), + [sym_variable_assignment] = STATE(1880), + [sym_declaration_command] = STATE(1879), + [sym_unset_command] = STATE(1879), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -40939,338 +41038,338 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [1190] = { - [aux_sym_concatenation_repeat1] = STATE(1856), - [sym_file_descriptor] = ACTIONS(2452), - [sym__concat] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(3708), - [anon_sym_PIPE_AMP] = ACTIONS(2452), - [anon_sym_AMP_AMP] = ACTIONS(2452), - [anon_sym_PIPE_PIPE] = ACTIONS(2452), - [anon_sym_LT] = ACTIONS(3708), - [anon_sym_GT] = ACTIONS(3708), - [anon_sym_GT_GT] = ACTIONS(2452), - [anon_sym_AMP_GT] = ACTIONS(3708), - [anon_sym_AMP_GT_GT] = ACTIONS(2452), - [anon_sym_LT_AMP] = ACTIONS(2452), - [anon_sym_GT_AMP] = ACTIONS(2452), - [anon_sym_LT_LT] = ACTIONS(3708), - [anon_sym_LT_LT_DASH] = ACTIONS(2452), - [anon_sym_LT_LT_LT] = ACTIONS(2452), - [anon_sym_BQUOTE] = ACTIONS(2452), - [sym_comment] = ACTIONS(56), - }, - [1191] = { - [aux_sym_concatenation_repeat1] = STATE(1856), - [sym_file_descriptor] = ACTIONS(2456), - [sym__concat] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(3710), - [anon_sym_PIPE_AMP] = ACTIONS(2456), - [anon_sym_AMP_AMP] = ACTIONS(2456), - [anon_sym_PIPE_PIPE] = ACTIONS(2456), - [anon_sym_LT] = ACTIONS(3710), - [anon_sym_GT] = ACTIONS(3710), - [anon_sym_GT_GT] = ACTIONS(2456), - [anon_sym_AMP_GT] = ACTIONS(3710), - [anon_sym_AMP_GT_GT] = ACTIONS(2456), - [anon_sym_LT_AMP] = ACTIONS(2456), - [anon_sym_GT_AMP] = ACTIONS(2456), - [anon_sym_LT_LT] = ACTIONS(3710), - [anon_sym_LT_LT_DASH] = ACTIONS(2456), - [anon_sym_LT_LT_LT] = ACTIONS(2456), - [anon_sym_BQUOTE] = ACTIONS(2456), - [sym_comment] = ACTIONS(56), - }, - [1192] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1192), - [sym_file_descriptor] = ACTIONS(3990), - [anon_sym_PIPE] = ACTIONS(3715), - [anon_sym_PIPE_AMP] = ACTIONS(3717), - [anon_sym_AMP_AMP] = ACTIONS(3717), - [anon_sym_PIPE_PIPE] = ACTIONS(3717), - [anon_sym_LT] = ACTIONS(3993), - [anon_sym_GT] = ACTIONS(3993), - [anon_sym_GT_GT] = ACTIONS(3996), - [anon_sym_AMP_GT] = ACTIONS(3993), - [anon_sym_AMP_GT_GT] = ACTIONS(3996), - [anon_sym_LT_AMP] = ACTIONS(3996), - [anon_sym_GT_AMP] = ACTIONS(3996), - [anon_sym_LT_LT] = ACTIONS(3725), - [anon_sym_LT_LT_DASH] = ACTIONS(3728), - [anon_sym_LT_LT_LT] = ACTIONS(3999), - [anon_sym_BQUOTE] = ACTIONS(3717), - [sym_comment] = ACTIONS(56), - }, - [1193] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1192), - [sym_file_descriptor] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_PIPE_AMP] = ACTIONS(3736), - [anon_sym_AMP_AMP] = ACTIONS(3736), - [anon_sym_PIPE_PIPE] = ACTIONS(3736), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_GT_GT] = ACTIONS(1082), - [anon_sym_AMP_GT] = ACTIONS(1080), - [anon_sym_AMP_GT_GT] = ACTIONS(1082), - [anon_sym_LT_AMP] = ACTIONS(1082), - [anon_sym_GT_AMP] = ACTIONS(1082), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(1084), - [anon_sym_BQUOTE] = ACTIONS(3736), - [sym_comment] = ACTIONS(56), - }, [1194] = { - [sym_concatenation] = STATE(540), - [sym_string] = STATE(595), - [sym_simple_expansion] = STATE(595), - [sym_string_expansion] = STATE(595), - [sym_expansion] = STATE(595), - [sym_command_substitution] = STATE(595), - [sym_process_substitution] = STATE(595), - [aux_sym_command_repeat2] = STATE(1194), - [sym_file_descriptor] = ACTIONS(1559), - [anon_sym_PIPE] = ACTIONS(1557), - [anon_sym_PIPE_AMP] = ACTIONS(1559), - [anon_sym_AMP_AMP] = ACTIONS(1559), - [anon_sym_PIPE_PIPE] = ACTIONS(1559), - [anon_sym_EQ_TILDE] = ACTIONS(4002), - [anon_sym_EQ_EQ] = ACTIONS(4002), - [anon_sym_LT] = ACTIONS(1557), - [anon_sym_GT] = ACTIONS(1557), - [anon_sym_GT_GT] = ACTIONS(1559), - [anon_sym_AMP_GT] = ACTIONS(1557), - [anon_sym_AMP_GT_GT] = ACTIONS(1559), - [anon_sym_LT_AMP] = ACTIONS(1559), - [anon_sym_GT_AMP] = ACTIONS(1559), - [anon_sym_LT_LT] = ACTIONS(1557), - [anon_sym_LT_LT_DASH] = ACTIONS(1559), - [anon_sym_LT_LT_LT] = ACTIONS(1559), - [sym__special_characters] = ACTIONS(4005), - [anon_sym_DQUOTE] = ACTIONS(4008), - [anon_sym_DOLLAR] = ACTIONS(4011), - [sym_raw_string] = ACTIONS(4014), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4017), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4020), - [anon_sym_BQUOTE] = ACTIONS(4023), - [anon_sym_LT_LPAREN] = ACTIONS(4026), - [anon_sym_GT_LPAREN] = ACTIONS(4026), + [aux_sym_concatenation_repeat1] = STATE(1864), + [sym_file_descriptor] = ACTIONS(2458), + [sym__concat] = ACTIONS(3980), + [anon_sym_PIPE] = ACTIONS(3720), + [anon_sym_PIPE_AMP] = ACTIONS(2458), + [anon_sym_AMP_AMP] = ACTIONS(2458), + [anon_sym_PIPE_PIPE] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(3720), + [anon_sym_GT] = ACTIONS(3720), + [anon_sym_GT_GT] = ACTIONS(2458), + [anon_sym_AMP_GT] = ACTIONS(3720), + [anon_sym_AMP_GT_GT] = ACTIONS(2458), + [anon_sym_LT_AMP] = ACTIONS(2458), + [anon_sym_GT_AMP] = ACTIONS(2458), + [anon_sym_LT_LT] = ACTIONS(3720), + [anon_sym_LT_LT_DASH] = ACTIONS(2458), + [anon_sym_LT_LT_LT] = ACTIONS(2458), + [anon_sym_BQUOTE] = ACTIONS(2458), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4029), }, [1195] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [sym_concatenation] = STATE(540), - [sym_string] = STATE(595), - [sym_simple_expansion] = STATE(595), - [sym_string_expansion] = STATE(595), - [sym_expansion] = STATE(595), - [sym_command_substitution] = STATE(595), - [sym_process_substitution] = STATE(595), - [aux_sym_while_statement_repeat1] = STATE(1873), - [aux_sym_command_repeat2] = STATE(1194), - [sym_file_descriptor] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(3734), - [anon_sym_PIPE_AMP] = ACTIONS(3736), - [anon_sym_AMP_AMP] = ACTIONS(3736), - [anon_sym_PIPE_PIPE] = ACTIONS(3736), - [anon_sym_EQ_TILDE] = ACTIONS(1078), - [anon_sym_EQ_EQ] = ACTIONS(1078), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_GT_GT] = ACTIONS(1082), - [anon_sym_AMP_GT] = ACTIONS(1080), - [anon_sym_AMP_GT_GT] = ACTIONS(1082), - [anon_sym_LT_AMP] = ACTIONS(1082), - [anon_sym_GT_AMP] = ACTIONS(1082), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(1084), - [sym__special_characters] = ACTIONS(1086), + [aux_sym_concatenation_repeat1] = STATE(1864), + [sym_file_descriptor] = ACTIONS(2462), + [sym__concat] = ACTIONS(3980), + [anon_sym_PIPE] = ACTIONS(3722), + [anon_sym_PIPE_AMP] = ACTIONS(2462), + [anon_sym_AMP_AMP] = ACTIONS(2462), + [anon_sym_PIPE_PIPE] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(3722), + [anon_sym_GT] = ACTIONS(3722), + [anon_sym_GT_GT] = ACTIONS(2462), + [anon_sym_AMP_GT] = ACTIONS(3722), + [anon_sym_AMP_GT_GT] = ACTIONS(2462), + [anon_sym_LT_AMP] = ACTIONS(2462), + [anon_sym_GT_AMP] = ACTIONS(2462), + [anon_sym_LT_LT] = ACTIONS(3722), + [anon_sym_LT_LT_DASH] = ACTIONS(2462), + [anon_sym_LT_LT_LT] = ACTIONS(2462), + [anon_sym_BQUOTE] = ACTIONS(2462), + [sym_comment] = ACTIONS(56), + }, + [1196] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [aux_sym_while_statement_repeat1] = STATE(1196), + [sym_file_descriptor] = ACTIONS(4002), + [anon_sym_PIPE] = ACTIONS(3727), + [anon_sym_PIPE_AMP] = ACTIONS(3729), + [anon_sym_AMP_AMP] = ACTIONS(3729), + [anon_sym_PIPE_PIPE] = ACTIONS(3729), + [anon_sym_LT] = ACTIONS(4005), + [anon_sym_GT] = ACTIONS(4005), + [anon_sym_GT_GT] = ACTIONS(4008), + [anon_sym_AMP_GT] = ACTIONS(4005), + [anon_sym_AMP_GT_GT] = ACTIONS(4008), + [anon_sym_LT_AMP] = ACTIONS(4008), + [anon_sym_GT_AMP] = ACTIONS(4008), + [anon_sym_LT_LT] = ACTIONS(3737), + [anon_sym_LT_LT_DASH] = ACTIONS(3740), + [anon_sym_LT_LT_LT] = ACTIONS(4011), + [anon_sym_BQUOTE] = ACTIONS(3729), + [sym_comment] = ACTIONS(56), + }, + [1197] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [aux_sym_while_statement_repeat1] = STATE(1196), + [sym_file_descriptor] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(3746), + [anon_sym_PIPE_AMP] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_PIPE_PIPE] = ACTIONS(3748), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1084), + [anon_sym_LT_AMP] = ACTIONS(1084), + [anon_sym_GT_AMP] = ACTIONS(1084), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_BQUOTE] = ACTIONS(3748), + [sym_comment] = ACTIONS(56), + }, + [1198] = { + [sym_concatenation] = STATE(541), + [sym_string] = STATE(596), + [sym_simple_expansion] = STATE(596), + [sym_string_expansion] = STATE(596), + [sym_expansion] = STATE(596), + [sym_command_substitution] = STATE(596), + [sym_process_substitution] = STATE(596), + [aux_sym_command_repeat2] = STATE(1198), + [sym_file_descriptor] = ACTIONS(1563), + [anon_sym_PIPE] = ACTIONS(1561), + [anon_sym_PIPE_AMP] = ACTIONS(1563), + [anon_sym_AMP_AMP] = ACTIONS(1563), + [anon_sym_PIPE_PIPE] = ACTIONS(1563), + [anon_sym_EQ_TILDE] = ACTIONS(4014), + [anon_sym_EQ_EQ] = ACTIONS(4014), + [anon_sym_LT] = ACTIONS(1561), + [anon_sym_GT] = ACTIONS(1561), + [anon_sym_GT_GT] = ACTIONS(1563), + [anon_sym_AMP_GT] = ACTIONS(1561), + [anon_sym_AMP_GT_GT] = ACTIONS(1563), + [anon_sym_LT_AMP] = ACTIONS(1563), + [anon_sym_GT_AMP] = ACTIONS(1563), + [anon_sym_LT_LT] = ACTIONS(1561), + [anon_sym_LT_LT_DASH] = ACTIONS(1563), + [anon_sym_LT_LT_LT] = ACTIONS(1563), + [sym__special_characters] = ACTIONS(4017), + [anon_sym_DQUOTE] = ACTIONS(4020), + [anon_sym_DOLLAR] = ACTIONS(4023), + [sym_raw_string] = ACTIONS(4026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4032), + [anon_sym_BQUOTE] = ACTIONS(4035), + [anon_sym_LT_LPAREN] = ACTIONS(4038), + [anon_sym_GT_LPAREN] = ACTIONS(4038), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4041), + }, + [1199] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [sym_concatenation] = STATE(541), + [sym_string] = STATE(596), + [sym_simple_expansion] = STATE(596), + [sym_string_expansion] = STATE(596), + [sym_expansion] = STATE(596), + [sym_command_substitution] = STATE(596), + [sym_process_substitution] = STATE(596), + [aux_sym_while_statement_repeat1] = STATE(1881), + [aux_sym_command_repeat2] = STATE(1198), + [sym_file_descriptor] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(3746), + [anon_sym_PIPE_AMP] = ACTIONS(3748), + [anon_sym_AMP_AMP] = ACTIONS(3748), + [anon_sym_PIPE_PIPE] = ACTIONS(3748), + [anon_sym_EQ_TILDE] = ACTIONS(1080), + [anon_sym_EQ_EQ] = ACTIONS(1080), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1084), + [anon_sym_LT_AMP] = ACTIONS(1084), + [anon_sym_GT_AMP] = ACTIONS(1084), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [sym__special_characters] = ACTIONS(1088), [anon_sym_DQUOTE] = ACTIONS(320), [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(1088), + [sym_raw_string] = ACTIONS(1090), [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(3736), + [anon_sym_BQUOTE] = ACTIONS(3748), [anon_sym_LT_LPAREN] = ACTIONS(332), [anon_sym_GT_LPAREN] = ACTIONS(332), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1090), - }, - [1196] = { - [sym_file_redirect] = STATE(1874), - [sym_file_descriptor] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_SEMI_SEMI] = ACTIONS(2784), - [anon_sym_PIPE_AMP] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1403), - [anon_sym_GT_GT] = ACTIONS(1403), - [anon_sym_AMP_GT] = ACTIONS(1403), - [anon_sym_AMP_GT_GT] = ACTIONS(1403), - [anon_sym_LT_AMP] = ACTIONS(1403), - [anon_sym_GT_AMP] = ACTIONS(1403), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - }, - [1197] = { - [aux_sym_concatenation_repeat1] = STATE(1201), - [sym_file_descriptor] = ACTIONS(1239), - [sym__concat] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(4032), - [anon_sym_SEMI_SEMI] = ACTIONS(4032), - [anon_sym_PIPE_AMP] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_PIPE_PIPE] = ACTIONS(4032), - [anon_sym_LT] = ACTIONS(4032), - [anon_sym_GT] = ACTIONS(4032), - [anon_sym_GT_GT] = ACTIONS(4032), - [anon_sym_AMP_GT] = ACTIONS(4032), - [anon_sym_AMP_GT_GT] = ACTIONS(4032), - [anon_sym_LT_AMP] = ACTIONS(4032), - [anon_sym_GT_AMP] = ACTIONS(4032), - [anon_sym_LT_LT] = ACTIONS(4032), - [anon_sym_LT_LT_DASH] = ACTIONS(4032), - [anon_sym_LT_LT_LT] = ACTIONS(4032), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym_LF] = ACTIONS(4032), - [anon_sym_AMP] = ACTIONS(4032), - }, - [1198] = { - [aux_sym_concatenation_repeat1] = STATE(1201), - [sym_file_descriptor] = ACTIONS(1243), - [sym__concat] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(4034), - [anon_sym_SEMI_SEMI] = ACTIONS(4034), - [anon_sym_PIPE_AMP] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_PIPE_PIPE] = ACTIONS(4034), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_GT_GT] = ACTIONS(4034), - [anon_sym_AMP_GT] = ACTIONS(4034), - [anon_sym_AMP_GT_GT] = ACTIONS(4034), - [anon_sym_LT_AMP] = ACTIONS(4034), - [anon_sym_GT_AMP] = ACTIONS(4034), - [anon_sym_LT_LT] = ACTIONS(4034), - [anon_sym_LT_LT_DASH] = ACTIONS(4034), - [anon_sym_LT_LT_LT] = ACTIONS(4034), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4034), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4034), - }, - [1199] = { - [sym_file_descriptor] = ACTIONS(1243), - [anon_sym_esac] = ACTIONS(4034), - [anon_sym_PIPE] = ACTIONS(4034), - [anon_sym_RPAREN] = ACTIONS(4034), - [anon_sym_SEMI_SEMI] = ACTIONS(4034), - [anon_sym_PIPE_AMP] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_PIPE_PIPE] = ACTIONS(4034), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_GT_GT] = ACTIONS(4034), - [anon_sym_AMP_GT] = ACTIONS(4034), - [anon_sym_AMP_GT_GT] = ACTIONS(4034), - [anon_sym_LT_AMP] = ACTIONS(4034), - [anon_sym_GT_AMP] = ACTIONS(4034), - [anon_sym_LT_LT] = ACTIONS(4034), - [anon_sym_LT_LT_DASH] = ACTIONS(4034), - [anon_sym_LT_LT_LT] = ACTIONS(4034), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4034), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4034), + [sym_word] = ACTIONS(1092), }, [1200] = { - [sym_string] = STATE(1875), - [sym_simple_expansion] = STATE(1875), - [sym_string_expansion] = STATE(1875), - [sym_expansion] = STATE(1875), - [sym_command_substitution] = STATE(1875), - [sym_process_substitution] = STATE(1875), - [sym__special_characters] = ACTIONS(4036), - [anon_sym_DQUOTE] = ACTIONS(1118), - [anon_sym_DOLLAR] = ACTIONS(1120), - [sym_raw_string] = ACTIONS(4038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1124), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1126), - [anon_sym_BQUOTE] = ACTIONS(1128), - [anon_sym_LT_LPAREN] = ACTIONS(1130), - [anon_sym_GT_LPAREN] = ACTIONS(1130), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4036), + [sym_file_redirect] = STATE(1882), + [sym_file_descriptor] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_SEMI_SEMI] = ACTIONS(2794), + [anon_sym_PIPE_AMP] = ACTIONS(2794), + [anon_sym_AMP_AMP] = ACTIONS(2794), + [anon_sym_PIPE_PIPE] = ACTIONS(2794), + [anon_sym_LT] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_GT_GT] = ACTIONS(1407), + [anon_sym_AMP_GT] = ACTIONS(1407), + [anon_sym_AMP_GT_GT] = ACTIONS(1407), + [anon_sym_LT_AMP] = ACTIONS(1407), + [anon_sym_GT_AMP] = ACTIONS(1407), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_LF] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), }, [1201] = { - [aux_sym_concatenation_repeat1] = STATE(1876), - [sym_file_descriptor] = ACTIONS(788), - [sym__concat] = ACTIONS(2410), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(790), - [anon_sym_GT] = ACTIONS(790), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(790), - [anon_sym_AMP_GT_GT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(790), - [anon_sym_GT_AMP] = ACTIONS(790), - [anon_sym_LT_LT] = ACTIONS(790), - [anon_sym_LT_LT_DASH] = ACTIONS(790), - [anon_sym_LT_LT_LT] = ACTIONS(790), + [aux_sym_concatenation_repeat1] = STATE(1205), + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(2416), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [anon_sym_PIPE_AMP] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_GT_GT] = ACTIONS(4044), + [anon_sym_AMP_GT] = ACTIONS(4044), + [anon_sym_AMP_GT_GT] = ACTIONS(4044), + [anon_sym_LT_AMP] = ACTIONS(4044), + [anon_sym_GT_AMP] = ACTIONS(4044), + [anon_sym_LT_LT] = ACTIONS(4044), + [anon_sym_LT_LT_DASH] = ACTIONS(4044), + [anon_sym_LT_LT_LT] = ACTIONS(4044), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4044), }, [1202] = { - [sym_file_descriptor] = ACTIONS(792), - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(794), - [anon_sym_GT] = ACTIONS(794), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_AMP_GT] = ACTIONS(794), - [anon_sym_AMP_GT_GT] = ACTIONS(794), - [anon_sym_LT_AMP] = ACTIONS(794), - [anon_sym_GT_AMP] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(794), - [anon_sym_LT_LT_DASH] = ACTIONS(794), - [anon_sym_LT_LT_LT] = ACTIONS(794), + [aux_sym_concatenation_repeat1] = STATE(1205), + [sym_file_descriptor] = ACTIONS(1245), + [sym__concat] = ACTIONS(2416), + [anon_sym_PIPE] = ACTIONS(4046), + [anon_sym_SEMI_SEMI] = ACTIONS(4046), + [anon_sym_PIPE_AMP] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_GT] = ACTIONS(4046), + [anon_sym_GT_GT] = ACTIONS(4046), + [anon_sym_AMP_GT] = ACTIONS(4046), + [anon_sym_AMP_GT_GT] = ACTIONS(4046), + [anon_sym_LT_AMP] = ACTIONS(4046), + [anon_sym_GT_AMP] = ACTIONS(4046), + [anon_sym_LT_LT] = ACTIONS(4046), + [anon_sym_LT_LT_DASH] = ACTIONS(4046), + [anon_sym_LT_LT_LT] = ACTIONS(4046), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_LF] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4046), }, [1203] = { + [sym_file_descriptor] = ACTIONS(1245), + [anon_sym_esac] = ACTIONS(4046), + [anon_sym_PIPE] = ACTIONS(4046), + [anon_sym_RPAREN] = ACTIONS(4046), + [anon_sym_SEMI_SEMI] = ACTIONS(4046), + [anon_sym_PIPE_AMP] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_GT] = ACTIONS(4046), + [anon_sym_GT_GT] = ACTIONS(4046), + [anon_sym_AMP_GT] = ACTIONS(4046), + [anon_sym_AMP_GT_GT] = ACTIONS(4046), + [anon_sym_LT_AMP] = ACTIONS(4046), + [anon_sym_GT_AMP] = ACTIONS(4046), + [anon_sym_LT_LT] = ACTIONS(4046), + [anon_sym_LT_LT_DASH] = ACTIONS(4046), + [anon_sym_LT_LT_LT] = ACTIONS(4046), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_LF] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4046), + }, + [1204] = { + [sym_string] = STATE(1883), + [sym_simple_expansion] = STATE(1883), + [sym_string_expansion] = STATE(1883), + [sym_expansion] = STATE(1883), + [sym_command_substitution] = STATE(1883), + [sym_process_substitution] = STATE(1883), + [sym__special_characters] = ACTIONS(4048), + [anon_sym_DQUOTE] = ACTIONS(1120), + [anon_sym_DOLLAR] = ACTIONS(1122), + [sym_raw_string] = ACTIONS(4050), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1126), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), + [anon_sym_BQUOTE] = ACTIONS(1130), + [anon_sym_LT_LPAREN] = ACTIONS(1132), + [anon_sym_GT_LPAREN] = ACTIONS(1132), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4048), + }, + [1205] = { + [aux_sym_concatenation_repeat1] = STATE(1884), + [sym_file_descriptor] = ACTIONS(790), + [sym__concat] = ACTIONS(2416), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_AMP_GT] = ACTIONS(792), + [anon_sym_AMP_GT_GT] = ACTIONS(792), + [anon_sym_LT_AMP] = ACTIONS(792), + [anon_sym_GT_AMP] = ACTIONS(792), + [anon_sym_LT_LT] = ACTIONS(792), + [anon_sym_LT_LT_DASH] = ACTIONS(792), + [anon_sym_LT_LT_LT] = ACTIONS(792), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), + }, + [1206] = { + [sym_file_descriptor] = ACTIONS(794), + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(796), + [anon_sym_GT_GT] = ACTIONS(796), + [anon_sym_AMP_GT] = ACTIONS(796), + [anon_sym_AMP_GT_GT] = ACTIONS(796), + [anon_sym_LT_AMP] = ACTIONS(796), + [anon_sym_GT_AMP] = ACTIONS(796), + [anon_sym_LT_LT] = ACTIONS(796), + [anon_sym_LT_LT_DASH] = ACTIONS(796), + [anon_sym_LT_LT_LT] = ACTIONS(796), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + }, + [1207] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(4040), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(4052), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -41278,268 +41377,199 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [1204] = { - [sym_file_descriptor] = ACTIONS(824), - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_LT] = ACTIONS(826), - [anon_sym_GT] = ACTIONS(826), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_AMP_GT] = ACTIONS(826), - [anon_sym_AMP_GT_GT] = ACTIONS(826), - [anon_sym_LT_AMP] = ACTIONS(826), - [anon_sym_GT_AMP] = ACTIONS(826), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_LT_LT_DASH] = ACTIONS(826), - [anon_sym_LT_LT_LT] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), - }, - [1205] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = 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), - [anon_sym_LT] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(830), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_AMP_GT] = ACTIONS(830), - [anon_sym_AMP_GT_GT] = ACTIONS(830), - [anon_sym_LT_AMP] = ACTIONS(830), - [anon_sym_GT_AMP] = ACTIONS(830), - [anon_sym_LT_LT] = ACTIONS(830), - [anon_sym_LT_LT_DASH] = ACTIONS(830), - [anon_sym_LT_LT_LT] = ACTIONS(830), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), - }, - [1206] = { - [sym_file_descriptor] = ACTIONS(832), - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_AMP_GT] = ACTIONS(834), - [anon_sym_AMP_GT_GT] = ACTIONS(834), - [anon_sym_LT_AMP] = ACTIONS(834), - [anon_sym_GT_AMP] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_LT_LT_DASH] = ACTIONS(834), - [anon_sym_LT_LT_LT] = ACTIONS(834), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - }, - [1207] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(4042), - [sym_comment] = ACTIONS(56), - }, [1208] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1881), - [anon_sym_RBRACE] = ACTIONS(4044), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4046), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(826), + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(828), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(828), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [anon_sym_LT_LT] = ACTIONS(828), + [anon_sym_LT_LT_DASH] = ACTIONS(828), + [anon_sym_LT_LT_LT] = ACTIONS(828), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), }, [1209] = { - [sym_subscript] = STATE(1885), - [sym_variable_name] = ACTIONS(4048), - [anon_sym_DOLLAR] = ACTIONS(4050), - [anon_sym_DASH] = ACTIONS(4050), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4052), - [anon_sym_STAR] = ACTIONS(4050), - [anon_sym_AT] = ACTIONS(4050), - [anon_sym_QMARK] = ACTIONS(4050), - [anon_sym_0] = ACTIONS(4054), - [anon_sym__] = ACTIONS(4054), + [sym_file_descriptor] = ACTIONS(830), + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_AMP_GT] = ACTIONS(832), + [anon_sym_AMP_GT_GT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(832), + [anon_sym_GT_AMP] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(832), + [anon_sym_LT_LT_DASH] = ACTIONS(832), + [anon_sym_LT_LT_LT] = ACTIONS(832), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), }, [1210] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1888), - [anon_sym_RBRACE] = ACTIONS(4056), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4058), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_AMP_GT] = ACTIONS(836), + [anon_sym_AMP_GT_GT] = ACTIONS(836), + [anon_sym_LT_AMP] = ACTIONS(836), + [anon_sym_GT_AMP] = ACTIONS(836), + [anon_sym_LT_LT] = ACTIONS(836), + [anon_sym_LT_LT_DASH] = ACTIONS(836), + [anon_sym_LT_LT_LT] = ACTIONS(836), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), }, [1211] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1891), - [anon_sym_RBRACE] = ACTIONS(4060), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4062), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(4054), + [sym_comment] = ACTIONS(56), }, [1212] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4064), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1889), + [anon_sym_RBRACE] = ACTIONS(4056), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4058), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1213] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4064), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_subscript] = STATE(1893), + [sym_variable_name] = ACTIONS(4060), + [anon_sym_DOLLAR] = ACTIONS(4062), + [anon_sym_DASH] = ACTIONS(4062), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4064), + [anon_sym_STAR] = ACTIONS(4062), + [anon_sym_AT] = ACTIONS(4062), + [anon_sym_QMARK] = ACTIONS(4062), + [anon_sym_0] = ACTIONS(4066), + [anon_sym__] = ACTIONS(4066), }, [1214] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(4064), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1896), + [anon_sym_RBRACE] = ACTIONS(4068), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4070), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1215] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(4064), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1899), + [anon_sym_RBRACE] = ACTIONS(4072), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4074), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1216] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4066), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4076), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, [1217] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4066), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4076), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -41560,675 +41590,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(384), }, [1218] = { - [sym__heredoc_middle] = ACTIONS(4068), - [sym__heredoc_end] = ACTIONS(4068), - [anon_sym_DOLLAR] = ACTIONS(4070), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4068), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(4076), [sym_comment] = ACTIONS(56), }, [1219] = { - [sym_file_descriptor] = ACTIONS(4072), - [anon_sym_esac] = ACTIONS(4074), - [anon_sym_PIPE] = ACTIONS(4074), - [anon_sym_RPAREN] = ACTIONS(4074), - [anon_sym_SEMI_SEMI] = ACTIONS(4074), - [anon_sym_PIPE_AMP] = ACTIONS(4074), - [anon_sym_AMP_AMP] = ACTIONS(4074), - [anon_sym_PIPE_PIPE] = ACTIONS(4074), - [anon_sym_LT] = ACTIONS(4074), - [anon_sym_GT] = ACTIONS(4074), - [anon_sym_GT_GT] = ACTIONS(4074), - [anon_sym_AMP_GT] = ACTIONS(4074), - [anon_sym_AMP_GT_GT] = ACTIONS(4074), - [anon_sym_LT_AMP] = ACTIONS(4074), - [anon_sym_GT_AMP] = ACTIONS(4074), - [anon_sym_LT_LT] = ACTIONS(4074), - [anon_sym_LT_LT_DASH] = ACTIONS(4074), - [anon_sym_LT_LT_LT] = ACTIONS(4074), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4074), - [anon_sym_LF] = ACTIONS(4074), - [anon_sym_AMP] = ACTIONS(4074), - }, - [1220] = { - [anon_sym_DOLLAR] = ACTIONS(4076), - [anon_sym_POUND] = ACTIONS(4076), - [anon_sym_DASH] = ACTIONS(4076), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4078), - [anon_sym_STAR] = ACTIONS(4076), - [anon_sym_AT] = ACTIONS(4076), - [anon_sym_QMARK] = ACTIONS(4076), - [anon_sym_0] = ACTIONS(4080), - [anon_sym__] = ACTIONS(4080), - }, - [1221] = { - [sym_subscript] = STATE(1900), - [sym_variable_name] = ACTIONS(4082), - [anon_sym_DOLLAR] = ACTIONS(4084), - [anon_sym_POUND] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4084), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4088), - [anon_sym_STAR] = ACTIONS(4084), - [anon_sym_AT] = ACTIONS(4084), - [anon_sym_QMARK] = ACTIONS(4084), - [anon_sym_0] = ACTIONS(4090), - [anon_sym__] = ACTIONS(4090), - }, - [1222] = { - [sym_simple_expansion] = STATE(1218), - [sym_expansion] = STATE(1218), - [aux_sym_heredoc_repeat1] = STATE(1902), - [sym__heredoc_middle] = ACTIONS(2440), - [sym__heredoc_end] = ACTIONS(4092), - [anon_sym_DOLLAR] = ACTIONS(2444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), - [sym_comment] = ACTIONS(56), - }, - [1223] = { - [aux_sym_concatenation_repeat1] = STATE(414), - [sym_file_descriptor] = ACTIONS(1301), - [sym__concat] = ACTIONS(756), - [sym_variable_name] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(3424), - [anon_sym_GT] = ACTIONS(3424), - [anon_sym_GT_GT] = ACTIONS(1301), - [anon_sym_AMP_GT] = ACTIONS(3424), - [anon_sym_AMP_GT_GT] = ACTIONS(1301), - [anon_sym_LT_AMP] = ACTIONS(1301), - [anon_sym_GT_AMP] = ACTIONS(1301), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3424), - }, - [1224] = { - [aux_sym_concatenation_repeat1] = STATE(414), - [sym_file_descriptor] = ACTIONS(1277), - [sym__concat] = ACTIONS(756), - [sym_variable_name] = ACTIONS(1277), - [anon_sym_LT] = ACTIONS(3418), - [anon_sym_GT] = ACTIONS(3418), - [anon_sym_GT_GT] = ACTIONS(1277), - [anon_sym_AMP_GT] = ACTIONS(3418), - [anon_sym_AMP_GT_GT] = ACTIONS(1277), - [anon_sym_LT_AMP] = ACTIONS(1277), - [anon_sym_GT_AMP] = ACTIONS(1277), - [sym__special_characters] = ACTIONS(3418), - [anon_sym_DQUOTE] = ACTIONS(1277), - [anon_sym_DOLLAR] = ACTIONS(3418), - [sym_raw_string] = ACTIONS(1277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), - [anon_sym_BQUOTE] = ACTIONS(1277), - [anon_sym_LT_LPAREN] = ACTIONS(1277), - [anon_sym_GT_LPAREN] = ACTIONS(1277), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3418), - }, - [1225] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(624), - [sym_file_descriptor] = ACTIONS(352), - [anon_sym_PIPE] = ACTIONS(4094), - [anon_sym_SEMI_SEMI] = ACTIONS(4094), - [anon_sym_PIPE_AMP] = ACTIONS(4094), - [anon_sym_AMP_AMP] = ACTIONS(4094), - [anon_sym_PIPE_PIPE] = ACTIONS(4094), - [anon_sym_LT] = ACTIONS(358), - [anon_sym_GT] = ACTIONS(358), - [anon_sym_GT_GT] = ACTIONS(358), - [anon_sym_AMP_GT] = ACTIONS(358), - [anon_sym_AMP_GT_GT] = ACTIONS(358), - [anon_sym_LT_AMP] = ACTIONS(358), - [anon_sym_GT_AMP] = ACTIONS(358), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(362), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4094), - [anon_sym_LF] = ACTIONS(4094), - [anon_sym_AMP] = ACTIONS(4094), - }, - [1226] = { - [sym__concat] = ACTIONS(4096), - [anon_sym_EQ] = ACTIONS(4098), - [anon_sym_PLUS_EQ] = ACTIONS(4098), - [sym_comment] = ACTIONS(56), - }, - [1227] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_RBRACK] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - }, - [1228] = { - [anon_sym_EQ] = ACTIONS(4098), - [anon_sym_PLUS_EQ] = ACTIONS(4098), - [sym_comment] = ACTIONS(56), - }, - [1229] = { - [sym_string] = STATE(1227), - [sym_simple_expansion] = STATE(1227), - [sym_string_expansion] = STATE(1227), - [sym_expansion] = STATE(1227), - [sym_command_substitution] = STATE(1227), - [sym_process_substitution] = STATE(1227), - [sym__special_characters] = ACTIONS(2515), - [anon_sym_DQUOTE] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_raw_string] = ACTIONS(2513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2515), - }, - [1230] = { - [aux_sym_concatenation_repeat1] = STATE(1230), - [sym__concat] = ACTIONS(4100), - [anon_sym_RBRACK] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - }, - [1231] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_RBRACK] = ACTIONS(1923), - [sym_comment] = ACTIONS(56), - }, - [1232] = { - [sym__concat] = ACTIONS(4103), - [anon_sym_EQ] = ACTIONS(4105), - [anon_sym_PLUS_EQ] = ACTIONS(4105), - [sym_comment] = ACTIONS(56), - }, - [1233] = { - [anon_sym_EQ] = ACTIONS(4105), - [anon_sym_PLUS_EQ] = ACTIONS(4105), - [sym_comment] = ACTIONS(56), - }, - [1234] = { - [sym_concatenation] = STATE(1908), - [sym_string] = STATE(1907), - [sym_simple_expansion] = STATE(1907), - [sym_string_expansion] = STATE(1907), - [sym_expansion] = STATE(1907), - [sym_command_substitution] = STATE(1907), - [sym_process_substitution] = STATE(1907), - [anon_sym_RBRACE] = ACTIONS(4107), - [sym__special_characters] = ACTIONS(4109), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(4111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4113), - }, - [1235] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_RBRACK] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - }, - [1236] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4115), - }, - [1237] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4117), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1238] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(4119), - [sym_comment] = ACTIONS(56), - }, - [1239] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1914), - [anon_sym_RBRACE] = ACTIONS(4121), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4123), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1240] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1917), - [anon_sym_RBRACE] = ACTIONS(4125), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4127), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1241] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1919), - [anon_sym_RBRACE] = ACTIONS(4107), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4129), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1242] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_RBRACK] = ACTIONS(2022), - [sym_comment] = ACTIONS(56), - }, - [1243] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4131), - }, - [1244] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4133), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1245] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_RBRACK] = ACTIONS(2030), - [sym_comment] = ACTIONS(56), - }, - [1246] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4135), - }, - [1247] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4107), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1248] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_RBRACK] = ACTIONS(2190), - [sym_comment] = ACTIONS(56), - }, - [1249] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_RBRACK] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), - }, - [1250] = { - [sym_string] = STATE(1923), - [sym_simple_expansion] = STATE(1923), - [sym_string_expansion] = STATE(1923), - [sym_expansion] = STATE(1923), - [sym_command_substitution] = STATE(1923), - [sym_process_substitution] = STATE(1923), - [sym__special_characters] = ACTIONS(4137), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1287), - [sym_raw_string] = ACTIONS(4139), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LT_LPAREN] = ACTIONS(1297), - [anon_sym_GT_LPAREN] = ACTIONS(1297), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4137), - }, - [1251] = { - [aux_sym_concatenation_repeat1] = STATE(1924), - [sym__concat] = ACTIONS(2561), - [anon_sym_RPAREN] = ACTIONS(788), - [sym__special_characters] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(1567), - [sym_raw_string] = ACTIONS(788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LT_LPAREN] = ACTIONS(788), - [anon_sym_GT_LPAREN] = ACTIONS(788), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1567), - }, - [1252] = { - [sym__concat] = ACTIONS(792), - [anon_sym_RPAREN] = ACTIONS(792), - [sym__special_characters] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(1569), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1569), - }, - [1253] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(4141), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1254] = { - [sym__concat] = ACTIONS(824), - [anon_sym_RPAREN] = ACTIONS(824), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_LT_LPAREN] = ACTIONS(824), - [anon_sym_GT_LPAREN] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1573), - }, - [1255] = { - [sym__concat] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), - [sym__special_characters] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1575), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1575), - }, - [1256] = { - [sym__concat] = ACTIONS(832), - [anon_sym_RPAREN] = ACTIONS(832), - [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1577), - }, - [1257] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(4143), - [sym_comment] = ACTIONS(56), - }, - [1258] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1929), - [anon_sym_RBRACE] = ACTIONS(4145), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4147), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1259] = { - [sym_subscript] = STATE(1933), - [sym_variable_name] = ACTIONS(4149), - [anon_sym_DOLLAR] = ACTIONS(4151), - [anon_sym_DASH] = ACTIONS(4151), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4153), - [anon_sym_STAR] = ACTIONS(4151), - [anon_sym_AT] = ACTIONS(4151), - [anon_sym_QMARK] = ACTIONS(4151), - [anon_sym_0] = ACTIONS(4155), - [anon_sym__] = ACTIONS(4155), - }, - [1260] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1936), - [anon_sym_RBRACE] = ACTIONS(4157), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4159), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1261] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1939), - [anon_sym_RBRACE] = ACTIONS(4161), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4163), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1262] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4165), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [1263] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4165), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(4076), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1220] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4078), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [1221] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4078), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -42248,56 +41658,676 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [1264] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(4165), + [1222] = { + [sym__heredoc_middle] = ACTIONS(4080), + [sym__heredoc_end] = ACTIONS(4080), + [anon_sym_DOLLAR] = ACTIONS(4082), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4080), [sym_comment] = ACTIONS(56), }, + [1223] = { + [sym_file_descriptor] = ACTIONS(4084), + [anon_sym_esac] = ACTIONS(4086), + [anon_sym_PIPE] = ACTIONS(4086), + [anon_sym_RPAREN] = ACTIONS(4086), + [anon_sym_SEMI_SEMI] = ACTIONS(4086), + [anon_sym_PIPE_AMP] = ACTIONS(4086), + [anon_sym_AMP_AMP] = ACTIONS(4086), + [anon_sym_PIPE_PIPE] = ACTIONS(4086), + [anon_sym_LT] = ACTIONS(4086), + [anon_sym_GT] = ACTIONS(4086), + [anon_sym_GT_GT] = ACTIONS(4086), + [anon_sym_AMP_GT] = ACTIONS(4086), + [anon_sym_AMP_GT_GT] = ACTIONS(4086), + [anon_sym_LT_AMP] = ACTIONS(4086), + [anon_sym_GT_AMP] = ACTIONS(4086), + [anon_sym_LT_LT] = ACTIONS(4086), + [anon_sym_LT_LT_DASH] = ACTIONS(4086), + [anon_sym_LT_LT_LT] = ACTIONS(4086), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4086), + [anon_sym_LF] = ACTIONS(4086), + [anon_sym_AMP] = ACTIONS(4086), + }, + [1224] = { + [anon_sym_DOLLAR] = ACTIONS(4088), + [anon_sym_POUND] = ACTIONS(4088), + [anon_sym_DASH] = ACTIONS(4088), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4090), + [anon_sym_STAR] = ACTIONS(4088), + [anon_sym_AT] = ACTIONS(4088), + [anon_sym_QMARK] = ACTIONS(4088), + [anon_sym_0] = ACTIONS(4092), + [anon_sym__] = ACTIONS(4092), + }, + [1225] = { + [sym_subscript] = STATE(1908), + [sym_variable_name] = ACTIONS(4094), + [anon_sym_DOLLAR] = ACTIONS(4096), + [anon_sym_POUND] = ACTIONS(4098), + [anon_sym_DASH] = ACTIONS(4096), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4100), + [anon_sym_STAR] = ACTIONS(4096), + [anon_sym_AT] = ACTIONS(4096), + [anon_sym_QMARK] = ACTIONS(4096), + [anon_sym_0] = ACTIONS(4102), + [anon_sym__] = ACTIONS(4102), + }, + [1226] = { + [sym_simple_expansion] = STATE(1222), + [sym_expansion] = STATE(1222), + [aux_sym_heredoc_repeat1] = STATE(1910), + [sym__heredoc_middle] = ACTIONS(2446), + [sym__heredoc_end] = ACTIONS(4104), + [anon_sym_DOLLAR] = ACTIONS(2450), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2452), + [sym_comment] = ACTIONS(56), + }, + [1227] = { + [aux_sym_concatenation_repeat1] = STATE(415), + [sym_file_descriptor] = ACTIONS(1303), + [sym__concat] = ACTIONS(758), + [sym_variable_name] = ACTIONS(1303), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_GT] = ACTIONS(3434), + [anon_sym_GT_GT] = ACTIONS(1303), + [anon_sym_AMP_GT] = ACTIONS(3434), + [anon_sym_AMP_GT_GT] = ACTIONS(1303), + [anon_sym_LT_AMP] = ACTIONS(1303), + [anon_sym_GT_AMP] = ACTIONS(1303), + [sym__special_characters] = ACTIONS(3434), + [anon_sym_DQUOTE] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(3434), + [sym_raw_string] = ACTIONS(1303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1303), + [anon_sym_BQUOTE] = ACTIONS(1303), + [anon_sym_LT_LPAREN] = ACTIONS(1303), + [anon_sym_GT_LPAREN] = ACTIONS(1303), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3434), + }, + [1228] = { + [aux_sym_concatenation_repeat1] = STATE(415), + [sym_file_descriptor] = ACTIONS(1279), + [sym__concat] = ACTIONS(758), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_LT] = ACTIONS(3428), + [anon_sym_GT] = ACTIONS(3428), + [anon_sym_GT_GT] = ACTIONS(1279), + [anon_sym_AMP_GT] = ACTIONS(3428), + [anon_sym_AMP_GT_GT] = ACTIONS(1279), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(3428), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(3428), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3428), + }, + [1229] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(625), + [sym_file_descriptor] = ACTIONS(352), + [anon_sym_PIPE] = ACTIONS(4106), + [anon_sym_SEMI_SEMI] = ACTIONS(4106), + [anon_sym_PIPE_AMP] = ACTIONS(4106), + [anon_sym_AMP_AMP] = ACTIONS(4106), + [anon_sym_PIPE_PIPE] = ACTIONS(4106), + [anon_sym_LT] = ACTIONS(358), + [anon_sym_GT] = ACTIONS(358), + [anon_sym_GT_GT] = ACTIONS(358), + [anon_sym_AMP_GT] = ACTIONS(358), + [anon_sym_AMP_GT_GT] = ACTIONS(358), + [anon_sym_LT_AMP] = ACTIONS(358), + [anon_sym_GT_AMP] = ACTIONS(358), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(362), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym_LF] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4106), + }, + [1230] = { + [sym__concat] = ACTIONS(4108), + [anon_sym_EQ] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [sym_comment] = ACTIONS(56), + }, + [1231] = { + [sym__concat] = ACTIONS(1890), + [anon_sym_RBRACK] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + }, + [1232] = { + [anon_sym_EQ] = ACTIONS(4110), + [anon_sym_PLUS_EQ] = ACTIONS(4110), + [sym_comment] = ACTIONS(56), + }, + [1233] = { + [sym_string] = STATE(1231), + [sym_simple_expansion] = STATE(1231), + [sym_string_expansion] = STATE(1231), + [sym_expansion] = STATE(1231), + [sym_command_substitution] = STATE(1231), + [sym_process_substitution] = STATE(1231), + [sym__special_characters] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym_raw_string] = ACTIONS(2519), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(414), + [anon_sym_GT_LPAREN] = ACTIONS(414), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2521), + }, + [1234] = { + [aux_sym_concatenation_repeat1] = STATE(1234), + [sym__concat] = ACTIONS(4112), + [anon_sym_RBRACK] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + }, + [1235] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_RBRACK] = ACTIONS(1927), + [sym_comment] = ACTIONS(56), + }, + [1236] = { + [sym__concat] = ACTIONS(4115), + [anon_sym_EQ] = ACTIONS(4117), + [anon_sym_PLUS_EQ] = ACTIONS(4117), + [sym_comment] = ACTIONS(56), + }, + [1237] = { + [anon_sym_EQ] = ACTIONS(4117), + [anon_sym_PLUS_EQ] = ACTIONS(4117), + [sym_comment] = ACTIONS(56), + }, + [1238] = { + [sym_concatenation] = STATE(1916), + [sym_string] = STATE(1915), + [sym_simple_expansion] = STATE(1915), + [sym_string_expansion] = STATE(1915), + [sym_expansion] = STATE(1915), + [sym_command_substitution] = STATE(1915), + [sym_process_substitution] = STATE(1915), + [anon_sym_RBRACE] = ACTIONS(4119), + [sym__special_characters] = ACTIONS(4121), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(4123), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4125), + }, + [1239] = { + [sym__concat] = ACTIONS(1972), + [anon_sym_RBRACK] = ACTIONS(1972), + [sym_comment] = ACTIONS(56), + }, + [1240] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4127), + }, + [1241] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4129), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1242] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(4131), + [sym_comment] = ACTIONS(56), + }, + [1243] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1922), + [anon_sym_RBRACE] = ACTIONS(4133), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4135), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1244] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1925), + [anon_sym_RBRACE] = ACTIONS(4137), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4139), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1245] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1927), + [anon_sym_RBRACE] = ACTIONS(4119), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4141), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1246] = { + [sym__concat] = ACTIONS(2026), + [anon_sym_RBRACK] = ACTIONS(2026), + [sym_comment] = ACTIONS(56), + }, + [1247] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4143), + }, + [1248] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4145), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1249] = { + [sym__concat] = ACTIONS(2034), + [anon_sym_RBRACK] = ACTIONS(2034), + [sym_comment] = ACTIONS(56), + }, + [1250] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4147), + }, + [1251] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4119), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1252] = { + [sym__concat] = ACTIONS(2196), + [anon_sym_RBRACK] = ACTIONS(2196), + [sym_comment] = ACTIONS(56), + }, + [1253] = { + [sym__concat] = ACTIONS(2402), + [anon_sym_RBRACK] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), + }, + [1254] = { + [sym_string] = STATE(1931), + [sym_simple_expansion] = STATE(1931), + [sym_string_expansion] = STATE(1931), + [sym_expansion] = STATE(1931), + [sym_command_substitution] = STATE(1931), + [sym_process_substitution] = STATE(1931), + [sym__special_characters] = ACTIONS(4149), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1289), + [sym_raw_string] = ACTIONS(4151), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), + [anon_sym_BQUOTE] = ACTIONS(1297), + [anon_sym_LT_LPAREN] = ACTIONS(1299), + [anon_sym_GT_LPAREN] = ACTIONS(1299), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4149), + }, + [1255] = { + [aux_sym_concatenation_repeat1] = STATE(1932), + [sym__concat] = ACTIONS(2567), + [anon_sym_RPAREN] = ACTIONS(790), + [sym__special_characters] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(1571), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1571), + }, + [1256] = { + [sym__concat] = ACTIONS(794), + [anon_sym_RPAREN] = ACTIONS(794), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1573), + }, + [1257] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(4153), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1258] = { + [sym__concat] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [sym__special_characters] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1577), + }, + [1259] = { + [sym__concat] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(830), + [sym__special_characters] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(1579), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1579), + }, + [1260] = { + [sym__concat] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), + [sym__special_characters] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1581), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1581), + }, + [1261] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(4155), + [sym_comment] = ACTIONS(56), + }, + [1262] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1937), + [anon_sym_RBRACE] = ACTIONS(4157), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4159), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1263] = { + [sym_subscript] = STATE(1941), + [sym_variable_name] = ACTIONS(4161), + [anon_sym_DOLLAR] = ACTIONS(4163), + [anon_sym_DASH] = ACTIONS(4163), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4165), + [anon_sym_STAR] = ACTIONS(4163), + [anon_sym_AT] = ACTIONS(4163), + [anon_sym_QMARK] = ACTIONS(4163), + [anon_sym_0] = ACTIONS(4167), + [anon_sym__] = ACTIONS(4167), + }, + [1264] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1944), + [anon_sym_RBRACE] = ACTIONS(4169), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4171), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, [1265] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(4165), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1947), + [anon_sym_RBRACE] = ACTIONS(4173), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4175), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1266] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4167), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4177), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, [1267] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4167), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4177), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -42318,769 +42348,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(384), }, [1268] = { - [sym_file_descriptor] = ACTIONS(4169), - [sym_variable_name] = ACTIONS(4169), - [anon_sym_PIPE] = ACTIONS(4171), - [anon_sym_RPAREN] = ACTIONS(4171), - [anon_sym_SEMI_SEMI] = ACTIONS(4171), - [anon_sym_PIPE_AMP] = ACTIONS(4171), - [anon_sym_AMP_AMP] = ACTIONS(4171), - [anon_sym_PIPE_PIPE] = ACTIONS(4171), - [anon_sym_LT] = ACTIONS(4171), - [anon_sym_GT] = ACTIONS(4171), - [anon_sym_GT_GT] = ACTIONS(4171), - [anon_sym_AMP_GT] = ACTIONS(4171), - [anon_sym_AMP_GT_GT] = ACTIONS(4171), - [anon_sym_LT_AMP] = ACTIONS(4171), - [anon_sym_GT_AMP] = ACTIONS(4171), - [sym__special_characters] = ACTIONS(4171), - [anon_sym_DQUOTE] = ACTIONS(4171), - [anon_sym_DOLLAR] = ACTIONS(4171), - [sym_raw_string] = ACTIONS(4171), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4171), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4171), - [anon_sym_BQUOTE] = ACTIONS(4171), - [anon_sym_LT_LPAREN] = ACTIONS(4171), - [anon_sym_GT_LPAREN] = ACTIONS(4171), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4171), - [anon_sym_SEMI] = ACTIONS(4171), - [anon_sym_LF] = ACTIONS(4171), - [anon_sym_AMP] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(4177), + [sym_comment] = ACTIONS(56), }, [1269] = { - [sym_concatenation] = STATE(660), - [sym_string] = STATE(655), - [sym_simple_expansion] = STATE(655), - [sym_string_expansion] = STATE(655), - [sym_expansion] = STATE(655), - [sym_command_substitution] = STATE(655), - [sym_process_substitution] = STATE(655), - [aux_sym_for_statement_repeat1] = STATE(1269), - [anon_sym_RPAREN] = ACTIONS(4173), - [sym__special_characters] = ACTIONS(4175), - [anon_sym_DQUOTE] = ACTIONS(4178), - [anon_sym_DOLLAR] = ACTIONS(4181), - [sym_raw_string] = ACTIONS(4184), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4187), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4190), - [anon_sym_BQUOTE] = ACTIONS(4193), - [anon_sym_LT_LPAREN] = ACTIONS(4196), - [anon_sym_GT_LPAREN] = ACTIONS(4196), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4199), - }, - [1270] = { - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [1271] = { - [aux_sym_concatenation_repeat1] = STATE(1271), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(4202), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [1272] = { - [sym_file_descriptor] = ACTIONS(1923), - [sym__concat] = ACTIONS(1923), - [sym_variable_name] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1925), - [anon_sym_GT_GT] = ACTIONS(1925), - [anon_sym_AMP_GT] = ACTIONS(1925), - [anon_sym_AMP_GT_GT] = ACTIONS(1925), - [anon_sym_LT_AMP] = ACTIONS(1925), - [anon_sym_GT_AMP] = ACTIONS(1925), - [sym__special_characters] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [sym_raw_string] = ACTIONS(1925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), - [anon_sym_BQUOTE] = ACTIONS(1925), - [anon_sym_LT_LPAREN] = ACTIONS(1925), - [anon_sym_GT_LPAREN] = ACTIONS(1925), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - }, - [1273] = { - [sym_concatenation] = STATE(1945), - [sym_string] = STATE(1944), - [sym_simple_expansion] = STATE(1944), - [sym_string_expansion] = STATE(1944), - [sym_expansion] = STATE(1944), - [sym_command_substitution] = STATE(1944), - [sym_process_substitution] = STATE(1944), - [anon_sym_RBRACE] = ACTIONS(4205), - [sym__special_characters] = ACTIONS(4207), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(4209), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4211), - }, - [1274] = { - [sym_file_descriptor] = ACTIONS(1968), - [sym__concat] = ACTIONS(1968), - [sym_variable_name] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_AMP_GT] = ACTIONS(1970), - [anon_sym_AMP_GT_GT] = ACTIONS(1970), - [anon_sym_LT_AMP] = ACTIONS(1970), - [anon_sym_GT_AMP] = ACTIONS(1970), - [sym__special_characters] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [sym_raw_string] = ACTIONS(1970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - }, - [1275] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4213), - }, - [1276] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4215), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1277] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(4217), - [sym_comment] = ACTIONS(56), - }, - [1278] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1951), - [anon_sym_RBRACE] = ACTIONS(4219), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4221), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1279] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1954), - [anon_sym_RBRACE] = ACTIONS(4223), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4225), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1280] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1956), - [anon_sym_RBRACE] = ACTIONS(4205), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4227), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1281] = { - [sym_file_descriptor] = ACTIONS(2022), - [sym__concat] = ACTIONS(2022), - [sym_variable_name] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym_AMP_GT] = ACTIONS(2024), - [anon_sym_AMP_GT_GT] = ACTIONS(2024), - [anon_sym_LT_AMP] = ACTIONS(2024), - [anon_sym_GT_AMP] = ACTIONS(2024), - [sym__special_characters] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_DOLLAR] = ACTIONS(2024), - [sym_raw_string] = ACTIONS(2024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2024), - [anon_sym_LT_LPAREN] = ACTIONS(2024), - [anon_sym_GT_LPAREN] = ACTIONS(2024), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - }, - [1282] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4229), - }, - [1283] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4231), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1284] = { - [sym_file_descriptor] = ACTIONS(2030), - [sym__concat] = ACTIONS(2030), - [sym_variable_name] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2032), - [anon_sym_GT] = ACTIONS(2032), - [anon_sym_GT_GT] = ACTIONS(2032), - [anon_sym_AMP_GT] = ACTIONS(2032), - [anon_sym_AMP_GT_GT] = ACTIONS(2032), - [anon_sym_LT_AMP] = ACTIONS(2032), - [anon_sym_GT_AMP] = ACTIONS(2032), - [sym__special_characters] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2032), - [sym_raw_string] = ACTIONS(2032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), - [anon_sym_BQUOTE] = ACTIONS(2032), - [anon_sym_LT_LPAREN] = ACTIONS(2032), - [anon_sym_GT_LPAREN] = ACTIONS(2032), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), - }, - [1285] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4233), - }, - [1286] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4205), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1287] = { - [sym_file_descriptor] = ACTIONS(2190), - [sym__concat] = ACTIONS(2190), - [sym_variable_name] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_AMP_GT] = ACTIONS(2192), - [anon_sym_AMP_GT_GT] = ACTIONS(2192), - [anon_sym_LT_AMP] = ACTIONS(2192), - [anon_sym_GT_AMP] = ACTIONS(2192), - [sym__special_characters] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [sym_raw_string] = ACTIONS(2192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), - [anon_sym_BQUOTE] = ACTIONS(2192), - [anon_sym_LT_LPAREN] = ACTIONS(2192), - [anon_sym_GT_LPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), - }, - [1288] = { - [sym_file_descriptor] = ACTIONS(2396), - [sym__concat] = ACTIONS(2396), - [sym_variable_name] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_GT] = ACTIONS(2398), - [anon_sym_GT_GT] = ACTIONS(2398), - [anon_sym_AMP_GT] = ACTIONS(2398), - [anon_sym_AMP_GT_GT] = ACTIONS(2398), - [anon_sym_LT_AMP] = ACTIONS(2398), - [anon_sym_GT_AMP] = ACTIONS(2398), - [sym__special_characters] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), - [anon_sym_BQUOTE] = ACTIONS(2398), - [anon_sym_LT_LPAREN] = ACTIONS(2398), - [anon_sym_GT_LPAREN] = ACTIONS(2398), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - }, - [1289] = { - [sym_string] = STATE(1960), - [sym_simple_expansion] = STATE(1960), - [sym_string_expansion] = STATE(1960), - [sym_expansion] = STATE(1960), - [sym_command_substitution] = STATE(1960), - [sym_process_substitution] = STATE(1960), - [sym__special_characters] = ACTIONS(4235), - [anon_sym_DQUOTE] = ACTIONS(1329), - [anon_sym_DOLLAR] = ACTIONS(1331), - [sym_raw_string] = ACTIONS(4237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1337), - [anon_sym_BQUOTE] = ACTIONS(1339), - [anon_sym_LT_LPAREN] = ACTIONS(1341), - [anon_sym_GT_LPAREN] = ACTIONS(1341), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4235), - }, - [1290] = { - [aux_sym_concatenation_repeat1] = STATE(1961), - [sym__concat] = ACTIONS(2625), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [sym__special_characters] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(790), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), - }, - [1291] = { - [sym__concat] = ACTIONS(792), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [sym__special_characters] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(794), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), - }, - [1292] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(4239), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1293] = { - [sym__concat] = ACTIONS(824), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [sym__special_characters] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(826), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), - }, - [1294] = { - [sym__concat] = ACTIONS(828), - [anon_sym_SEMI_SEMI] = ACTIONS(830), - [sym__special_characters] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(830), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), - }, - [1295] = { - [sym__concat] = ACTIONS(832), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [sym__special_characters] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(834), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - }, - [1296] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(4241), - [sym_comment] = ACTIONS(56), - }, - [1297] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1966), - [anon_sym_RBRACE] = ACTIONS(4243), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4245), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1298] = { - [sym_subscript] = STATE(1970), - [sym_variable_name] = ACTIONS(4247), - [anon_sym_DOLLAR] = ACTIONS(4249), - [anon_sym_DASH] = ACTIONS(4249), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4251), - [anon_sym_STAR] = ACTIONS(4249), - [anon_sym_AT] = ACTIONS(4249), - [anon_sym_QMARK] = ACTIONS(4249), - [anon_sym_0] = ACTIONS(4253), - [anon_sym__] = ACTIONS(4253), - }, - [1299] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1973), - [anon_sym_RBRACE] = ACTIONS(4255), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4257), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1300] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(1976), - [anon_sym_RBRACE] = ACTIONS(4259), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4261), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1301] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4263), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [1302] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4263), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(4177), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1270] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4179), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [1271] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4179), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -43100,56 +42416,770 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [1303] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(4263), + [1272] = { + [sym_file_descriptor] = ACTIONS(4181), + [sym_variable_name] = ACTIONS(4181), + [anon_sym_PIPE] = ACTIONS(4183), + [anon_sym_RPAREN] = ACTIONS(4183), + [anon_sym_SEMI_SEMI] = ACTIONS(4183), + [anon_sym_PIPE_AMP] = ACTIONS(4183), + [anon_sym_AMP_AMP] = ACTIONS(4183), + [anon_sym_PIPE_PIPE] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_GT_GT] = ACTIONS(4183), + [anon_sym_AMP_GT] = ACTIONS(4183), + [anon_sym_AMP_GT_GT] = ACTIONS(4183), + [anon_sym_LT_AMP] = ACTIONS(4183), + [anon_sym_GT_AMP] = ACTIONS(4183), + [sym__special_characters] = ACTIONS(4183), + [anon_sym_DQUOTE] = ACTIONS(4183), + [anon_sym_DOLLAR] = ACTIONS(4183), + [sym_raw_string] = ACTIONS(4183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4183), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4183), + [anon_sym_BQUOTE] = ACTIONS(4183), + [anon_sym_LT_LPAREN] = ACTIONS(4183), + [anon_sym_GT_LPAREN] = ACTIONS(4183), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4183), + [anon_sym_LF] = ACTIONS(4183), + [anon_sym_AMP] = ACTIONS(4183), + }, + [1273] = { + [sym_concatenation] = STATE(661), + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [aux_sym_for_statement_repeat1] = STATE(1273), + [anon_sym_RPAREN] = ACTIONS(4185), + [sym__special_characters] = ACTIONS(4187), + [anon_sym_DQUOTE] = ACTIONS(4190), + [anon_sym_DOLLAR] = ACTIONS(4193), + [sym_raw_string] = ACTIONS(4196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4199), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4202), + [anon_sym_BQUOTE] = ACTIONS(4205), + [anon_sym_LT_LPAREN] = ACTIONS(4208), + [anon_sym_GT_LPAREN] = ACTIONS(4208), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4211), + }, + [1274] = { + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [1275] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(4214), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [1276] = { + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [sym_variable_name] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1929), + [anon_sym_AMP_GT] = ACTIONS(1929), + [anon_sym_AMP_GT_GT] = ACTIONS(1929), + [anon_sym_LT_AMP] = ACTIONS(1929), + [anon_sym_GT_AMP] = ACTIONS(1929), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), + [anon_sym_BQUOTE] = ACTIONS(1929), + [anon_sym_LT_LPAREN] = ACTIONS(1929), + [anon_sym_GT_LPAREN] = ACTIONS(1929), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), + }, + [1277] = { + [sym_concatenation] = STATE(1953), + [sym_string] = STATE(1952), + [sym_simple_expansion] = STATE(1952), + [sym_string_expansion] = STATE(1952), + [sym_expansion] = STATE(1952), + [sym_command_substitution] = STATE(1952), + [sym_process_substitution] = STATE(1952), + [anon_sym_RBRACE] = ACTIONS(4217), + [sym__special_characters] = ACTIONS(4219), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(4221), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4223), + }, + [1278] = { + [sym_file_descriptor] = ACTIONS(1972), + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_GT] = ACTIONS(1974), + [anon_sym_GT_GT] = ACTIONS(1974), + [anon_sym_AMP_GT] = ACTIONS(1974), + [anon_sym_AMP_GT_GT] = ACTIONS(1974), + [anon_sym_LT_AMP] = ACTIONS(1974), + [anon_sym_GT_AMP] = ACTIONS(1974), + [sym__special_characters] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1974), + [sym_raw_string] = ACTIONS(1974), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [anon_sym_BQUOTE] = ACTIONS(1974), + [anon_sym_LT_LPAREN] = ACTIONS(1974), + [anon_sym_GT_LPAREN] = ACTIONS(1974), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + }, + [1279] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4225), + }, + [1280] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4227), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1281] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(4229), + [sym_comment] = ACTIONS(56), + }, + [1282] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1959), + [anon_sym_RBRACE] = ACTIONS(4231), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4233), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1283] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1962), + [anon_sym_RBRACE] = ACTIONS(4235), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4237), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1284] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1964), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4239), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1285] = { + [sym_file_descriptor] = ACTIONS(2026), + [sym__concat] = ACTIONS(2026), + [sym_variable_name] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_GT_GT] = ACTIONS(2028), + [anon_sym_AMP_GT] = ACTIONS(2028), + [anon_sym_AMP_GT_GT] = ACTIONS(2028), + [anon_sym_LT_AMP] = ACTIONS(2028), + [anon_sym_GT_AMP] = ACTIONS(2028), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym_raw_string] = ACTIONS(2028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(2028), + [anon_sym_LT_LPAREN] = ACTIONS(2028), + [anon_sym_GT_LPAREN] = ACTIONS(2028), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + }, + [1286] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4241), + }, + [1287] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4243), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1288] = { + [sym_file_descriptor] = ACTIONS(2034), + [sym__concat] = ACTIONS(2034), + [sym_variable_name] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_GT] = ACTIONS(2036), + [anon_sym_GT_GT] = ACTIONS(2036), + [anon_sym_AMP_GT] = ACTIONS(2036), + [anon_sym_AMP_GT_GT] = ACTIONS(2036), + [anon_sym_LT_AMP] = ACTIONS(2036), + [anon_sym_GT_AMP] = ACTIONS(2036), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [anon_sym_LT_LPAREN] = ACTIONS(2036), + [anon_sym_GT_LPAREN] = ACTIONS(2036), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + }, + [1289] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4245), + }, + [1290] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4217), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1291] = { + [sym_file_descriptor] = ACTIONS(2196), + [sym__concat] = ACTIONS(2196), + [sym_variable_name] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_GT] = ACTIONS(2198), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_AMP_GT] = ACTIONS(2198), + [anon_sym_AMP_GT_GT] = ACTIONS(2198), + [anon_sym_LT_AMP] = ACTIONS(2198), + [anon_sym_GT_AMP] = ACTIONS(2198), + [sym__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + }, + [1292] = { + [sym_file_descriptor] = ACTIONS(2402), + [sym__concat] = ACTIONS(2402), + [sym_variable_name] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_AMP_GT] = ACTIONS(2404), + [anon_sym_AMP_GT_GT] = ACTIONS(2404), + [anon_sym_LT_AMP] = ACTIONS(2404), + [anon_sym_GT_AMP] = ACTIONS(2404), + [sym__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(2404), + [sym_raw_string] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2404), + [anon_sym_LT_LPAREN] = ACTIONS(2404), + [anon_sym_GT_LPAREN] = ACTIONS(2404), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + }, + [1293] = { + [sym_string] = STATE(1968), + [sym_simple_expansion] = STATE(1968), + [sym_string_expansion] = STATE(1968), + [sym_expansion] = STATE(1968), + [sym_command_substitution] = STATE(1968), + [sym_process_substitution] = STATE(1968), + [sym__special_characters] = ACTIONS(4247), + [anon_sym_DQUOTE] = ACTIONS(1331), + [anon_sym_DOLLAR] = ACTIONS(1333), + [sym_raw_string] = ACTIONS(4249), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1337), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1339), + [anon_sym_BQUOTE] = ACTIONS(1341), + [anon_sym_LT_LPAREN] = ACTIONS(1343), + [anon_sym_GT_LPAREN] = ACTIONS(1343), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4247), + }, + [1294] = { + [aux_sym_concatenation_repeat1] = STATE(1969), + [sym__concat] = ACTIONS(2631), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), + }, + [1295] = { + [sym__concat] = ACTIONS(794), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [sym__special_characters] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(796), + [sym_raw_string] = ACTIONS(796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(796), + [anon_sym_GT_LPAREN] = ACTIONS(796), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + }, + [1296] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(4251), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1297] = { + [sym__concat] = ACTIONS(826), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(828), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), + }, + [1298] = { + [sym__concat] = ACTIONS(830), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [sym__special_characters] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), + }, + [1299] = { + [sym__concat] = ACTIONS(834), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [sym__special_characters] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [sym_raw_string] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LT_LPAREN] = ACTIONS(836), + [anon_sym_GT_LPAREN] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), + }, + [1300] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(4253), + [sym_comment] = ACTIONS(56), + }, + [1301] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1974), + [anon_sym_RBRACE] = ACTIONS(4255), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4257), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1302] = { + [sym_subscript] = STATE(1978), + [sym_variable_name] = ACTIONS(4259), + [anon_sym_DOLLAR] = ACTIONS(4261), + [anon_sym_DASH] = ACTIONS(4261), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4263), + [anon_sym_STAR] = ACTIONS(4261), + [anon_sym_AT] = ACTIONS(4261), + [anon_sym_QMARK] = ACTIONS(4261), + [anon_sym_0] = ACTIONS(4265), + [anon_sym__] = ACTIONS(4265), + }, + [1303] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1981), + [anon_sym_RBRACE] = ACTIONS(4267), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4269), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1304] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(4263), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(1984), + [anon_sym_RBRACE] = ACTIONS(4271), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4273), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1305] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4265), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4275), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, [1306] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4265), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4275), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -43170,113 +43200,133 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(384), }, [1307] = { - [sym_do_group] = STATE(1980), - [anon_sym_do] = ACTIONS(4267), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(4275), [sym_comment] = ACTIONS(56), }, [1308] = { - [sym_concatenation] = STATE(688), - [sym_string] = STATE(683), - [sym_simple_expansion] = STATE(683), - [sym_string_expansion] = STATE(683), - [sym_expansion] = STATE(683), - [sym_command_substitution] = STATE(683), - [sym_process_substitution] = STATE(683), - [aux_sym_for_statement_repeat1] = STATE(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(4269), - [sym__special_characters] = ACTIONS(4271), - [anon_sym_DQUOTE] = ACTIONS(4274), - [anon_sym_DOLLAR] = ACTIONS(4277), - [sym_raw_string] = ACTIONS(4280), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4286), - [anon_sym_BQUOTE] = ACTIONS(4289), - [anon_sym_LT_LPAREN] = ACTIONS(4292), - [anon_sym_GT_LPAREN] = ACTIONS(4292), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4280), - [anon_sym_SEMI] = ACTIONS(4269), - [anon_sym_LF] = ACTIONS(4269), - [anon_sym_AMP] = ACTIONS(4269), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(4275), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [1309] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_done] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(1102), - [sym_raw_string] = ACTIONS(1100), - [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), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4277), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1104), }, [1310] = { - [sym_file_descriptor] = ACTIONS(4295), - [anon_sym_esac] = ACTIONS(4297), - [anon_sym_PIPE] = ACTIONS(4297), - [anon_sym_RPAREN] = ACTIONS(4297), - [anon_sym_SEMI_SEMI] = ACTIONS(4297), - [anon_sym_PIPE_AMP] = ACTIONS(4297), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(4297), - [anon_sym_LT] = ACTIONS(4297), - [anon_sym_GT] = ACTIONS(4297), - [anon_sym_GT_GT] = ACTIONS(4297), - [anon_sym_AMP_GT] = ACTIONS(4297), - [anon_sym_AMP_GT_GT] = ACTIONS(4297), - [anon_sym_LT_AMP] = ACTIONS(4297), - [anon_sym_GT_AMP] = ACTIONS(4297), - [anon_sym_LT_LT] = ACTIONS(4297), - [anon_sym_LT_LT_DASH] = ACTIONS(4297), - [anon_sym_LT_LT_LT] = ACTIONS(4297), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_LF] = ACTIONS(4297), - [anon_sym_AMP] = ACTIONS(4297), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4277), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [1311] = { - [sym__terminated_statement] = STATE(691), - [sym_for_statement] = STATE(692), - [sym_while_statement] = STATE(692), - [sym_if_statement] = STATE(692), - [sym_case_statement] = STATE(692), - [sym_function_definition] = STATE(692), - [sym_subshell] = STATE(692), - [sym_pipeline] = STATE(692), - [sym_list] = STATE(692), - [sym_command] = STATE(692), + [sym_do_group] = STATE(1987), + [anon_sym_do] = ACTIONS(1347), + [sym_comment] = ACTIONS(56), + }, + [1312] = { + [sym_concatenation] = STATE(689), + [sym_string] = STATE(684), + [sym_simple_expansion] = STATE(684), + [sym_string_expansion] = STATE(684), + [sym_expansion] = STATE(684), + [sym_command_substitution] = STATE(684), + [sym_process_substitution] = STATE(684), + [aux_sym_for_statement_repeat1] = STATE(1312), + [anon_sym_SEMI_SEMI] = ACTIONS(4279), + [sym__special_characters] = ACTIONS(4281), + [anon_sym_DQUOTE] = ACTIONS(4284), + [anon_sym_DOLLAR] = ACTIONS(4287), + [sym_raw_string] = ACTIONS(4290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4296), + [anon_sym_BQUOTE] = ACTIONS(4299), + [anon_sym_LT_LPAREN] = ACTIONS(4302), + [anon_sym_GT_LPAREN] = ACTIONS(4302), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4290), + [anon_sym_SEMI] = ACTIONS(4279), + [anon_sym_LF] = ACTIONS(4279), + [anon_sym_AMP] = ACTIONS(4279), + }, + [1313] = { + [anon_sym_esac] = ACTIONS(2681), + [anon_sym_PIPE] = ACTIONS(2681), + [anon_sym_RPAREN] = ACTIONS(2681), + [anon_sym_SEMI_SEMI] = ACTIONS(2681), + [anon_sym_PIPE_AMP] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_PIPE_PIPE] = ACTIONS(2681), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym_LF] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2681), + }, + [1314] = { + [sym__terminated_statement] = STATE(694), + [sym_for_statement] = STATE(695), + [sym_while_statement] = STATE(695), + [sym_if_statement] = STATE(695), + [sym_case_statement] = STATE(695), + [sym_function_definition] = STATE(695), + [sym_subshell] = STATE(695), + [sym_pipeline] = STATE(695), + [sym_list] = STATE(695), + [sym_command] = STATE(695), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(692), - [sym_variable_assignment] = STATE(693), - [sym_declaration_command] = STATE(692), - [sym_unset_command] = STATE(692), + [sym_bracket_command] = STATE(695), + [sym_variable_assignment] = STATE(696), + [sym_declaration_command] = STATE(695), + [sym_unset_command] = STATE(695), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -43286,50 +43336,176 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1311), + [aux_sym_program_repeat1] = STATE(1317), [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1150), - [sym_variable_name] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_done] = ACTIONS(4299), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_case] = ACTIONS(1167), - [anon_sym_function] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_typeset] = ACTIONS(1182), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_local] = ACTIONS(1182), - [anon_sym_unset] = ACTIONS(1185), - [anon_sym_unsetenv] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1191), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1191), - [anon_sym_LT_AMP] = ACTIONS(1191), - [anon_sym_GT_AMP] = ACTIONS(1191), - [sym__special_characters] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_raw_string] = ACTIONS(1203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), - [anon_sym_BQUOTE] = ACTIONS(1212), - [anon_sym_LT_LPAREN] = ACTIONS(1215), - [anon_sym_GT_LPAREN] = ACTIONS(1215), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(4305), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1218), + [sym_word] = ACTIONS(58), }, - [1312] = { - [anon_sym_then] = ACTIONS(4301), + [1315] = { + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_done] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1104), + [sym_raw_string] = ACTIONS(1102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), + [anon_sym_BQUOTE] = ACTIONS(1102), + [anon_sym_LT_LPAREN] = ACTIONS(1102), + [anon_sym_GT_LPAREN] = ACTIONS(1102), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1106), + }, + [1316] = { + [sym_file_descriptor] = ACTIONS(4307), + [anon_sym_esac] = ACTIONS(4309), + [anon_sym_PIPE] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_SEMI_SEMI] = ACTIONS(4309), + [anon_sym_PIPE_AMP] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [anon_sym_LT] = ACTIONS(4309), + [anon_sym_GT] = ACTIONS(4309), + [anon_sym_GT_GT] = ACTIONS(4309), + [anon_sym_AMP_GT] = ACTIONS(4309), + [anon_sym_AMP_GT_GT] = ACTIONS(4309), + [anon_sym_LT_AMP] = ACTIONS(4309), + [anon_sym_GT_AMP] = ACTIONS(4309), + [anon_sym_LT_LT] = ACTIONS(4309), + [anon_sym_LT_LT_DASH] = ACTIONS(4309), + [anon_sym_LT_LT_LT] = ACTIONS(4309), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_LF] = ACTIONS(4309), + [anon_sym_AMP] = ACTIONS(4309), + }, + [1317] = { + [sym__terminated_statement] = STATE(694), + [sym_for_statement] = STATE(695), + [sym_while_statement] = STATE(695), + [sym_if_statement] = STATE(695), + [sym_case_statement] = STATE(695), + [sym_function_definition] = STATE(695), + [sym_subshell] = STATE(695), + [sym_pipeline] = STATE(695), + [sym_list] = STATE(695), + [sym_command] = STATE(695), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(695), + [sym_variable_assignment] = STATE(696), + [sym_declaration_command] = STATE(695), + [sym_unset_command] = STATE(695), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1317), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_done] = ACTIONS(4311), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_function] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1184), + [anon_sym_typeset] = ACTIONS(1184), + [anon_sym_export] = ACTIONS(1184), + [anon_sym_readonly] = ACTIONS(1184), + [anon_sym_local] = ACTIONS(1184), + [anon_sym_unset] = ACTIONS(1187), + [anon_sym_unsetenv] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_AMP_GT] = ACTIONS(1190), + [anon_sym_AMP_GT_GT] = ACTIONS(1193), + [anon_sym_LT_AMP] = ACTIONS(1193), + [anon_sym_GT_AMP] = ACTIONS(1193), + [sym__special_characters] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(1202), + [sym_raw_string] = ACTIONS(1205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(1214), + [anon_sym_LT_LPAREN] = ACTIONS(1217), + [anon_sym_GT_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1220), + }, + [1318] = { + [anon_sym_then] = ACTIONS(4313), [sym_comment] = ACTIONS(56), }, - [1313] = { + [1319] = { [sym_file_descriptor] = ACTIONS(340), [sym_variable_name] = ACTIONS(340), [anon_sym_for] = ACTIONS(342), @@ -43367,22 +43543,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(344), }, - [1314] = { + [1320] = { [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(4303), + [anon_sym_SEMI_SEMI] = ACTIONS(4315), [anon_sym_PIPE_AMP] = ACTIONS(346), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_LF] = ACTIONS(4303), - [anon_sym_AMP] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym_LF] = ACTIONS(4315), + [anon_sym_AMP] = ACTIONS(4315), }, - [1315] = { + [1321] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(4303), + [anon_sym_SEMI_SEMI] = ACTIONS(4315), [anon_sym_PIPE_AMP] = ACTIONS(346), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), @@ -43404,26 +43580,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(4303), - [anon_sym_LF] = ACTIONS(4303), - [anon_sym_AMP] = ACTIONS(4303), + [anon_sym_SEMI] = ACTIONS(4315), + [anon_sym_LF] = ACTIONS(4315), + [anon_sym_AMP] = ACTIONS(4315), }, - [1316] = { - [sym__terminated_statement] = STATE(1313), - [sym_for_statement] = STATE(1314), - [sym_while_statement] = STATE(1314), - [sym_if_statement] = STATE(1314), - [sym_case_statement] = STATE(1314), - [sym_function_definition] = STATE(1314), - [sym_subshell] = STATE(1314), - [sym_pipeline] = STATE(1314), - [sym_list] = STATE(1314), - [sym_command] = STATE(1314), + [1322] = { + [sym__terminated_statement] = STATE(1319), + [sym_for_statement] = STATE(1320), + [sym_while_statement] = STATE(1320), + [sym_if_statement] = STATE(1320), + [sym_case_statement] = STATE(1320), + [sym_function_definition] = STATE(1320), + [sym_subshell] = STATE(1320), + [sym_pipeline] = STATE(1320), + [sym_list] = STATE(1320), + [sym_command] = STATE(1320), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(1314), - [sym_variable_assignment] = STATE(1315), - [sym_declaration_command] = STATE(1314), - [sym_unset_command] = STATE(1314), + [sym_bracket_command] = STATE(1320), + [sym_variable_assignment] = STATE(1321), + [sym_declaration_command] = STATE(1320), + [sym_unset_command] = STATE(1320), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -43433,14 +43609,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1983), + [aux_sym_program_repeat1] = STATE(1991), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(4305), + [anon_sym_fi] = ACTIONS(4317), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -43472,79 +43648,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [1317] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_fi] = ACTIONS(1102), - [anon_sym_elif] = ACTIONS(1102), - [anon_sym_else] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(1102), - [sym_raw_string] = ACTIONS(1100), - [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), + [1323] = { + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_fi] = ACTIONS(1104), + [anon_sym_elif] = ACTIONS(1104), + [anon_sym_else] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1104), + [sym_raw_string] = ACTIONS(1102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), + [anon_sym_BQUOTE] = ACTIONS(1102), + [anon_sym_LT_LPAREN] = ACTIONS(1102), + [anon_sym_GT_LPAREN] = ACTIONS(1102), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1104), + [sym_word] = ACTIONS(1106), }, - [1318] = { - [anon_sym_esac] = ACTIONS(4307), - [anon_sym_PIPE] = ACTIONS(4307), - [anon_sym_RPAREN] = ACTIONS(4307), - [anon_sym_SEMI_SEMI] = ACTIONS(4307), - [anon_sym_PIPE_AMP] = ACTIONS(4307), - [anon_sym_AMP_AMP] = ACTIONS(4307), - [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [1324] = { + [anon_sym_esac] = ACTIONS(4319), + [anon_sym_PIPE] = ACTIONS(4319), + [anon_sym_RPAREN] = ACTIONS(4319), + [anon_sym_SEMI_SEMI] = ACTIONS(4319), + [anon_sym_PIPE_AMP] = ACTIONS(4319), + [anon_sym_AMP_AMP] = ACTIONS(4319), + [anon_sym_PIPE_PIPE] = ACTIONS(4319), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4307), - [anon_sym_LF] = ACTIONS(4307), - [anon_sym_AMP] = ACTIONS(4307), + [anon_sym_SEMI] = ACTIONS(4319), + [anon_sym_LF] = ACTIONS(4319), + [anon_sym_AMP] = ACTIONS(4319), }, - [1319] = { - [anon_sym_fi] = ACTIONS(4309), + [1325] = { + [anon_sym_fi] = ACTIONS(4321), [sym_comment] = ACTIONS(56), }, - [1320] = { - [sym__terminated_statement] = STATE(699), - [sym_for_statement] = STATE(700), - [sym_while_statement] = STATE(700), - [sym_if_statement] = STATE(700), - [sym_case_statement] = STATE(700), - [sym_function_definition] = STATE(700), - [sym_subshell] = STATE(700), - [sym_pipeline] = STATE(700), - [sym_list] = STATE(700), - [sym_command] = STATE(700), + [1326] = { + [sym__terminated_statement] = STATE(702), + [sym_for_statement] = STATE(703), + [sym_while_statement] = STATE(703), + [sym_if_statement] = STATE(703), + [sym_case_statement] = STATE(703), + [sym_function_definition] = STATE(703), + [sym_subshell] = STATE(703), + [sym_pipeline] = STATE(703), + [sym_list] = STATE(703), + [sym_command] = STATE(703), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(700), - [sym_variable_assignment] = STATE(703), - [sym_declaration_command] = STATE(700), - [sym_unset_command] = STATE(700), + [sym_bracket_command] = STATE(703), + [sym_variable_assignment] = STATE(706), + [sym_declaration_command] = STATE(703), + [sym_unset_command] = STATE(703), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -43554,91 +43730,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1320), + [aux_sym_program_repeat1] = STATE(1326), [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1150), - [sym_variable_name] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_fi] = ACTIONS(4299), - [anon_sym_elif] = ACTIONS(4299), - [anon_sym_else] = ACTIONS(4299), - [anon_sym_case] = ACTIONS(1167), - [anon_sym_function] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_typeset] = ACTIONS(1182), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_local] = ACTIONS(1182), - [anon_sym_unset] = ACTIONS(1185), - [anon_sym_unsetenv] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1191), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1191), - [anon_sym_LT_AMP] = ACTIONS(1191), - [anon_sym_GT_AMP] = ACTIONS(1191), - [sym__special_characters] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_raw_string] = ACTIONS(1203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), - [anon_sym_BQUOTE] = ACTIONS(1212), - [anon_sym_LT_LPAREN] = ACTIONS(1215), - [anon_sym_GT_LPAREN] = ACTIONS(1215), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1218), - }, - [1321] = { - [sym_elif_clause] = STATE(701), - [sym_else_clause] = STATE(1985), - [aux_sym_if_statement_repeat1] = STATE(1322), - [anon_sym_fi] = ACTIONS(4309), - [anon_sym_elif] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2693), - [sym_comment] = ACTIONS(56), - }, - [1322] = { - [sym_elif_clause] = STATE(701), - [aux_sym_if_statement_repeat1] = STATE(1322), + [sym_file_descriptor] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1166), [anon_sym_fi] = ACTIONS(4311), - [anon_sym_elif] = ACTIONS(4313), + [anon_sym_elif] = ACTIONS(4311), [anon_sym_else] = ACTIONS(4311), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_function] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1184), + [anon_sym_typeset] = ACTIONS(1184), + [anon_sym_export] = ACTIONS(1184), + [anon_sym_readonly] = ACTIONS(1184), + [anon_sym_local] = ACTIONS(1184), + [anon_sym_unset] = ACTIONS(1187), + [anon_sym_unsetenv] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_AMP_GT] = ACTIONS(1190), + [anon_sym_AMP_GT_GT] = ACTIONS(1193), + [anon_sym_LT_AMP] = ACTIONS(1193), + [anon_sym_GT_AMP] = ACTIONS(1193), + [sym__special_characters] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(1202), + [sym_raw_string] = ACTIONS(1205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(1214), + [anon_sym_LT_LPAREN] = ACTIONS(1217), + [anon_sym_GT_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1220), + }, + [1327] = { + [sym_elif_clause] = STATE(704), + [sym_else_clause] = STATE(1993), + [aux_sym_if_statement_repeat1] = STATE(1328), + [anon_sym_fi] = ACTIONS(4321), + [anon_sym_elif] = ACTIONS(2701), + [anon_sym_else] = ACTIONS(2703), [sym_comment] = ACTIONS(56), }, - [1323] = { - [anon_sym_esac] = ACTIONS(4316), - [anon_sym_PIPE] = ACTIONS(4316), - [anon_sym_RPAREN] = ACTIONS(4316), - [anon_sym_SEMI_SEMI] = ACTIONS(4316), - [anon_sym_PIPE_AMP] = ACTIONS(4316), - [anon_sym_AMP_AMP] = ACTIONS(4316), - [anon_sym_PIPE_PIPE] = ACTIONS(4316), + [1328] = { + [sym_elif_clause] = STATE(704), + [aux_sym_if_statement_repeat1] = STATE(1328), + [anon_sym_fi] = ACTIONS(4323), + [anon_sym_elif] = ACTIONS(4325), + [anon_sym_else] = ACTIONS(4323), + [sym_comment] = ACTIONS(56), + }, + [1329] = { + [anon_sym_esac] = ACTIONS(4328), + [anon_sym_PIPE] = ACTIONS(4328), + [anon_sym_RPAREN] = ACTIONS(4328), + [anon_sym_SEMI_SEMI] = ACTIONS(4328), + [anon_sym_PIPE_AMP] = ACTIONS(4328), + [anon_sym_AMP_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4328), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4316), - [anon_sym_LF] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), + [anon_sym_SEMI] = ACTIONS(4328), + [anon_sym_LF] = ACTIONS(4328), + [anon_sym_AMP] = ACTIONS(4328), }, - [1324] = { - [aux_sym_case_item_repeat1] = STATE(1989), - [aux_sym_concatenation_repeat1] = STATE(1990), - [sym__concat] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4320), - [anon_sym_RPAREN] = ACTIONS(4322), + [1330] = { + [aux_sym_case_item_repeat1] = STATE(1997), + [aux_sym_concatenation_repeat1] = STATE(1998), + [sym__concat] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(4332), + [anon_sym_RPAREN] = ACTIONS(4334), [sym_comment] = ACTIONS(56), }, - [1325] = { + [1331] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(1992), - [anon_sym_DQUOTE] = ACTIONS(4324), + [aux_sym_string_repeat1] = STATE(2000), + [anon_sym_DQUOTE] = ACTIONS(4336), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -43646,34 +43822,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [1326] = { - [sym_string] = STATE(1994), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(4326), - [sym_raw_string] = ACTIONS(4328), - [anon_sym_POUND] = ACTIONS(4326), - [anon_sym_DASH] = ACTIONS(4326), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4330), - [anon_sym_STAR] = ACTIONS(4326), - [anon_sym_AT] = ACTIONS(4326), - [anon_sym_QMARK] = ACTIONS(4326), - [anon_sym_0] = ACTIONS(4332), - [anon_sym__] = ACTIONS(4332), - }, - [1327] = { - [aux_sym_case_item_repeat1] = STATE(1997), - [aux_sym_concatenation_repeat1] = STATE(1990), - [sym__concat] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4320), - [anon_sym_RPAREN] = ACTIONS(4334), - [sym_comment] = ACTIONS(56), - }, - [1328] = { - [sym_subscript] = STATE(2002), - [sym_variable_name] = ACTIONS(4336), + [1332] = { + [sym_string] = STATE(2002), + [anon_sym_DQUOTE] = ACTIONS(2709), [anon_sym_DOLLAR] = ACTIONS(4338), - [anon_sym_POUND] = ACTIONS(4340), + [sym_raw_string] = ACTIONS(4340), + [anon_sym_POUND] = ACTIONS(4338), [anon_sym_DASH] = ACTIONS(4338), [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4342), @@ -43683,21 +43837,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(4344), [anon_sym__] = ACTIONS(4344), }, - [1329] = { - [sym_for_statement] = STATE(2003), - [sym_while_statement] = STATE(2003), - [sym_if_statement] = STATE(2003), - [sym_case_statement] = STATE(2003), - [sym_function_definition] = STATE(2003), - [sym_subshell] = STATE(2003), - [sym_pipeline] = STATE(2003), - [sym_list] = STATE(2003), - [sym_command] = STATE(2003), + [1333] = { + [aux_sym_case_item_repeat1] = STATE(2005), + [aux_sym_concatenation_repeat1] = STATE(1998), + [sym__concat] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(4332), + [anon_sym_RPAREN] = ACTIONS(4346), + [sym_comment] = ACTIONS(56), + }, + [1334] = { + [sym_subscript] = STATE(2010), + [sym_variable_name] = ACTIONS(4348), + [anon_sym_DOLLAR] = ACTIONS(4350), + [anon_sym_POUND] = ACTIONS(4352), + [anon_sym_DASH] = ACTIONS(4350), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4354), + [anon_sym_STAR] = ACTIONS(4350), + [anon_sym_AT] = ACTIONS(4350), + [anon_sym_QMARK] = ACTIONS(4350), + [anon_sym_0] = ACTIONS(4356), + [anon_sym__] = ACTIONS(4356), + }, + [1335] = { + [sym_for_statement] = STATE(2011), + [sym_while_statement] = STATE(2011), + [sym_if_statement] = STATE(2011), + [sym_case_statement] = STATE(2011), + [sym_function_definition] = STATE(2011), + [sym_subshell] = STATE(2011), + [sym_pipeline] = STATE(2011), + [sym_list] = STATE(2011), + [sym_command] = STATE(2011), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(2003), - [sym_variable_assignment] = STATE(2004), - [sym_declaration_command] = STATE(2003), - [sym_unset_command] = STATE(2003), + [sym_bracket_command] = STATE(2011), + [sym_variable_assignment] = STATE(2012), + [sym_declaration_command] = STATE(2011), + [sym_unset_command] = STATE(2011), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -43744,21 +43920,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [1330] = { - [sym_for_statement] = STATE(2005), - [sym_while_statement] = STATE(2005), - [sym_if_statement] = STATE(2005), - [sym_case_statement] = STATE(2005), - [sym_function_definition] = STATE(2005), - [sym_subshell] = STATE(2005), - [sym_pipeline] = STATE(2005), - [sym_list] = STATE(2005), - [sym_command] = STATE(2005), + [1336] = { + [sym_for_statement] = STATE(2013), + [sym_while_statement] = STATE(2013), + [sym_if_statement] = STATE(2013), + [sym_case_statement] = STATE(2013), + [sym_function_definition] = STATE(2013), + [sym_subshell] = STATE(2013), + [sym_pipeline] = STATE(2013), + [sym_list] = STATE(2013), + [sym_command] = STATE(2013), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(2005), - [sym_variable_assignment] = STATE(2006), - [sym_declaration_command] = STATE(2005), - [sym_unset_command] = STATE(2005), + [sym_bracket_command] = STATE(2013), + [sym_variable_assignment] = STATE(2014), + [sym_declaration_command] = STATE(2013), + [sym_unset_command] = STATE(2013), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -43805,21 +43981,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [1331] = { - [sym_for_statement] = STATE(2007), - [sym_while_statement] = STATE(2007), - [sym_if_statement] = STATE(2007), - [sym_case_statement] = STATE(2007), - [sym_function_definition] = STATE(2007), - [sym_subshell] = STATE(2007), - [sym_pipeline] = STATE(2007), - [sym_list] = STATE(2007), - [sym_command] = STATE(2007), + [1337] = { + [sym_for_statement] = STATE(2015), + [sym_while_statement] = STATE(2015), + [sym_if_statement] = STATE(2015), + [sym_case_statement] = STATE(2015), + [sym_function_definition] = STATE(2015), + [sym_subshell] = STATE(2015), + [sym_pipeline] = STATE(2015), + [sym_list] = STATE(2015), + [sym_command] = STATE(2015), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(2007), - [sym_variable_assignment] = STATE(2008), - [sym_declaration_command] = STATE(2007), - [sym_unset_command] = STATE(2007), + [sym_bracket_command] = STATE(2015), + [sym_variable_assignment] = STATE(2016), + [sym_declaration_command] = STATE(2015), + [sym_unset_command] = STATE(2015), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -43866,503 +44042,503 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [1332] = { - [sym__special_characters] = ACTIONS(4346), - [anon_sym_DQUOTE] = ACTIONS(4348), - [anon_sym_DOLLAR] = ACTIONS(4346), - [sym_raw_string] = ACTIONS(4348), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4348), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4348), - [anon_sym_BQUOTE] = ACTIONS(4348), - [anon_sym_LT_LPAREN] = ACTIONS(4348), - [anon_sym_GT_LPAREN] = ACTIONS(4348), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4346), - }, - [1333] = { - [anon_sym_esac] = ACTIONS(4350), - [sym_comment] = ACTIONS(56), - }, - [1334] = { - [aux_sym_case_item_repeat1] = STATE(1997), - [anon_sym_PIPE] = ACTIONS(4320), - [anon_sym_RPAREN] = ACTIONS(4334), - [sym_comment] = ACTIONS(56), - }, - [1335] = { - [sym_case_item] = STATE(1332), - [sym_last_case_item] = STATE(2010), - [sym_concatenation] = STATE(1334), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_string_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [aux_sym_case_statement_repeat1] = STATE(2011), - [sym__special_characters] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4352), - }, - [1336] = { - [sym_case_item] = STATE(1332), - [sym_last_case_item] = STATE(2010), - [sym_concatenation] = STATE(1334), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_string_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [aux_sym_case_statement_repeat1] = STATE(2013), - [anon_sym_esac] = ACTIONS(4354), - [sym__special_characters] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2713), - }, - [1337] = { - [anon_sym_esac] = ACTIONS(4356), - [anon_sym_PIPE] = ACTIONS(4356), - [anon_sym_RPAREN] = ACTIONS(4356), - [anon_sym_SEMI_SEMI] = ACTIONS(4356), - [anon_sym_PIPE_AMP] = ACTIONS(4356), - [anon_sym_AMP_AMP] = ACTIONS(4356), - [anon_sym_PIPE_PIPE] = ACTIONS(4356), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4356), - [anon_sym_LF] = ACTIONS(4356), - [anon_sym_AMP] = ACTIONS(4356), - }, [1338] = { - [anon_sym_esac] = ACTIONS(4358), + [sym__special_characters] = ACTIONS(4358), + [anon_sym_DQUOTE] = ACTIONS(4360), + [anon_sym_DOLLAR] = ACTIONS(4358), + [sym_raw_string] = ACTIONS(4360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4360), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4360), + [anon_sym_BQUOTE] = ACTIONS(4360), + [anon_sym_LT_LPAREN] = ACTIONS(4360), + [anon_sym_GT_LPAREN] = ACTIONS(4360), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4358), }, [1339] = { - [sym_case_item] = STATE(1332), - [sym_last_case_item] = STATE(2015), - [sym_concatenation] = STATE(1334), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_string_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [aux_sym_case_statement_repeat1] = STATE(2011), - [sym__special_characters] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), + [anon_sym_esac] = ACTIONS(4362), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4352), }, [1340] = { - [sym_case_item] = STATE(1332), - [sym_last_case_item] = STATE(2015), - [sym_concatenation] = STATE(1334), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_string_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [aux_sym_case_statement_repeat1] = STATE(2017), - [anon_sym_esac] = ACTIONS(4360), - [sym__special_characters] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), + [aux_sym_case_item_repeat1] = STATE(2005), + [anon_sym_PIPE] = ACTIONS(4332), + [anon_sym_RPAREN] = ACTIONS(4346), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2713), }, [1341] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_in] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), + [sym_case_item] = STATE(1338), + [sym_last_case_item] = STATE(2018), + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(1333), + [sym_simple_expansion] = STATE(1333), + [sym_string_expansion] = STATE(1333), + [sym_expansion] = STATE(1333), + [sym_command_substitution] = STATE(1333), + [sym_process_substitution] = STATE(1333), + [aux_sym_case_statement_repeat1] = STATE(2019), + [sym__special_characters] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(2713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4364), }, [1342] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4362), + [sym_case_item] = STATE(1338), + [sym_last_case_item] = STATE(2018), + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(1333), + [sym_simple_expansion] = STATE(1333), + [sym_string_expansion] = STATE(1333), + [sym_expansion] = STATE(1333), + [sym_command_substitution] = STATE(1333), + [sym_process_substitution] = STATE(1333), + [aux_sym_case_statement_repeat1] = STATE(2021), + [anon_sym_esac] = ACTIONS(4366), + [sym__special_characters] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(2713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2723), }, [1343] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4364), - [sym_comment] = ACTIONS(56), + [anon_sym_esac] = ACTIONS(4368), + [anon_sym_PIPE] = ACTIONS(4368), + [anon_sym_RPAREN] = ACTIONS(4368), + [anon_sym_SEMI_SEMI] = ACTIONS(4368), + [anon_sym_PIPE_AMP] = ACTIONS(4368), + [anon_sym_AMP_AMP] = ACTIONS(4368), + [anon_sym_PIPE_PIPE] = ACTIONS(4368), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4368), + [anon_sym_LF] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), }, [1344] = { - [anon_sym_RBRACE] = ACTIONS(4364), + [anon_sym_esac] = ACTIONS(4370), [sym_comment] = ACTIONS(56), }, [1345] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2021), - [anon_sym_RBRACE] = ACTIONS(4366), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_case_item] = STATE(1338), + [sym_last_case_item] = STATE(2023), + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(1333), + [sym_simple_expansion] = STATE(1333), + [sym_string_expansion] = STATE(1333), + [sym_expansion] = STATE(1333), + [sym_command_substitution] = STATE(1333), + [sym_process_substitution] = STATE(1333), + [aux_sym_case_statement_repeat1] = STATE(2019), + [sym__special_characters] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(2713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4364), }, [1346] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_in] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), + [sym_case_item] = STATE(1338), + [sym_last_case_item] = STATE(2023), + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(1333), + [sym_simple_expansion] = STATE(1333), + [sym_string_expansion] = STATE(1333), + [sym_expansion] = STATE(1333), + [sym_command_substitution] = STATE(1333), + [sym_process_substitution] = STATE(1333), + [aux_sym_case_statement_repeat1] = STATE(2025), + [anon_sym_esac] = ACTIONS(4372), + [sym__special_characters] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(2713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2723), }, [1347] = { - [sym_concatenation] = STATE(2024), - [sym_string] = STATE(2023), - [sym_simple_expansion] = STATE(2023), - [sym_string_expansion] = STATE(2023), - [sym_expansion] = STATE(2023), - [sym_command_substitution] = STATE(2023), - [sym_process_substitution] = STATE(2023), - [anon_sym_RBRACE] = ACTIONS(4364), - [sym__special_characters] = ACTIONS(4368), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(4370), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4372), + [sym__concat] = ACTIONS(3293), + [anon_sym_in] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), }, [1348] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_in] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4374), + [sym_comment] = ACTIONS(56), }, [1349] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4374), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4376), + [sym_comment] = ACTIONS(56), }, [1350] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), [anon_sym_RBRACE] = ACTIONS(4376), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_comment] = ACTIONS(56), }, [1351] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_in] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2029), + [anon_sym_RBRACE] = ACTIONS(4378), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), + [sym_word] = ACTIONS(866), }, [1352] = { + [sym__concat] = ACTIONS(3357), + [anon_sym_in] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4378), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), }, [1353] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4380), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(2032), + [sym_string] = STATE(2031), + [sym_simple_expansion] = STATE(2031), + [sym_string_expansion] = STATE(2031), + [sym_expansion] = STATE(2031), + [sym_command_substitution] = STATE(2031), + [sym_process_substitution] = STATE(2031), + [anon_sym_RBRACE] = ACTIONS(4376), + [sym__special_characters] = ACTIONS(4380), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(4382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4384), }, [1354] = { + [sym__concat] = ACTIONS(3402), + [anon_sym_in] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4382), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), }, [1355] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4364), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(4386), }, [1356] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2031), - [anon_sym_RBRACE] = ACTIONS(4384), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4388), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [1357] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_in] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), + [sym__concat] = ACTIONS(3410), + [anon_sym_in] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), }, [1358] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2033), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(4390), }, [1359] = { - [sym_file_redirect] = STATE(2034), - [sym_file_descriptor] = ACTIONS(1399), - [anon_sym_PIPE] = ACTIONS(4388), - [anon_sym_SEMI_SEMI] = ACTIONS(4388), - [anon_sym_PIPE_AMP] = ACTIONS(4388), - [anon_sym_AMP_AMP] = ACTIONS(4388), - [anon_sym_PIPE_PIPE] = ACTIONS(4388), - [anon_sym_LT] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1403), - [anon_sym_GT_GT] = ACTIONS(1403), - [anon_sym_AMP_GT] = ACTIONS(1403), - [anon_sym_AMP_GT_GT] = ACTIONS(1403), - [anon_sym_LT_AMP] = ACTIONS(1403), - [anon_sym_GT_AMP] = ACTIONS(1403), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4392), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4388), - [anon_sym_LF] = ACTIONS(4388), - [anon_sym_AMP] = ACTIONS(4388), + [sym_word] = ACTIONS(866), }, [1360] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_RBRACE] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(1102), - [sym_raw_string] = ACTIONS(1100), - [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_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1104), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4394), }, [1361] = { - [sym_file_descriptor] = ACTIONS(4390), - [anon_sym_esac] = ACTIONS(4392), - [anon_sym_PIPE] = ACTIONS(4392), - [anon_sym_RPAREN] = ACTIONS(4392), - [anon_sym_SEMI_SEMI] = ACTIONS(4392), - [anon_sym_PIPE_AMP] = ACTIONS(4392), - [anon_sym_AMP_AMP] = ACTIONS(4392), - [anon_sym_PIPE_PIPE] = ACTIONS(4392), - [anon_sym_LT] = ACTIONS(4392), - [anon_sym_GT] = ACTIONS(4392), - [anon_sym_GT_GT] = ACTIONS(4392), - [anon_sym_AMP_GT] = ACTIONS(4392), - [anon_sym_AMP_GT_GT] = ACTIONS(4392), - [anon_sym_LT_AMP] = ACTIONS(4392), - [anon_sym_GT_AMP] = ACTIONS(4392), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4376), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4392), - [anon_sym_LF] = ACTIONS(4392), - [anon_sym_AMP] = ACTIONS(4392), + [sym_word] = ACTIONS(866), }, [1362] = { - [sym__terminated_statement] = STATE(731), - [sym_for_statement] = STATE(732), - [sym_while_statement] = STATE(732), - [sym_if_statement] = STATE(732), - [sym_case_statement] = STATE(732), - [sym_function_definition] = STATE(732), - [sym_subshell] = STATE(732), - [sym_pipeline] = STATE(732), - [sym_list] = STATE(732), - [sym_command] = STATE(732), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2039), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1363] = { + [sym__concat] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), + }, + [1364] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2041), + [anon_sym_RBRACE] = ACTIONS(4398), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1365] = { + [sym_file_redirect] = STATE(2042), + [sym_file_descriptor] = ACTIONS(1403), + [anon_sym_PIPE] = ACTIONS(4400), + [anon_sym_SEMI_SEMI] = ACTIONS(4400), + [anon_sym_PIPE_AMP] = ACTIONS(4400), + [anon_sym_AMP_AMP] = ACTIONS(4400), + [anon_sym_PIPE_PIPE] = ACTIONS(4400), + [anon_sym_LT] = ACTIONS(1407), + [anon_sym_GT] = ACTIONS(1407), + [anon_sym_GT_GT] = ACTIONS(1407), + [anon_sym_AMP_GT] = ACTIONS(1407), + [anon_sym_AMP_GT_GT] = ACTIONS(1407), + [anon_sym_LT_AMP] = ACTIONS(1407), + [anon_sym_GT_AMP] = ACTIONS(1407), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4400), + [anon_sym_LF] = ACTIONS(4400), + [anon_sym_AMP] = ACTIONS(4400), + }, + [1366] = { + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_RBRACE] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1104), + [sym_raw_string] = ACTIONS(1102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), + [anon_sym_BQUOTE] = ACTIONS(1102), + [anon_sym_LT_LPAREN] = ACTIONS(1102), + [anon_sym_GT_LPAREN] = ACTIONS(1102), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1106), + }, + [1367] = { + [sym_file_descriptor] = ACTIONS(4402), + [anon_sym_esac] = ACTIONS(4404), + [anon_sym_PIPE] = ACTIONS(4404), + [anon_sym_RPAREN] = ACTIONS(4404), + [anon_sym_SEMI_SEMI] = ACTIONS(4404), + [anon_sym_PIPE_AMP] = ACTIONS(4404), + [anon_sym_AMP_AMP] = ACTIONS(4404), + [anon_sym_PIPE_PIPE] = ACTIONS(4404), + [anon_sym_LT] = ACTIONS(4404), + [anon_sym_GT] = ACTIONS(4404), + [anon_sym_GT_GT] = ACTIONS(4404), + [anon_sym_AMP_GT] = ACTIONS(4404), + [anon_sym_AMP_GT_GT] = ACTIONS(4404), + [anon_sym_LT_AMP] = ACTIONS(4404), + [anon_sym_GT_AMP] = ACTIONS(4404), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4404), + [anon_sym_LF] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4404), + }, + [1368] = { + [sym__terminated_statement] = STATE(734), + [sym_for_statement] = STATE(735), + [sym_while_statement] = STATE(735), + [sym_if_statement] = STATE(735), + [sym_case_statement] = STATE(735), + [sym_function_definition] = STATE(735), + [sym_subshell] = STATE(735), + [sym_pipeline] = STATE(735), + [sym_list] = STATE(735), + [sym_command] = STATE(735), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(732), - [sym_variable_assignment] = STATE(733), - [sym_declaration_command] = STATE(732), - [sym_unset_command] = STATE(732), + [sym_bracket_command] = STATE(735), + [sym_variable_assignment] = STATE(736), + [sym_declaration_command] = STATE(735), + [sym_unset_command] = STATE(735), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -44372,84 +44548,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1362), + [aux_sym_program_repeat1] = STATE(1368), [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1150), - [sym_variable_name] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_case] = ACTIONS(1167), - [anon_sym_function] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1156), - [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_typeset] = ACTIONS(1182), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_local] = ACTIONS(1182), - [anon_sym_unset] = ACTIONS(1185), - [anon_sym_unsetenv] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1191), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1191), - [anon_sym_LT_AMP] = ACTIONS(1191), - [anon_sym_GT_AMP] = ACTIONS(1191), - [sym__special_characters] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_raw_string] = ACTIONS(1203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), - [anon_sym_BQUOTE] = ACTIONS(1212), - [anon_sym_LT_LPAREN] = ACTIONS(1215), - [anon_sym_GT_LPAREN] = ACTIONS(1215), + [sym_file_descriptor] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_function] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_RBRACE] = ACTIONS(1158), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1184), + [anon_sym_typeset] = ACTIONS(1184), + [anon_sym_export] = ACTIONS(1184), + [anon_sym_readonly] = ACTIONS(1184), + [anon_sym_local] = ACTIONS(1184), + [anon_sym_unset] = ACTIONS(1187), + [anon_sym_unsetenv] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_AMP_GT] = ACTIONS(1190), + [anon_sym_AMP_GT_GT] = ACTIONS(1193), + [anon_sym_LT_AMP] = ACTIONS(1193), + [anon_sym_GT_AMP] = ACTIONS(1193), + [sym__special_characters] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(1202), + [sym_raw_string] = ACTIONS(1205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(1214), + [anon_sym_LT_LPAREN] = ACTIONS(1217), + [anon_sym_GT_LPAREN] = ACTIONS(1217), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1218), + [sym_word] = ACTIONS(1220), }, - [1363] = { - [sym_concatenation] = STATE(2037), - [sym_string] = STATE(2036), - [sym_simple_expansion] = STATE(2036), - [sym_string_expansion] = STATE(2036), - [sym_expansion] = STATE(2036), - [sym_command_substitution] = STATE(2036), - [sym_process_substitution] = STATE(2036), - [sym__special_characters] = ACTIONS(4394), - [anon_sym_DQUOTE] = ACTIONS(2768), - [anon_sym_DOLLAR] = ACTIONS(2770), - [sym_raw_string] = ACTIONS(4396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2776), - [anon_sym_BQUOTE] = ACTIONS(2778), - [anon_sym_LT_LPAREN] = ACTIONS(2780), - [anon_sym_GT_LPAREN] = ACTIONS(2780), + [1369] = { + [sym_concatenation] = STATE(2045), + [sym_string] = STATE(2044), + [sym_simple_expansion] = STATE(2044), + [sym_string_expansion] = STATE(2044), + [sym_expansion] = STATE(2044), + [sym_command_substitution] = STATE(2044), + [sym_process_substitution] = STATE(2044), + [sym__special_characters] = ACTIONS(4406), + [anon_sym_DQUOTE] = ACTIONS(2778), + [anon_sym_DOLLAR] = ACTIONS(2780), + [sym_raw_string] = ACTIONS(4408), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2786), + [anon_sym_BQUOTE] = ACTIONS(2788), + [anon_sym_LT_LPAREN] = ACTIONS(2790), + [anon_sym_GT_LPAREN] = ACTIONS(2790), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4398), + [sym_word] = ACTIONS(4410), }, - [1364] = { - [aux_sym_concatenation_repeat1] = STATE(2039), - [sym__concat] = ACTIONS(4400), - [anon_sym_PIPE] = ACTIONS(2412), - [anon_sym_SEMI_SEMI] = ACTIONS(2412), - [anon_sym_PIPE_AMP] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), + [1370] = { + [aux_sym_concatenation_repeat1] = STATE(2047), + [sym__concat] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_SEMI_SEMI] = ACTIONS(2418), + [anon_sym_PIPE_AMP] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_LF] = ACTIONS(2412), - [anon_sym_AMP] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LF] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), }, - [1365] = { + [1371] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(2041), - [anon_sym_DQUOTE] = ACTIONS(4402), + [aux_sym_string_repeat1] = STATE(2049), + [anon_sym_DQUOTE] = ACTIONS(4414), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -44457,63 +44633,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [1366] = { - [sym_string] = STATE(2043), - [anon_sym_DQUOTE] = ACTIONS(2768), - [anon_sym_DOLLAR] = ACTIONS(4404), - [sym_raw_string] = ACTIONS(4406), - [anon_sym_POUND] = ACTIONS(4404), - [anon_sym_DASH] = ACTIONS(4404), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4408), - [anon_sym_STAR] = ACTIONS(4404), - [anon_sym_AT] = ACTIONS(4404), - [anon_sym_QMARK] = ACTIONS(4404), - [anon_sym_0] = ACTIONS(4410), - [anon_sym__] = ACTIONS(4410), - }, - [1367] = { - [aux_sym_concatenation_repeat1] = STATE(2039), - [sym__concat] = ACTIONS(4400), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_SEMI_SEMI] = ACTIONS(2424), - [anon_sym_PIPE_AMP] = ACTIONS(2424), - [anon_sym_AMP_AMP] = ACTIONS(2424), - [anon_sym_PIPE_PIPE] = ACTIONS(2424), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_LF] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2424), - }, - [1368] = { - [sym_subscript] = STATE(2049), - [sym_variable_name] = ACTIONS(4412), - [anon_sym_DOLLAR] = ACTIONS(4414), + [1372] = { + [sym_string] = STATE(2051), + [anon_sym_DQUOTE] = ACTIONS(2778), + [anon_sym_DOLLAR] = ACTIONS(4416), + [sym_raw_string] = ACTIONS(4418), [anon_sym_POUND] = ACTIONS(4416), - [anon_sym_DASH] = ACTIONS(4414), + [anon_sym_DASH] = ACTIONS(4416), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4418), - [anon_sym_STAR] = ACTIONS(4414), - [anon_sym_AT] = ACTIONS(4414), - [anon_sym_QMARK] = ACTIONS(4414), - [anon_sym_0] = ACTIONS(4420), - [anon_sym__] = ACTIONS(4420), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4420), + [anon_sym_STAR] = ACTIONS(4416), + [anon_sym_AT] = ACTIONS(4416), + [anon_sym_QMARK] = ACTIONS(4416), + [anon_sym_0] = ACTIONS(4422), + [anon_sym__] = ACTIONS(4422), }, - [1369] = { - [sym_for_statement] = STATE(2050), - [sym_while_statement] = STATE(2050), - [sym_if_statement] = STATE(2050), - [sym_case_statement] = STATE(2050), - [sym_function_definition] = STATE(2050), - [sym_subshell] = STATE(2050), - [sym_pipeline] = STATE(2050), - [sym_list] = STATE(2050), - [sym_command] = STATE(2050), + [1373] = { + [aux_sym_concatenation_repeat1] = STATE(2047), + [sym__concat] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(2430), + [anon_sym_SEMI_SEMI] = ACTIONS(2430), + [anon_sym_PIPE_AMP] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_PIPE_PIPE] = ACTIONS(2430), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_LF] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + }, + [1374] = { + [sym_subscript] = STATE(2057), + [sym_variable_name] = ACTIONS(4424), + [anon_sym_DOLLAR] = ACTIONS(4426), + [anon_sym_POUND] = ACTIONS(4428), + [anon_sym_DASH] = ACTIONS(4426), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4426), + [anon_sym_AT] = ACTIONS(4426), + [anon_sym_QMARK] = ACTIONS(4426), + [anon_sym_0] = ACTIONS(4432), + [anon_sym__] = ACTIONS(4432), + }, + [1375] = { + [sym_for_statement] = STATE(2058), + [sym_while_statement] = STATE(2058), + [sym_if_statement] = STATE(2058), + [sym_case_statement] = STATE(2058), + [sym_function_definition] = STATE(2058), + [sym_subshell] = STATE(2058), + [sym_pipeline] = STATE(2058), + [sym_list] = STATE(2058), + [sym_command] = STATE(2058), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(2050), - [sym_variable_assignment] = STATE(2051), - [sym_declaration_command] = STATE(2050), - [sym_unset_command] = STATE(2050), + [sym_bracket_command] = STATE(2058), + [sym_variable_assignment] = STATE(2059), + [sym_declaration_command] = STATE(2058), + [sym_unset_command] = STATE(2058), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -44560,21 +44736,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [1370] = { - [sym_for_statement] = STATE(2052), - [sym_while_statement] = STATE(2052), - [sym_if_statement] = STATE(2052), - [sym_case_statement] = STATE(2052), - [sym_function_definition] = STATE(2052), - [sym_subshell] = STATE(2052), - [sym_pipeline] = STATE(2052), - [sym_list] = STATE(2052), - [sym_command] = STATE(2052), + [1376] = { + [sym_for_statement] = STATE(2060), + [sym_while_statement] = STATE(2060), + [sym_if_statement] = STATE(2060), + [sym_case_statement] = STATE(2060), + [sym_function_definition] = STATE(2060), + [sym_subshell] = STATE(2060), + [sym_pipeline] = STATE(2060), + [sym_list] = STATE(2060), + [sym_command] = STATE(2060), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(2052), - [sym_variable_assignment] = STATE(2053), - [sym_declaration_command] = STATE(2052), - [sym_unset_command] = STATE(2052), + [sym_bracket_command] = STATE(2060), + [sym_variable_assignment] = STATE(2061), + [sym_declaration_command] = STATE(2060), + [sym_unset_command] = STATE(2060), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -44621,21 +44797,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [1371] = { - [sym_for_statement] = STATE(2054), - [sym_while_statement] = STATE(2054), - [sym_if_statement] = STATE(2054), - [sym_case_statement] = STATE(2054), - [sym_function_definition] = STATE(2054), - [sym_subshell] = STATE(2054), - [sym_pipeline] = STATE(2054), - [sym_list] = STATE(2054), - [sym_command] = STATE(2054), + [1377] = { + [sym_for_statement] = STATE(2062), + [sym_while_statement] = STATE(2062), + [sym_if_statement] = STATE(2062), + [sym_case_statement] = STATE(2062), + [sym_function_definition] = STATE(2062), + [sym_subshell] = STATE(2062), + [sym_pipeline] = STATE(2062), + [sym_list] = STATE(2062), + [sym_command] = STATE(2062), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(2054), - [sym_variable_assignment] = STATE(2055), - [sym_declaration_command] = STATE(2054), - [sym_unset_command] = STATE(2054), + [sym_bracket_command] = STATE(2062), + [sym_variable_assignment] = STATE(2063), + [sym_declaration_command] = STATE(2062), + [sym_unset_command] = STATE(2062), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -44682,109 +44858,109 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [1372] = { - [anon_sym_esac] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_RPAREN] = ACTIONS(2424), - [anon_sym_SEMI_SEMI] = ACTIONS(2424), - [anon_sym_PIPE_AMP] = ACTIONS(2424), - [anon_sym_AMP_AMP] = ACTIONS(2424), - [anon_sym_PIPE_PIPE] = ACTIONS(2424), + [1378] = { + [anon_sym_esac] = ACTIONS(2430), + [anon_sym_PIPE] = ACTIONS(2430), + [anon_sym_RPAREN] = ACTIONS(2430), + [anon_sym_SEMI_SEMI] = ACTIONS(2430), + [anon_sym_PIPE_AMP] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_PIPE_PIPE] = ACTIONS(2430), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_LF] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_LF] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), }, - [1373] = { - [sym_string] = STATE(2056), - [sym_simple_expansion] = STATE(2056), - [sym_string_expansion] = STATE(2056), - [sym_expansion] = STATE(2056), - [sym_command_substitution] = STATE(2056), - [sym_process_substitution] = STATE(2056), - [sym__special_characters] = ACTIONS(4422), - [anon_sym_DQUOTE] = ACTIONS(1407), - [anon_sym_DOLLAR] = ACTIONS(1409), - [sym_raw_string] = ACTIONS(4424), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1415), - [anon_sym_BQUOTE] = ACTIONS(1417), - [anon_sym_LT_LPAREN] = ACTIONS(1419), - [anon_sym_GT_LPAREN] = ACTIONS(1419), + [1379] = { + [sym_string] = STATE(2064), + [sym_simple_expansion] = STATE(2064), + [sym_string_expansion] = STATE(2064), + [sym_expansion] = STATE(2064), + [sym_command_substitution] = STATE(2064), + [sym_process_substitution] = STATE(2064), + [sym__special_characters] = ACTIONS(4434), + [anon_sym_DQUOTE] = ACTIONS(1411), + [anon_sym_DOLLAR] = ACTIONS(1413), + [sym_raw_string] = ACTIONS(4436), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1419), + [anon_sym_BQUOTE] = ACTIONS(1421), + [anon_sym_LT_LPAREN] = ACTIONS(1423), + [anon_sym_GT_LPAREN] = ACTIONS(1423), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4422), + [sym_word] = ACTIONS(4434), }, - [1374] = { - [aux_sym_concatenation_repeat1] = STATE(2057), - [sym_file_descriptor] = ACTIONS(788), - [sym__concat] = ACTIONS(2786), - [sym_variable_name] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(790), - [anon_sym_GT] = ACTIONS(790), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(790), - [anon_sym_AMP_GT_GT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(790), - [anon_sym_GT_AMP] = ACTIONS(790), - [sym__special_characters] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(790), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), + [1380] = { + [aux_sym_concatenation_repeat1] = STATE(2065), + [sym_file_descriptor] = ACTIONS(790), + [sym__concat] = ACTIONS(2796), + [sym_variable_name] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_AMP_GT] = ACTIONS(792), + [anon_sym_AMP_GT_GT] = ACTIONS(792), + [anon_sym_LT_AMP] = ACTIONS(792), + [anon_sym_GT_AMP] = ACTIONS(792), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), + [sym_word] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), }, - [1375] = { - [sym_file_descriptor] = ACTIONS(792), - [sym__concat] = ACTIONS(792), - [sym_variable_name] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(794), - [anon_sym_GT] = ACTIONS(794), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_AMP_GT] = ACTIONS(794), - [anon_sym_AMP_GT_GT] = ACTIONS(794), - [anon_sym_LT_AMP] = ACTIONS(794), - [anon_sym_GT_AMP] = ACTIONS(794), - [sym__special_characters] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(794), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), + [1381] = { + [sym_file_descriptor] = ACTIONS(794), + [sym__concat] = ACTIONS(794), + [sym_variable_name] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(796), + [anon_sym_GT_GT] = ACTIONS(796), + [anon_sym_AMP_GT] = ACTIONS(796), + [anon_sym_AMP_GT_GT] = ACTIONS(796), + [anon_sym_LT_AMP] = ACTIONS(796), + [anon_sym_GT_AMP] = ACTIONS(796), + [sym__special_characters] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(796), + [sym_raw_string] = ACTIONS(796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(796), + [anon_sym_GT_LPAREN] = ACTIONS(796), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), + [sym_word] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), }, - [1376] = { + [1382] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(4426), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(4438), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -44792,295 +44968,226 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [1377] = { - [sym_file_descriptor] = ACTIONS(824), - [sym__concat] = ACTIONS(824), - [sym_variable_name] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_LT] = ACTIONS(826), - [anon_sym_GT] = ACTIONS(826), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_AMP_GT] = ACTIONS(826), - [anon_sym_AMP_GT_GT] = ACTIONS(826), - [anon_sym_LT_AMP] = ACTIONS(826), - [anon_sym_GT_AMP] = ACTIONS(826), - [sym__special_characters] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(826), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), - }, - [1378] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [sym_variable_name] = 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), - [anon_sym_LT] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(830), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_AMP_GT] = ACTIONS(830), - [anon_sym_AMP_GT_GT] = ACTIONS(830), - [anon_sym_LT_AMP] = ACTIONS(830), - [anon_sym_GT_AMP] = ACTIONS(830), - [sym__special_characters] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(830), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), - }, - [1379] = { - [sym_file_descriptor] = ACTIONS(832), - [sym__concat] = ACTIONS(832), - [sym_variable_name] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_AMP_GT] = ACTIONS(834), - [anon_sym_AMP_GT_GT] = ACTIONS(834), - [anon_sym_LT_AMP] = ACTIONS(834), - [anon_sym_GT_AMP] = ACTIONS(834), - [sym__special_characters] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(834), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - }, - [1380] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(4428), - [sym_comment] = ACTIONS(56), - }, - [1381] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2062), - [anon_sym_RBRACE] = ACTIONS(4430), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4432), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1382] = { - [sym_subscript] = STATE(2066), - [sym_variable_name] = ACTIONS(4434), - [anon_sym_DOLLAR] = ACTIONS(4436), - [anon_sym_DASH] = ACTIONS(4436), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4438), - [anon_sym_STAR] = ACTIONS(4436), - [anon_sym_AT] = ACTIONS(4436), - [anon_sym_QMARK] = ACTIONS(4436), - [anon_sym_0] = ACTIONS(4440), - [anon_sym__] = ACTIONS(4440), - }, [1383] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2069), - [anon_sym_RBRACE] = ACTIONS(4442), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4444), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(826), + [sym__concat] = ACTIONS(826), + [sym_variable_name] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(828), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(828), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(828), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), }, [1384] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2072), - [anon_sym_RBRACE] = ACTIONS(4446), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4448), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(830), + [sym__concat] = ACTIONS(830), + [sym_variable_name] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_RPAREN] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_AMP_GT] = ACTIONS(832), + [anon_sym_AMP_GT_GT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(832), + [anon_sym_GT_AMP] = ACTIONS(832), + [sym__special_characters] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), }, [1385] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4450), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [sym_variable_name] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_AMP_GT] = ACTIONS(836), + [anon_sym_AMP_GT_GT] = ACTIONS(836), + [anon_sym_LT_AMP] = ACTIONS(836), + [anon_sym_GT_AMP] = ACTIONS(836), + [sym__special_characters] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [sym_raw_string] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LT_LPAREN] = ACTIONS(836), + [anon_sym_GT_LPAREN] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), }, [1386] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4450), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(4440), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [1387] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(4450), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2070), + [anon_sym_RBRACE] = ACTIONS(4442), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4444), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1388] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(4450), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_subscript] = STATE(2074), + [sym_variable_name] = ACTIONS(4446), + [anon_sym_DOLLAR] = ACTIONS(4448), + [anon_sym_DASH] = ACTIONS(4448), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4448), + [anon_sym_AT] = ACTIONS(4448), + [anon_sym_QMARK] = ACTIONS(4448), + [anon_sym_0] = ACTIONS(4452), + [anon_sym__] = ACTIONS(4452), }, [1389] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4452), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2077), + [anon_sym_RBRACE] = ACTIONS(4454), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4456), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1390] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2080), + [anon_sym_RBRACE] = ACTIONS(4458), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4460), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1391] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4462), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [1392] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4452), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4462), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -45100,3965 +45207,1588 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [1391] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(825), - [sym_file_descriptor] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(2677), - [anon_sym_RPAREN] = ACTIONS(2677), - [anon_sym_SEMI_SEMI] = ACTIONS(2677), - [anon_sym_PIPE_AMP] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_PIPE_PIPE] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(560), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(562), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym_LF] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2677), - }, - [1392] = { - [sym_compound_statement] = STATE(2075), - [anon_sym_LBRACE] = ACTIONS(484), - [sym_comment] = ACTIONS(56), - }, [1393] = { - [anon_sym_LT] = ACTIONS(4454), - [anon_sym_GT] = ACTIONS(4454), - [anon_sym_GT_GT] = ACTIONS(4456), - [anon_sym_AMP_GT] = ACTIONS(4454), - [anon_sym_AMP_GT_GT] = ACTIONS(4456), - [anon_sym_LT_AMP] = ACTIONS(4456), - [anon_sym_GT_AMP] = ACTIONS(4456), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(4462), [sym_comment] = ACTIONS(56), }, [1394] = { - [sym_concatenation] = STATE(1372), - [sym_string] = STATE(2080), - [sym_simple_expansion] = STATE(2080), - [sym_string_expansion] = STATE(2080), - [sym_expansion] = STATE(2080), - [sym_command_substitution] = STATE(2080), - [sym_process_substitution] = STATE(2080), - [sym__special_characters] = ACTIONS(4458), - [anon_sym_DQUOTE] = ACTIONS(4460), - [anon_sym_DOLLAR] = ACTIONS(4462), - [sym_raw_string] = ACTIONS(4464), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4468), - [anon_sym_BQUOTE] = ACTIONS(4470), - [anon_sym_LT_LPAREN] = ACTIONS(4472), - [anon_sym_GT_LPAREN] = ACTIONS(4472), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(4462), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4474), + [sym_word] = ACTIONS(384), }, [1395] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(825), - [sym_file_descriptor] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_SEMI_SEMI] = ACTIONS(3103), - [anon_sym_PIPE_AMP] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_PIPE_PIPE] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(560), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(562), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_LF] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4464), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), }, [1396] = { - [aux_sym_concatenation_repeat1] = STATE(752), - [sym__concat] = ACTIONS(1429), - [sym_variable_name] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(1305), - [anon_sym_RPAREN] = ACTIONS(1305), - [anon_sym_SEMI_SEMI] = ACTIONS(1305), - [anon_sym_PIPE_AMP] = ACTIONS(1305), - [anon_sym_AMP_AMP] = ACTIONS(1305), - [anon_sym_PIPE_PIPE] = ACTIONS(1305), - [sym__special_characters] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1305), - [sym_raw_string] = ACTIONS(1305), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1305), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1305), - [anon_sym_BQUOTE] = ACTIONS(1305), - [anon_sym_LT_LPAREN] = ACTIONS(1305), - [anon_sym_GT_LPAREN] = ACTIONS(1305), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1305), - [sym_word] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym_LF] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1305), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4464), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [1397] = { - [aux_sym_concatenation_repeat1] = STATE(752), - [sym__concat] = ACTIONS(1429), - [sym_variable_name] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_RPAREN] = ACTIONS(1279), - [anon_sym_SEMI_SEMI] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1279), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1279), - [sym_word] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_LF] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - }, - [1398] = { - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [1399] = { - [aux_sym_concatenation_repeat1] = STATE(1399), - [sym__concat] = ACTIONS(4476), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [1400] = { - [sym__concat] = ACTIONS(1923), - [sym_variable_name] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [sym__special_characters] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [sym_raw_string] = ACTIONS(1925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), - [anon_sym_BQUOTE] = ACTIONS(1925), - [anon_sym_LT_LPAREN] = ACTIONS(1925), - [anon_sym_GT_LPAREN] = ACTIONS(1925), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1925), - [sym_word] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - }, - [1401] = { - [sym_concatenation] = STATE(2088), - [sym_string] = STATE(2087), - [sym_simple_expansion] = STATE(2087), - [sym_string_expansion] = STATE(2087), - [sym_expansion] = STATE(2087), - [sym_command_substitution] = STATE(2087), - [sym_process_substitution] = STATE(2087), - [anon_sym_RBRACE] = ACTIONS(4479), - [sym__special_characters] = ACTIONS(4481), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(4483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4485), - }, - [1402] = { - [sym__concat] = ACTIONS(1968), - [sym_variable_name] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_RPAREN] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [sym__special_characters] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [sym_raw_string] = ACTIONS(1970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1970), - [sym_word] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - }, - [1403] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4487), - }, - [1404] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4489), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1405] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(4491), - [sym_comment] = ACTIONS(56), - }, - [1406] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2094), - [anon_sym_RBRACE] = ACTIONS(4493), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4495), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1407] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2097), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4499), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1408] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2099), - [anon_sym_RBRACE] = ACTIONS(4479), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4501), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1409] = { - [sym__concat] = ACTIONS(2022), - [sym_variable_name] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [sym__special_characters] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_DOLLAR] = ACTIONS(2024), - [sym_raw_string] = ACTIONS(2024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2024), - [anon_sym_LT_LPAREN] = ACTIONS(2024), - [anon_sym_GT_LPAREN] = ACTIONS(2024), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2024), - [sym_word] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - }, - [1410] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4503), - }, - [1411] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4505), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1412] = { - [sym__concat] = ACTIONS(2030), - [sym_variable_name] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_RPAREN] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [sym__special_characters] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2032), - [sym_raw_string] = ACTIONS(2032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), - [anon_sym_BQUOTE] = ACTIONS(2032), - [anon_sym_LT_LPAREN] = ACTIONS(2032), - [anon_sym_GT_LPAREN] = ACTIONS(2032), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2032), - [sym_word] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), - }, - [1413] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4507), - }, - [1414] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4479), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1415] = { - [sym__concat] = ACTIONS(2190), - [sym_variable_name] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_RPAREN] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [sym__special_characters] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [sym_raw_string] = ACTIONS(2192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), - [anon_sym_BQUOTE] = ACTIONS(2192), - [anon_sym_LT_LPAREN] = ACTIONS(2192), - [anon_sym_GT_LPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2192), - [sym_word] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), - }, - [1416] = { - [sym__concat] = ACTIONS(2396), - [sym_variable_name] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_RPAREN] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [sym__special_characters] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), - [anon_sym_BQUOTE] = ACTIONS(2398), - [anon_sym_LT_LPAREN] = ACTIONS(2398), - [anon_sym_GT_LPAREN] = ACTIONS(2398), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2398), - [sym_word] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - }, - [1417] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [1418] = { - [aux_sym_concatenation_repeat1] = STATE(1418), - [sym__concat] = ACTIONS(4509), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [1419] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [sym__special_characters] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [sym_raw_string] = ACTIONS(1925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), - [anon_sym_BQUOTE] = ACTIONS(1925), - [anon_sym_LT_LPAREN] = ACTIONS(1925), - [anon_sym_GT_LPAREN] = ACTIONS(1925), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1925), - [sym_word] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - }, - [1420] = { - [sym_concatenation] = STATE(2106), - [sym_string] = STATE(2105), - [sym_simple_expansion] = STATE(2105), - [sym_string_expansion] = STATE(2105), - [sym_expansion] = STATE(2105), - [sym_command_substitution] = STATE(2105), - [sym_process_substitution] = STATE(2105), - [anon_sym_RBRACE] = ACTIONS(4512), - [sym__special_characters] = ACTIONS(4514), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(4516), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4518), - }, - [1421] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_RPAREN] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [sym__special_characters] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [sym_raw_string] = ACTIONS(1970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1970), - [sym_word] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - }, - [1422] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4520), - }, - [1423] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4522), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1424] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(4524), - [sym_comment] = ACTIONS(56), - }, - [1425] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2112), - [anon_sym_RBRACE] = ACTIONS(4526), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4528), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1426] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2115), - [anon_sym_RBRACE] = ACTIONS(4530), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4532), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1427] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2117), - [anon_sym_RBRACE] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4534), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1428] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [sym__special_characters] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_DOLLAR] = ACTIONS(2024), - [sym_raw_string] = ACTIONS(2024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2024), - [anon_sym_LT_LPAREN] = ACTIONS(2024), - [anon_sym_GT_LPAREN] = ACTIONS(2024), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2024), - [sym_word] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - }, - [1429] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4536), - }, - [1430] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4538), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1431] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_RPAREN] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [sym__special_characters] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2032), - [sym_raw_string] = ACTIONS(2032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), - [anon_sym_BQUOTE] = ACTIONS(2032), - [anon_sym_LT_LPAREN] = ACTIONS(2032), - [anon_sym_GT_LPAREN] = ACTIONS(2032), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2032), - [sym_word] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), - }, - [1432] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4540), - }, - [1433] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4512), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1434] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_RPAREN] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [sym__special_characters] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [sym_raw_string] = ACTIONS(2192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), - [anon_sym_BQUOTE] = ACTIONS(2192), - [anon_sym_LT_LPAREN] = ACTIONS(2192), - [anon_sym_GT_LPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2192), - [sym_word] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), - }, - [1435] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_RPAREN] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [sym__special_characters] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), - [anon_sym_BQUOTE] = ACTIONS(2398), - [anon_sym_LT_LPAREN] = ACTIONS(2398), - [anon_sym_GT_LPAREN] = ACTIONS(2398), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2398), - [sym_word] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - }, - [1436] = { - [sym_file_descriptor] = ACTIONS(3283), - [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_RPAREN] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_EQ_TILDE] = ACTIONS(3285), - [anon_sym_EQ_EQ] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_GT] = ACTIONS(3285), - [anon_sym_GT_GT] = ACTIONS(3285), - [anon_sym_AMP_GT] = ACTIONS(3285), - [anon_sym_AMP_GT_GT] = ACTIONS(3285), - [anon_sym_LT_AMP] = ACTIONS(3285), - [anon_sym_GT_AMP] = ACTIONS(3285), - [anon_sym_LT_LT] = ACTIONS(3285), - [anon_sym_LT_LT_DASH] = ACTIONS(3285), - [anon_sym_LT_LT_LT] = ACTIONS(3285), - [sym__special_characters] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_DOLLAR] = ACTIONS(3285), - [sym_raw_string] = ACTIONS(3285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), - [anon_sym_BQUOTE] = ACTIONS(3285), - [anon_sym_LT_LPAREN] = ACTIONS(3285), - [anon_sym_GT_LPAREN] = ACTIONS(3285), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - }, - [1437] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4542), - [sym_comment] = ACTIONS(56), - }, - [1438] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4544), - [sym_comment] = ACTIONS(56), - }, - [1439] = { - [anon_sym_RBRACE] = ACTIONS(4544), - [sym_comment] = ACTIONS(56), - }, - [1440] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2124), - [anon_sym_RBRACE] = ACTIONS(4546), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1441] = { - [sym_file_descriptor] = ACTIONS(3347), - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [anon_sym_EQ_TILDE] = ACTIONS(3349), - [anon_sym_EQ_EQ] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_GT] = ACTIONS(3349), - [anon_sym_GT_GT] = ACTIONS(3349), - [anon_sym_AMP_GT] = ACTIONS(3349), - [anon_sym_AMP_GT_GT] = ACTIONS(3349), - [anon_sym_LT_AMP] = ACTIONS(3349), - [anon_sym_GT_AMP] = ACTIONS(3349), - [anon_sym_LT_LT] = ACTIONS(3349), - [anon_sym_LT_LT_DASH] = ACTIONS(3349), - [anon_sym_LT_LT_LT] = ACTIONS(3349), - [sym__special_characters] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3349), - [sym_raw_string] = ACTIONS(3349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), - [anon_sym_BQUOTE] = ACTIONS(3349), - [anon_sym_LT_LPAREN] = ACTIONS(3349), - [anon_sym_GT_LPAREN] = ACTIONS(3349), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - }, - [1442] = { - [sym_concatenation] = STATE(2127), - [sym_string] = STATE(2126), - [sym_simple_expansion] = STATE(2126), - [sym_string_expansion] = STATE(2126), - [sym_expansion] = STATE(2126), - [sym_command_substitution] = STATE(2126), - [sym_process_substitution] = STATE(2126), - [anon_sym_RBRACE] = ACTIONS(4544), - [sym__special_characters] = ACTIONS(4548), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(4550), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4552), - }, - [1443] = { - [sym_file_descriptor] = ACTIONS(3392), - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [anon_sym_EQ_TILDE] = ACTIONS(3394), - [anon_sym_EQ_EQ] = ACTIONS(3394), - [anon_sym_LT] = ACTIONS(3394), - [anon_sym_GT] = ACTIONS(3394), - [anon_sym_GT_GT] = ACTIONS(3394), - [anon_sym_AMP_GT] = ACTIONS(3394), - [anon_sym_AMP_GT_GT] = ACTIONS(3394), - [anon_sym_LT_AMP] = ACTIONS(3394), - [anon_sym_GT_AMP] = ACTIONS(3394), - [anon_sym_LT_LT] = ACTIONS(3394), - [anon_sym_LT_LT_DASH] = ACTIONS(3394), - [anon_sym_LT_LT_LT] = ACTIONS(3394), - [sym__special_characters] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_DOLLAR] = ACTIONS(3394), - [sym_raw_string] = ACTIONS(3394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), - [anon_sym_BQUOTE] = ACTIONS(3394), - [anon_sym_LT_LPAREN] = ACTIONS(3394), - [anon_sym_GT_LPAREN] = ACTIONS(3394), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3394), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), - }, - [1444] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4554), - }, - [1445] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4556), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1446] = { - [sym_file_descriptor] = ACTIONS(3400), - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_RPAREN] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [anon_sym_EQ_TILDE] = ACTIONS(3402), - [anon_sym_EQ_EQ] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(3402), - [anon_sym_GT] = ACTIONS(3402), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_AMP_GT] = ACTIONS(3402), - [anon_sym_AMP_GT_GT] = ACTIONS(3402), - [anon_sym_LT_AMP] = ACTIONS(3402), - [anon_sym_GT_AMP] = ACTIONS(3402), - [anon_sym_LT_LT] = ACTIONS(3402), - [anon_sym_LT_LT_DASH] = ACTIONS(3402), - [anon_sym_LT_LT_LT] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(3402), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3402), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), - }, - [1447] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4558), - }, - [1448] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4560), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1449] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4562), - }, - [1450] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4544), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1451] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2134), - [anon_sym_RBRACE] = ACTIONS(4564), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1452] = { - [sym_file_descriptor] = ACTIONS(3412), - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [anon_sym_EQ_TILDE] = ACTIONS(3414), - [anon_sym_EQ_EQ] = ACTIONS(3414), - [anon_sym_LT] = ACTIONS(3414), - [anon_sym_GT] = ACTIONS(3414), - [anon_sym_GT_GT] = ACTIONS(3414), - [anon_sym_AMP_GT] = ACTIONS(3414), - [anon_sym_AMP_GT_GT] = ACTIONS(3414), - [anon_sym_LT_AMP] = ACTIONS(3414), - [anon_sym_GT_AMP] = ACTIONS(3414), - [anon_sym_LT_LT] = ACTIONS(3414), - [anon_sym_LT_LT_DASH] = ACTIONS(3414), - [anon_sym_LT_LT_LT] = ACTIONS(3414), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_DOLLAR] = ACTIONS(3414), - [sym_raw_string] = ACTIONS(3414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), - [anon_sym_BQUOTE] = ACTIONS(3414), - [anon_sym_LT_LPAREN] = ACTIONS(3414), - [anon_sym_GT_LPAREN] = ACTIONS(3414), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), - }, - [1453] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2136), - [anon_sym_RBRACE] = ACTIONS(4566), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1454] = { - [sym_file_redirect] = STATE(1874), - [sym_file_descriptor] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_RPAREN] = ACTIONS(2784), - [anon_sym_SEMI_SEMI] = ACTIONS(2784), - [anon_sym_PIPE_AMP] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_GT] = ACTIONS(2812), - [anon_sym_AMP_GT_GT] = ACTIONS(2812), - [anon_sym_LT_AMP] = ACTIONS(2812), - [anon_sym_GT_AMP] = ACTIONS(2812), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - }, - [1455] = { - [aux_sym_concatenation_repeat1] = STATE(1458), - [sym_file_descriptor] = ACTIONS(1239), - [sym__concat] = ACTIONS(2996), - [anon_sym_PIPE] = ACTIONS(4032), - [anon_sym_RPAREN] = ACTIONS(4032), - [anon_sym_SEMI_SEMI] = ACTIONS(4032), - [anon_sym_PIPE_AMP] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_PIPE_PIPE] = ACTIONS(4032), - [anon_sym_LT] = ACTIONS(4032), - [anon_sym_GT] = ACTIONS(4032), - [anon_sym_GT_GT] = ACTIONS(4032), - [anon_sym_AMP_GT] = ACTIONS(4032), - [anon_sym_AMP_GT_GT] = ACTIONS(4032), - [anon_sym_LT_AMP] = ACTIONS(4032), - [anon_sym_GT_AMP] = ACTIONS(4032), - [anon_sym_LT_LT] = ACTIONS(4032), - [anon_sym_LT_LT_DASH] = ACTIONS(4032), - [anon_sym_LT_LT_LT] = ACTIONS(4032), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym_LF] = ACTIONS(4032), - [anon_sym_AMP] = ACTIONS(4032), - }, - [1456] = { - [aux_sym_concatenation_repeat1] = STATE(1458), - [sym_file_descriptor] = ACTIONS(1243), - [sym__concat] = ACTIONS(2996), - [anon_sym_PIPE] = ACTIONS(4034), - [anon_sym_RPAREN] = ACTIONS(4034), - [anon_sym_SEMI_SEMI] = ACTIONS(4034), - [anon_sym_PIPE_AMP] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_PIPE_PIPE] = ACTIONS(4034), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_GT_GT] = ACTIONS(4034), - [anon_sym_AMP_GT] = ACTIONS(4034), - [anon_sym_AMP_GT_GT] = ACTIONS(4034), - [anon_sym_LT_AMP] = ACTIONS(4034), - [anon_sym_GT_AMP] = ACTIONS(4034), - [anon_sym_LT_LT] = ACTIONS(4034), - [anon_sym_LT_LT_DASH] = ACTIONS(4034), - [anon_sym_LT_LT_LT] = ACTIONS(4034), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4034), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4034), - }, - [1457] = { - [sym_string] = STATE(2137), - [sym_simple_expansion] = STATE(2137), - [sym_string_expansion] = STATE(2137), - [sym_expansion] = STATE(2137), - [sym_command_substitution] = STATE(2137), - [sym_process_substitution] = STATE(2137), - [sym__special_characters] = ACTIONS(4568), - [anon_sym_DQUOTE] = ACTIONS(1525), - [anon_sym_DOLLAR] = ACTIONS(1527), - [sym_raw_string] = ACTIONS(4570), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1531), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1533), - [anon_sym_BQUOTE] = ACTIONS(1535), - [anon_sym_LT_LPAREN] = ACTIONS(1537), - [anon_sym_GT_LPAREN] = ACTIONS(1537), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4568), - }, - [1458] = { - [aux_sym_concatenation_repeat1] = STATE(2138), - [sym_file_descriptor] = ACTIONS(788), - [sym__concat] = ACTIONS(2996), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(790), - [anon_sym_GT] = ACTIONS(790), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(790), - [anon_sym_AMP_GT_GT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(790), - [anon_sym_GT_AMP] = ACTIONS(790), - [anon_sym_LT_LT] = ACTIONS(790), - [anon_sym_LT_LT_DASH] = ACTIONS(790), - [anon_sym_LT_LT_LT] = ACTIONS(790), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), - }, - [1459] = { - [sym_file_descriptor] = ACTIONS(792), - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(794), - [anon_sym_GT] = ACTIONS(794), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_AMP_GT] = ACTIONS(794), - [anon_sym_AMP_GT_GT] = ACTIONS(794), - [anon_sym_LT_AMP] = ACTIONS(794), - [anon_sym_GT_AMP] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(794), - [anon_sym_LT_LT_DASH] = ACTIONS(794), - [anon_sym_LT_LT_LT] = ACTIONS(794), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), - }, - [1460] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(4572), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1461] = { - [sym_file_descriptor] = ACTIONS(824), - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_LT] = ACTIONS(826), - [anon_sym_GT] = ACTIONS(826), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_AMP_GT] = ACTIONS(826), - [anon_sym_AMP_GT_GT] = ACTIONS(826), - [anon_sym_LT_AMP] = ACTIONS(826), - [anon_sym_GT_AMP] = ACTIONS(826), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_LT_LT_DASH] = ACTIONS(826), - [anon_sym_LT_LT_LT] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), - }, - [1462] = { - [sym_file_descriptor] = ACTIONS(828), - [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), - [anon_sym_LT] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(830), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_AMP_GT] = ACTIONS(830), - [anon_sym_AMP_GT_GT] = ACTIONS(830), - [anon_sym_LT_AMP] = ACTIONS(830), - [anon_sym_GT_AMP] = ACTIONS(830), - [anon_sym_LT_LT] = ACTIONS(830), - [anon_sym_LT_LT_DASH] = ACTIONS(830), - [anon_sym_LT_LT_LT] = ACTIONS(830), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), - }, - [1463] = { - [sym_file_descriptor] = ACTIONS(832), - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_AMP_GT] = ACTIONS(834), - [anon_sym_AMP_GT_GT] = ACTIONS(834), - [anon_sym_LT_AMP] = ACTIONS(834), - [anon_sym_GT_AMP] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_LT_LT_DASH] = ACTIONS(834), - [anon_sym_LT_LT_LT] = ACTIONS(834), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - }, - [1464] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(4574), - [sym_comment] = ACTIONS(56), - }, - [1465] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2143), - [anon_sym_RBRACE] = ACTIONS(4576), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4578), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1466] = { - [sym_subscript] = STATE(2147), - [sym_variable_name] = ACTIONS(4580), - [anon_sym_DOLLAR] = ACTIONS(4582), - [anon_sym_DASH] = ACTIONS(4582), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4584), - [anon_sym_STAR] = ACTIONS(4582), - [anon_sym_AT] = ACTIONS(4582), - [anon_sym_QMARK] = ACTIONS(4582), - [anon_sym_0] = ACTIONS(4586), - [anon_sym__] = ACTIONS(4586), - }, - [1467] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2150), - [anon_sym_RBRACE] = ACTIONS(4588), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4590), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1468] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2153), - [anon_sym_RBRACE] = ACTIONS(4592), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4594), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1469] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4596), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [1470] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4596), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1471] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(4596), - [sym_comment] = ACTIONS(56), - }, - [1472] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(4596), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1473] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4598), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [1474] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4598), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1475] = { - [anon_sym_esac] = ACTIONS(4600), - [anon_sym_PIPE] = ACTIONS(4600), - [anon_sym_RPAREN] = ACTIONS(4600), - [anon_sym_SEMI_SEMI] = ACTIONS(4600), - [anon_sym_PIPE_AMP] = ACTIONS(4600), - [anon_sym_AMP_AMP] = ACTIONS(4600), - [anon_sym_PIPE_PIPE] = ACTIONS(4600), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4600), - [anon_sym_LF] = ACTIONS(4600), - [anon_sym_AMP] = ACTIONS(4600), - }, - [1476] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(825), - [sym_file_descriptor] = ACTIONS(556), - [anon_sym_PIPE] = ACTIONS(4094), - [anon_sym_RPAREN] = ACTIONS(4094), - [anon_sym_SEMI_SEMI] = ACTIONS(4094), - [anon_sym_PIPE_AMP] = ACTIONS(4094), - [anon_sym_AMP_AMP] = ACTIONS(4094), - [anon_sym_PIPE_PIPE] = ACTIONS(4094), - [anon_sym_LT] = ACTIONS(560), - [anon_sym_GT] = ACTIONS(560), - [anon_sym_GT_GT] = ACTIONS(560), - [anon_sym_AMP_GT] = ACTIONS(560), - [anon_sym_AMP_GT_GT] = ACTIONS(560), - [anon_sym_LT_AMP] = ACTIONS(560), - [anon_sym_GT_AMP] = ACTIONS(560), + [aux_sym_while_statement_repeat1] = STATE(828), + [sym_file_descriptor] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(2687), + [anon_sym_RPAREN] = ACTIONS(2687), + [anon_sym_SEMI_SEMI] = ACTIONS(2687), + [anon_sym_PIPE_AMP] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_PIPE_PIPE] = ACTIONS(2687), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_AMP_GT] = ACTIONS(562), + [anon_sym_AMP_GT_GT] = ACTIONS(562), + [anon_sym_LT_AMP] = ACTIONS(562), + [anon_sym_GT_AMP] = ACTIONS(562), [anon_sym_LT_LT] = ACTIONS(360), [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(562), + [anon_sym_LT_LT_LT] = ACTIONS(564), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4094), - [anon_sym_LF] = ACTIONS(4094), - [anon_sym_AMP] = ACTIONS(4094), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_LF] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2687), }, - [1477] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_EQ_TILDE] = ACTIONS(4602), - [anon_sym_EQ_EQ] = ACTIONS(4602), - [anon_sym_RBRACK] = ACTIONS(3283), - [sym__special_characters] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(4602), - [sym_raw_string] = ACTIONS(3283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), - [anon_sym_BQUOTE] = ACTIONS(3283), - [anon_sym_LT_LPAREN] = ACTIONS(3283), - [anon_sym_GT_LPAREN] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3285), - }, - [1478] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4604), + [1398] = { + [sym_compound_statement] = STATE(2083), + [anon_sym_LBRACE] = ACTIONS(486), [sym_comment] = ACTIONS(56), }, - [1479] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4606), + [1399] = { + [anon_sym_LT] = ACTIONS(4466), + [anon_sym_GT] = ACTIONS(4466), + [anon_sym_GT_GT] = ACTIONS(4468), + [anon_sym_AMP_GT] = ACTIONS(4466), + [anon_sym_AMP_GT_GT] = ACTIONS(4468), + [anon_sym_LT_AMP] = ACTIONS(4468), + [anon_sym_GT_AMP] = ACTIONS(4468), [sym_comment] = ACTIONS(56), }, - [1480] = { - [anon_sym_RBRACE] = ACTIONS(4606), + [1400] = { + [sym_concatenation] = STATE(1378), + [sym_string] = STATE(2088), + [sym_simple_expansion] = STATE(2088), + [sym_string_expansion] = STATE(2088), + [sym_expansion] = STATE(2088), + [sym_command_substitution] = STATE(2088), + [sym_process_substitution] = STATE(2088), + [sym__special_characters] = ACTIONS(4470), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(4476), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4486), + }, + [1401] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(828), + [sym_file_descriptor] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(3113), + [anon_sym_RPAREN] = ACTIONS(3113), + [anon_sym_SEMI_SEMI] = ACTIONS(3113), + [anon_sym_PIPE_AMP] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_AMP_GT] = ACTIONS(562), + [anon_sym_AMP_GT_GT] = ACTIONS(562), + [anon_sym_LT_AMP] = ACTIONS(562), + [anon_sym_GT_AMP] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(564), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_LF] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3113), + }, + [1402] = { + [aux_sym_concatenation_repeat1] = STATE(755), + [sym__concat] = ACTIONS(1433), + [sym_variable_name] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_RPAREN] = ACTIONS(1307), + [anon_sym_SEMI_SEMI] = ACTIONS(1307), + [anon_sym_PIPE_AMP] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1307), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [sym__special_characters] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [sym_raw_string] = ACTIONS(1307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1307), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1307), + [anon_sym_BQUOTE] = ACTIONS(1307), + [anon_sym_LT_LPAREN] = ACTIONS(1307), + [anon_sym_GT_LPAREN] = ACTIONS(1307), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1307), + [sym_word] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_LF] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), + }, + [1403] = { + [aux_sym_concatenation_repeat1] = STATE(755), + [sym__concat] = ACTIONS(1433), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_RPAREN] = ACTIONS(1281), + [anon_sym_SEMI_SEMI] = ACTIONS(1281), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1281), + [sym_word] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + }, + [1404] = { + [sym__concat] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [1405] = { + [aux_sym_concatenation_repeat1] = STATE(1405), + [sym__concat] = ACTIONS(4488), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [1406] = { + [sym__concat] = ACTIONS(1927), + [sym_variable_name] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), + [anon_sym_BQUOTE] = ACTIONS(1929), + [anon_sym_LT_LPAREN] = ACTIONS(1929), + [anon_sym_GT_LPAREN] = ACTIONS(1929), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), + [sym_word] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), + }, + [1407] = { + [sym_concatenation] = STATE(2096), + [sym_string] = STATE(2095), + [sym_simple_expansion] = STATE(2095), + [sym_string_expansion] = STATE(2095), + [sym_expansion] = STATE(2095), + [sym_command_substitution] = STATE(2095), + [sym_process_substitution] = STATE(2095), + [anon_sym_RBRACE] = ACTIONS(4491), + [sym__special_characters] = ACTIONS(4493), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(4495), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4497), + }, + [1408] = { + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_RPAREN] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [sym__special_characters] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1974), + [sym_raw_string] = ACTIONS(1974), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [anon_sym_BQUOTE] = ACTIONS(1974), + [anon_sym_LT_LPAREN] = ACTIONS(1974), + [anon_sym_GT_LPAREN] = ACTIONS(1974), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1974), + [sym_word] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + }, + [1409] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4499), + }, + [1410] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4501), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1411] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(4503), [sym_comment] = ACTIONS(56), }, - [1481] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2159), - [anon_sym_RBRACE] = ACTIONS(4608), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [1412] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2102), + [anon_sym_RBRACE] = ACTIONS(4505), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4507), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [1482] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_EQ_TILDE] = ACTIONS(4610), - [anon_sym_EQ_EQ] = ACTIONS(4610), - [anon_sym_RBRACK] = ACTIONS(3347), - [sym__special_characters] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(3347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), - [anon_sym_BQUOTE] = ACTIONS(3347), - [anon_sym_LT_LPAREN] = ACTIONS(3347), - [anon_sym_GT_LPAREN] = ACTIONS(3347), + [1413] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2105), + [anon_sym_RBRACE] = ACTIONS(4509), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4511), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1414] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2107), + [anon_sym_RBRACE] = ACTIONS(4491), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4513), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1415] = { + [sym__concat] = ACTIONS(2026), + [sym_variable_name] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym_raw_string] = ACTIONS(2028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(2028), + [anon_sym_LT_LPAREN] = ACTIONS(2028), + [anon_sym_GT_LPAREN] = ACTIONS(2028), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2028), + [sym_word] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + }, + [1416] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4515), + }, + [1417] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1418] = { + [sym__concat] = ACTIONS(2034), + [sym_variable_name] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [anon_sym_LT_LPAREN] = ACTIONS(2036), + [anon_sym_GT_LPAREN] = ACTIONS(2036), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2036), + [sym_word] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + }, + [1419] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4519), + }, + [1420] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4491), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1421] = { + [sym__concat] = ACTIONS(2196), + [sym_variable_name] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [sym__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2198), + [sym_word] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + }, + [1422] = { + [sym__concat] = ACTIONS(2402), + [sym_variable_name] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_RPAREN] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [sym__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(2404), + [sym_raw_string] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2404), + [anon_sym_LT_LPAREN] = ACTIONS(2404), + [anon_sym_GT_LPAREN] = ACTIONS(2404), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2404), + [sym_word] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + }, + [1423] = { + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [1424] = { + [aux_sym_concatenation_repeat1] = STATE(1424), + [sym__concat] = ACTIONS(4521), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [1425] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), + [anon_sym_BQUOTE] = ACTIONS(1929), + [anon_sym_LT_LPAREN] = ACTIONS(1929), + [anon_sym_GT_LPAREN] = ACTIONS(1929), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), + [sym_word] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), + }, + [1426] = { + [sym_concatenation] = STATE(2114), + [sym_string] = STATE(2113), + [sym_simple_expansion] = STATE(2113), + [sym_string_expansion] = STATE(2113), + [sym_expansion] = STATE(2113), + [sym_command_substitution] = STATE(2113), + [sym_process_substitution] = STATE(2113), + [anon_sym_RBRACE] = ACTIONS(4524), + [sym__special_characters] = ACTIONS(4526), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(4528), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3349), + [sym_word] = ACTIONS(4530), }, - [1483] = { - [sym_concatenation] = STATE(2162), - [sym_string] = STATE(2161), - [sym_simple_expansion] = STATE(2161), - [sym_string_expansion] = STATE(2161), - [sym_expansion] = STATE(2161), - [sym_command_substitution] = STATE(2161), - [sym_process_substitution] = STATE(2161), - [anon_sym_RBRACE] = ACTIONS(4606), - [sym__special_characters] = ACTIONS(4612), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(4614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4616), - }, - [1484] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_EQ_TILDE] = ACTIONS(4618), - [anon_sym_EQ_EQ] = ACTIONS(4618), - [anon_sym_RBRACK] = ACTIONS(3392), - [sym__special_characters] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(4618), - [sym_raw_string] = ACTIONS(3392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), - [anon_sym_BQUOTE] = ACTIONS(3392), - [anon_sym_LT_LPAREN] = ACTIONS(3392), - [anon_sym_GT_LPAREN] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3394), - }, - [1485] = { + [1427] = { + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_RPAREN] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [sym__special_characters] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1974), + [sym_raw_string] = ACTIONS(1974), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [anon_sym_BQUOTE] = ACTIONS(1974), + [anon_sym_LT_LPAREN] = ACTIONS(1974), + [anon_sym_GT_LPAREN] = ACTIONS(1974), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4620), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1974), + [sym_word] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), }, - [1486] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4622), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [1428] = { [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(4532), }, - [1487] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_EQ_TILDE] = ACTIONS(4624), - [anon_sym_EQ_EQ] = ACTIONS(4624), - [anon_sym_RBRACK] = ACTIONS(3400), - [sym__special_characters] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(4624), - [sym_raw_string] = ACTIONS(3400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), - [anon_sym_BQUOTE] = ACTIONS(3400), - [anon_sym_LT_LPAREN] = ACTIONS(3400), - [anon_sym_GT_LPAREN] = ACTIONS(3400), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3402), - }, - [1488] = { + [1429] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4534), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4626), + [sym_word] = ACTIONS(866), }, - [1489] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4628), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1490] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4630), - }, - [1491] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4606), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1492] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2169), - [anon_sym_RBRACE] = ACTIONS(4632), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1493] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_EQ_TILDE] = ACTIONS(4634), - [anon_sym_EQ_EQ] = ACTIONS(4634), - [anon_sym_RBRACK] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(4634), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3414), - }, - [1494] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2171), - [anon_sym_RBRACE] = ACTIONS(4636), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1495] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_EQ_TILDE] = ACTIONS(4602), - [anon_sym_EQ_EQ] = ACTIONS(4602), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3283), - [sym__special_characters] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(4602), - [sym_raw_string] = ACTIONS(3283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), - [anon_sym_BQUOTE] = ACTIONS(3283), - [anon_sym_LT_LPAREN] = ACTIONS(3283), - [anon_sym_GT_LPAREN] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3285), - }, - [1496] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4638), + [1430] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(4536), [sym_comment] = ACTIONS(56), }, - [1497] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4640), + [1431] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2120), + [anon_sym_RBRACE] = ACTIONS(4538), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4540), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1432] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2123), + [anon_sym_RBRACE] = ACTIONS(4542), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4544), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1433] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2125), + [anon_sym_RBRACE] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4546), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1434] = { + [sym__concat] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym_raw_string] = ACTIONS(2028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(2028), + [anon_sym_LT_LPAREN] = ACTIONS(2028), + [anon_sym_GT_LPAREN] = ACTIONS(2028), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2028), + [sym_word] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + }, + [1435] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4548), + }, + [1436] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4550), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1437] = { + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [anon_sym_LT_LPAREN] = ACTIONS(2036), + [anon_sym_GT_LPAREN] = ACTIONS(2036), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2036), + [sym_word] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + }, + [1438] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4552), + }, + [1439] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4524), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1440] = { + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [sym__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2198), + [sym_word] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + }, + [1441] = { + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_RPAREN] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [sym__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(2404), + [sym_raw_string] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2404), + [anon_sym_LT_LPAREN] = ACTIONS(2404), + [anon_sym_GT_LPAREN] = ACTIONS(2404), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2404), + [sym_word] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + }, + [1442] = { + [sym_file_descriptor] = ACTIONS(3293), + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_RPAREN] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_EQ_TILDE] = ACTIONS(3295), + [anon_sym_EQ_EQ] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_GT] = ACTIONS(3295), + [anon_sym_GT_GT] = ACTIONS(3295), + [anon_sym_AMP_GT] = ACTIONS(3295), + [anon_sym_AMP_GT_GT] = ACTIONS(3295), + [anon_sym_LT_AMP] = ACTIONS(3295), + [anon_sym_GT_AMP] = ACTIONS(3295), + [anon_sym_LT_LT] = ACTIONS(3295), + [anon_sym_LT_LT_DASH] = ACTIONS(3295), + [anon_sym_LT_LT_LT] = ACTIONS(3295), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), + [anon_sym_BQUOTE] = ACTIONS(3295), + [anon_sym_LT_LPAREN] = ACTIONS(3295), + [anon_sym_GT_LPAREN] = ACTIONS(3295), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + }, + [1443] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4554), [sym_comment] = ACTIONS(56), }, - [1498] = { - [anon_sym_RBRACE] = ACTIONS(4640), + [1444] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4556), [sym_comment] = ACTIONS(56), }, - [1499] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2175), - [anon_sym_RBRACE] = ACTIONS(4642), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1500] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_EQ_TILDE] = ACTIONS(4610), - [anon_sym_EQ_EQ] = ACTIONS(4610), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3347), - [sym__special_characters] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(3347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), - [anon_sym_BQUOTE] = ACTIONS(3347), - [anon_sym_LT_LPAREN] = ACTIONS(3347), - [anon_sym_GT_LPAREN] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3349), - }, - [1501] = { - [sym_concatenation] = STATE(2178), - [sym_string] = STATE(2177), - [sym_simple_expansion] = STATE(2177), - [sym_string_expansion] = STATE(2177), - [sym_expansion] = STATE(2177), - [sym_command_substitution] = STATE(2177), - [sym_process_substitution] = STATE(2177), - [anon_sym_RBRACE] = ACTIONS(4640), - [sym__special_characters] = ACTIONS(4644), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(4646), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4648), - }, - [1502] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_EQ_TILDE] = ACTIONS(4618), - [anon_sym_EQ_EQ] = ACTIONS(4618), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3392), - [sym__special_characters] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(4618), - [sym_raw_string] = ACTIONS(3392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), - [anon_sym_BQUOTE] = ACTIONS(3392), - [anon_sym_LT_LPAREN] = ACTIONS(3392), - [anon_sym_GT_LPAREN] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3394), - }, - [1503] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4650), - }, - [1504] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4652), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1505] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_EQ_TILDE] = ACTIONS(4624), - [anon_sym_EQ_EQ] = ACTIONS(4624), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3400), - [sym__special_characters] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(4624), - [sym_raw_string] = ACTIONS(3400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), - [anon_sym_BQUOTE] = ACTIONS(3400), - [anon_sym_LT_LPAREN] = ACTIONS(3400), - [anon_sym_GT_LPAREN] = ACTIONS(3400), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3402), - }, - [1506] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4654), - }, - [1507] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4656), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1508] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4658), - }, - [1509] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4640), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1510] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2185), - [anon_sym_RBRACE] = ACTIONS(4660), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1511] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_EQ_TILDE] = ACTIONS(4634), - [anon_sym_EQ_EQ] = ACTIONS(4634), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(4634), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3414), - }, - [1512] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2187), - [anon_sym_RBRACE] = ACTIONS(4662), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1513] = { - [sym_variable_name] = ACTIONS(2557), - [anon_sym_PIPE] = ACTIONS(2559), - [anon_sym_RPAREN] = ACTIONS(2559), - [anon_sym_SEMI_SEMI] = ACTIONS(2559), - [anon_sym_PIPE_AMP] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [sym__special_characters] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2559), - [anon_sym_DOLLAR] = ACTIONS(2559), - [sym_raw_string] = ACTIONS(2559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2559), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2559), - [anon_sym_BQUOTE] = ACTIONS(2559), - [anon_sym_LT_LPAREN] = ACTIONS(2559), - [anon_sym_GT_LPAREN] = ACTIONS(2559), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2559), - [sym_word] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_LF] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2559), - }, - [1514] = { - [sym_concatenation] = STATE(660), - [sym_string] = STATE(655), - [sym_simple_expansion] = STATE(655), - [sym_string_expansion] = STATE(655), - [sym_expansion] = STATE(655), - [sym_command_substitution] = STATE(655), - [sym_process_substitution] = STATE(655), - [aux_sym_for_statement_repeat1] = STATE(1269), - [anon_sym_RPAREN] = ACTIONS(4664), - [sym__special_characters] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1287), - [sym_raw_string] = ACTIONS(1289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LT_LPAREN] = ACTIONS(1297), - [anon_sym_GT_LPAREN] = ACTIONS(1297), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1299), - }, - [1515] = { - [sym__concat] = ACTIONS(3283), - [sym_variable_name] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [sym__special_characters] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_DOLLAR] = ACTIONS(3285), - [sym_raw_string] = ACTIONS(3285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), - [anon_sym_BQUOTE] = ACTIONS(3285), - [anon_sym_LT_LPAREN] = ACTIONS(3285), - [anon_sym_GT_LPAREN] = ACTIONS(3285), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3285), - [sym_word] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - }, - [1516] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4666), + [1445] = { + [anon_sym_RBRACE] = ACTIONS(4556), [sym_comment] = ACTIONS(56), }, - [1517] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4668), + [1446] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2132), + [anon_sym_RBRACE] = ACTIONS(4558), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1447] = { + [sym_file_descriptor] = ACTIONS(3357), + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [anon_sym_EQ_TILDE] = ACTIONS(3359), + [anon_sym_EQ_EQ] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_AMP_GT] = ACTIONS(3359), + [anon_sym_AMP_GT_GT] = ACTIONS(3359), + [anon_sym_LT_AMP] = ACTIONS(3359), + [anon_sym_GT_AMP] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(3359), + [anon_sym_LT_LT_DASH] = ACTIONS(3359), + [anon_sym_LT_LT_LT] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), + }, + [1448] = { + [sym_concatenation] = STATE(2135), + [sym_string] = STATE(2134), + [sym_simple_expansion] = STATE(2134), + [sym_string_expansion] = STATE(2134), + [sym_expansion] = STATE(2134), + [sym_command_substitution] = STATE(2134), + [sym_process_substitution] = STATE(2134), + [anon_sym_RBRACE] = ACTIONS(4556), + [sym__special_characters] = ACTIONS(4560), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(4562), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4564), }, - [1518] = { - [anon_sym_RBRACE] = ACTIONS(4668), - [sym_comment] = ACTIONS(56), - }, - [1519] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2192), - [anon_sym_RBRACE] = ACTIONS(4670), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [1449] = { + [sym_file_descriptor] = ACTIONS(3402), + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_RPAREN] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_EQ_TILDE] = ACTIONS(3404), + [anon_sym_EQ_EQ] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_GT] = ACTIONS(3404), + [anon_sym_GT_GT] = ACTIONS(3404), + [anon_sym_AMP_GT] = ACTIONS(3404), + [anon_sym_AMP_GT_GT] = ACTIONS(3404), + [anon_sym_LT_AMP] = ACTIONS(3404), + [anon_sym_GT_AMP] = ACTIONS(3404), + [anon_sym_LT_LT] = ACTIONS(3404), + [anon_sym_LT_LT_DASH] = ACTIONS(3404), + [anon_sym_LT_LT_LT] = ACTIONS(3404), + [sym__special_characters] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_DOLLAR] = ACTIONS(3404), + [sym_raw_string] = ACTIONS(3404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), + [anon_sym_BQUOTE] = ACTIONS(3404), + [anon_sym_LT_LPAREN] = ACTIONS(3404), + [anon_sym_GT_LPAREN] = ACTIONS(3404), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), }, - [1520] = { - [sym__concat] = ACTIONS(3347), - [sym_variable_name] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [sym__special_characters] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3349), - [sym_raw_string] = ACTIONS(3349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), - [anon_sym_BQUOTE] = ACTIONS(3349), - [anon_sym_LT_LPAREN] = ACTIONS(3349), - [anon_sym_GT_LPAREN] = ACTIONS(3349), + [1450] = { [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3349), - [sym_word] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), + [sym_regex_without_right_brace] = ACTIONS(4566), }, - [1521] = { - [sym_concatenation] = STATE(2195), - [sym_string] = STATE(2194), - [sym_simple_expansion] = STATE(2194), - [sym_string_expansion] = STATE(2194), - [sym_expansion] = STATE(2194), - [sym_command_substitution] = STATE(2194), - [sym_process_substitution] = STATE(2194), - [anon_sym_RBRACE] = ACTIONS(4668), - [sym__special_characters] = ACTIONS(4672), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(4674), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4676), - }, - [1522] = { - [sym__concat] = ACTIONS(3392), - [sym_variable_name] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [sym__special_characters] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_DOLLAR] = ACTIONS(3394), - [sym_raw_string] = ACTIONS(3394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), - [anon_sym_BQUOTE] = ACTIONS(3394), - [anon_sym_LT_LPAREN] = ACTIONS(3394), - [anon_sym_GT_LPAREN] = ACTIONS(3394), + [1451] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4568), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3394), - [sym_word] = ACTIONS(3394), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), + [sym_word] = ACTIONS(866), }, - [1523] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4678), - }, - [1524] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4680), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1525] = { - [sym__concat] = ACTIONS(3400), - [sym_variable_name] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(3402), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3402), - [sym_word] = ACTIONS(3402), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), - }, - [1526] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4682), - }, - [1527] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4684), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1528] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4686), - }, - [1529] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4668), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1530] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2202), - [anon_sym_RBRACE] = ACTIONS(4688), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1531] = { - [sym__concat] = ACTIONS(3412), - [sym_variable_name] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_DOLLAR] = ACTIONS(3414), - [sym_raw_string] = ACTIONS(3414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), - [anon_sym_BQUOTE] = ACTIONS(3414), - [anon_sym_LT_LPAREN] = ACTIONS(3414), - [anon_sym_GT_LPAREN] = ACTIONS(3414), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3414), - [sym_word] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), - }, - [1532] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2204), - [anon_sym_RBRACE] = ACTIONS(4690), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1533] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [sym__special_characters] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_DOLLAR] = ACTIONS(3285), - [sym_raw_string] = ACTIONS(3285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), - [anon_sym_BQUOTE] = ACTIONS(3285), - [anon_sym_LT_LPAREN] = ACTIONS(3285), - [anon_sym_GT_LPAREN] = ACTIONS(3285), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3285), - [sym_word] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - }, - [1534] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4692), - [sym_comment] = ACTIONS(56), - }, - [1535] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4694), - [sym_comment] = ACTIONS(56), - }, - [1536] = { - [anon_sym_RBRACE] = ACTIONS(4694), - [sym_comment] = ACTIONS(56), - }, - [1537] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2208), - [anon_sym_RBRACE] = ACTIONS(4696), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1538] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [sym__special_characters] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3349), - [sym_raw_string] = ACTIONS(3349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), - [anon_sym_BQUOTE] = ACTIONS(3349), - [anon_sym_LT_LPAREN] = ACTIONS(3349), - [anon_sym_GT_LPAREN] = ACTIONS(3349), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3349), - [sym_word] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - }, - [1539] = { - [sym_concatenation] = STATE(2211), - [sym_string] = STATE(2210), - [sym_simple_expansion] = STATE(2210), - [sym_string_expansion] = STATE(2210), - [sym_expansion] = STATE(2210), - [sym_command_substitution] = STATE(2210), - [sym_process_substitution] = STATE(2210), - [anon_sym_RBRACE] = ACTIONS(4694), - [sym__special_characters] = ACTIONS(4698), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(4700), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4702), - }, - [1540] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [sym__special_characters] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_DOLLAR] = ACTIONS(3394), - [sym_raw_string] = ACTIONS(3394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), - [anon_sym_BQUOTE] = ACTIONS(3394), - [anon_sym_LT_LPAREN] = ACTIONS(3394), - [anon_sym_GT_LPAREN] = ACTIONS(3394), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3394), - [sym_word] = ACTIONS(3394), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), - }, - [1541] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4704), - }, - [1542] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4706), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1543] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(3402), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3402), - [sym_word] = ACTIONS(3402), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), - }, - [1544] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4708), - }, - [1545] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4710), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1546] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4712), - }, - [1547] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4694), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1548] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2218), - [anon_sym_RBRACE] = ACTIONS(4714), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1549] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_DOLLAR] = ACTIONS(3414), - [sym_raw_string] = ACTIONS(3414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), - [anon_sym_BQUOTE] = ACTIONS(3414), - [anon_sym_LT_LPAREN] = ACTIONS(3414), - [anon_sym_GT_LPAREN] = ACTIONS(3414), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3414), - [sym_word] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), - }, - [1550] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2220), - [anon_sym_RBRACE] = ACTIONS(4716), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1551] = { - [sym_file_descriptor] = ACTIONS(3283), - [sym__concat] = ACTIONS(3283), - [sym_variable_name] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(4602), - [anon_sym_GT] = ACTIONS(4602), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_AMP_GT] = ACTIONS(4602), - [anon_sym_AMP_GT_GT] = ACTIONS(3283), - [anon_sym_LT_AMP] = ACTIONS(3283), - [anon_sym_GT_AMP] = ACTIONS(3283), - [sym__special_characters] = ACTIONS(4602), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(4602), - [sym_raw_string] = ACTIONS(3283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), - [anon_sym_BQUOTE] = ACTIONS(3283), - [anon_sym_LT_LPAREN] = ACTIONS(3283), - [anon_sym_GT_LPAREN] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4602), - }, - [1552] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4718), - [sym_comment] = ACTIONS(56), - }, - [1553] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4720), - [sym_comment] = ACTIONS(56), - }, - [1554] = { - [anon_sym_RBRACE] = ACTIONS(4720), - [sym_comment] = ACTIONS(56), - }, - [1555] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2224), - [anon_sym_RBRACE] = ACTIONS(4722), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1556] = { - [sym_file_descriptor] = ACTIONS(3347), - [sym__concat] = ACTIONS(3347), - [sym_variable_name] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(4610), - [anon_sym_GT] = ACTIONS(4610), - [anon_sym_GT_GT] = ACTIONS(3347), - [anon_sym_AMP_GT] = ACTIONS(4610), - [anon_sym_AMP_GT_GT] = ACTIONS(3347), - [anon_sym_LT_AMP] = ACTIONS(3347), - [anon_sym_GT_AMP] = ACTIONS(3347), - [sym__special_characters] = ACTIONS(4610), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(3347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), - [anon_sym_BQUOTE] = ACTIONS(3347), - [anon_sym_LT_LPAREN] = ACTIONS(3347), - [anon_sym_GT_LPAREN] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4610), - }, - [1557] = { - [sym_concatenation] = STATE(2227), - [sym_string] = STATE(2226), - [sym_simple_expansion] = STATE(2226), - [sym_string_expansion] = STATE(2226), - [sym_expansion] = STATE(2226), - [sym_command_substitution] = STATE(2226), - [sym_process_substitution] = STATE(2226), - [anon_sym_RBRACE] = ACTIONS(4720), - [sym__special_characters] = ACTIONS(4724), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(4726), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4728), - }, - [1558] = { - [sym_file_descriptor] = ACTIONS(3392), - [sym__concat] = ACTIONS(3392), - [sym_variable_name] = ACTIONS(3392), - [anon_sym_LT] = ACTIONS(4618), - [anon_sym_GT] = ACTIONS(4618), - [anon_sym_GT_GT] = ACTIONS(3392), - [anon_sym_AMP_GT] = ACTIONS(4618), - [anon_sym_AMP_GT_GT] = ACTIONS(3392), - [anon_sym_LT_AMP] = ACTIONS(3392), - [anon_sym_GT_AMP] = ACTIONS(3392), - [sym__special_characters] = ACTIONS(4618), - [anon_sym_DQUOTE] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(4618), - [sym_raw_string] = ACTIONS(3392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), - [anon_sym_BQUOTE] = ACTIONS(3392), - [anon_sym_LT_LPAREN] = ACTIONS(3392), - [anon_sym_GT_LPAREN] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4618), - }, - [1559] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4730), - }, - [1560] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4732), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1561] = { - [sym_file_descriptor] = ACTIONS(3400), - [sym__concat] = ACTIONS(3400), - [sym_variable_name] = ACTIONS(3400), - [anon_sym_LT] = ACTIONS(4624), - [anon_sym_GT] = ACTIONS(4624), - [anon_sym_GT_GT] = ACTIONS(3400), - [anon_sym_AMP_GT] = ACTIONS(4624), - [anon_sym_AMP_GT_GT] = ACTIONS(3400), - [anon_sym_LT_AMP] = ACTIONS(3400), - [anon_sym_GT_AMP] = ACTIONS(3400), - [sym__special_characters] = ACTIONS(4624), - [anon_sym_DQUOTE] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(4624), - [sym_raw_string] = ACTIONS(3400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), - [anon_sym_BQUOTE] = ACTIONS(3400), - [anon_sym_LT_LPAREN] = ACTIONS(3400), - [anon_sym_GT_LPAREN] = ACTIONS(3400), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4624), - }, - [1562] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4734), - }, - [1563] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4736), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1564] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4738), - }, - [1565] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4720), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1566] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2234), - [anon_sym_RBRACE] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1567] = { - [sym_file_descriptor] = ACTIONS(3412), - [sym__concat] = ACTIONS(3412), - [sym_variable_name] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), + [1452] = { + [sym_file_descriptor] = ACTIONS(3410), + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_EQ_TILDE] = ACTIONS(3412), + [anon_sym_EQ_EQ] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), [anon_sym_GT_GT] = ACTIONS(3412), - [anon_sym_AMP_GT] = ACTIONS(4634), + [anon_sym_AMP_GT] = ACTIONS(3412), [anon_sym_AMP_GT_GT] = ACTIONS(3412), [anon_sym_LT_AMP] = ACTIONS(3412), [anon_sym_GT_AMP] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(4634), + [anon_sym_LT_LT] = ACTIONS(3412), + [anon_sym_LT_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT_LT] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(3412), [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(4634), + [anon_sym_DOLLAR] = ACTIONS(3412), [sym_raw_string] = ACTIONS(3412), [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), [anon_sym_BQUOTE] = ACTIONS(3412), [anon_sym_LT_LPAREN] = ACTIONS(3412), [anon_sym_GT_LPAREN] = ACTIONS(3412), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), + }, + [1453] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4570), + }, + [1454] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4572), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1455] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4574), + }, + [1456] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4556), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1457] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2142), + [anon_sym_RBRACE] = ACTIONS(4576), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1458] = { + [sym_file_descriptor] = ACTIONS(3422), + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_EQ_TILDE] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(3424), + [anon_sym_AMP_GT] = ACTIONS(3424), + [anon_sym_AMP_GT_GT] = ACTIONS(3424), + [anon_sym_LT_AMP] = ACTIONS(3424), + [anon_sym_GT_AMP] = ACTIONS(3424), + [anon_sym_LT_LT] = ACTIONS(3424), + [anon_sym_LT_LT_DASH] = ACTIONS(3424), + [anon_sym_LT_LT_LT] = ACTIONS(3424), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(3424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), + [anon_sym_BQUOTE] = ACTIONS(3424), + [anon_sym_LT_LPAREN] = ACTIONS(3424), + [anon_sym_GT_LPAREN] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), + }, + [1459] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2144), + [anon_sym_RBRACE] = ACTIONS(4578), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1460] = { + [sym_file_redirect] = STATE(1882), + [sym_file_descriptor] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_RPAREN] = ACTIONS(2794), + [anon_sym_SEMI_SEMI] = ACTIONS(2794), + [anon_sym_PIPE_AMP] = ACTIONS(2794), + [anon_sym_AMP_AMP] = ACTIONS(2794), + [anon_sym_PIPE_PIPE] = ACTIONS(2794), + [anon_sym_LT] = ACTIONS(2822), + [anon_sym_GT] = ACTIONS(2822), + [anon_sym_GT_GT] = ACTIONS(2822), + [anon_sym_AMP_GT] = ACTIONS(2822), + [anon_sym_AMP_GT_GT] = ACTIONS(2822), + [anon_sym_LT_AMP] = ACTIONS(2822), + [anon_sym_GT_AMP] = ACTIONS(2822), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_LF] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + }, + [1461] = { + [aux_sym_concatenation_repeat1] = STATE(1464), + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(3006), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4044), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [anon_sym_PIPE_AMP] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_GT_GT] = ACTIONS(4044), + [anon_sym_AMP_GT] = ACTIONS(4044), + [anon_sym_AMP_GT_GT] = ACTIONS(4044), + [anon_sym_LT_AMP] = ACTIONS(4044), + [anon_sym_GT_AMP] = ACTIONS(4044), + [anon_sym_LT_LT] = ACTIONS(4044), + [anon_sym_LT_LT_DASH] = ACTIONS(4044), + [anon_sym_LT_LT_LT] = ACTIONS(4044), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4044), + }, + [1462] = { + [aux_sym_concatenation_repeat1] = STATE(1464), + [sym_file_descriptor] = ACTIONS(1245), + [sym__concat] = ACTIONS(3006), + [anon_sym_PIPE] = ACTIONS(4046), + [anon_sym_RPAREN] = ACTIONS(4046), + [anon_sym_SEMI_SEMI] = ACTIONS(4046), + [anon_sym_PIPE_AMP] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_GT] = ACTIONS(4046), + [anon_sym_GT_GT] = ACTIONS(4046), + [anon_sym_AMP_GT] = ACTIONS(4046), + [anon_sym_AMP_GT_GT] = ACTIONS(4046), + [anon_sym_LT_AMP] = ACTIONS(4046), + [anon_sym_GT_AMP] = ACTIONS(4046), + [anon_sym_LT_LT] = ACTIONS(4046), + [anon_sym_LT_LT_DASH] = ACTIONS(4046), + [anon_sym_LT_LT_LT] = ACTIONS(4046), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_LF] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4046), + }, + [1463] = { + [sym_string] = STATE(2145), + [sym_simple_expansion] = STATE(2145), + [sym_string_expansion] = STATE(2145), + [sym_expansion] = STATE(2145), + [sym_command_substitution] = STATE(2145), + [sym_process_substitution] = STATE(2145), + [sym__special_characters] = ACTIONS(4580), + [anon_sym_DQUOTE] = ACTIONS(1529), + [anon_sym_DOLLAR] = ACTIONS(1531), + [sym_raw_string] = ACTIONS(4582), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1535), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1537), + [anon_sym_BQUOTE] = ACTIONS(1539), + [anon_sym_LT_LPAREN] = ACTIONS(1541), + [anon_sym_GT_LPAREN] = ACTIONS(1541), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4634), + [sym_word] = ACTIONS(4580), }, - [1568] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2236), - [anon_sym_RBRACE] = ACTIONS(4742), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [1464] = { + [aux_sym_concatenation_repeat1] = STATE(2146), + [sym_file_descriptor] = ACTIONS(790), + [sym__concat] = ACTIONS(3006), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_AMP_GT] = ACTIONS(792), + [anon_sym_AMP_GT_GT] = ACTIONS(792), + [anon_sym_LT_AMP] = ACTIONS(792), + [anon_sym_GT_AMP] = ACTIONS(792), + [anon_sym_LT_LT] = ACTIONS(792), + [anon_sym_LT_LT_DASH] = ACTIONS(792), + [anon_sym_LT_LT_LT] = ACTIONS(792), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), }, - [1569] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_DOLLAR] = ACTIONS(3285), - [sym__string_content] = ACTIONS(4602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), - [anon_sym_BQUOTE] = ACTIONS(3285), + [1465] = { + [sym_file_descriptor] = ACTIONS(794), + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(796), + [anon_sym_GT_GT] = ACTIONS(796), + [anon_sym_AMP_GT] = ACTIONS(796), + [anon_sym_AMP_GT_GT] = ACTIONS(796), + [anon_sym_LT_AMP] = ACTIONS(796), + [anon_sym_GT_AMP] = ACTIONS(796), + [anon_sym_LT_LT] = ACTIONS(796), + [anon_sym_LT_LT_DASH] = ACTIONS(796), + [anon_sym_LT_LT_LT] = ACTIONS(796), [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), }, - [1570] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4744), - [sym_comment] = ACTIONS(56), - }, - [1571] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4746), - [sym_comment] = ACTIONS(56), - }, - [1572] = { - [anon_sym_RBRACE] = ACTIONS(4746), - [sym_comment] = ACTIONS(56), - }, - [1573] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2240), - [anon_sym_RBRACE] = ACTIONS(4748), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1574] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3349), - [sym__string_content] = ACTIONS(4610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), - [anon_sym_BQUOTE] = ACTIONS(3349), - [sym_comment] = ACTIONS(182), - }, - [1575] = { - [sym_concatenation] = STATE(2243), - [sym_string] = STATE(2242), - [sym_simple_expansion] = STATE(2242), - [sym_string_expansion] = STATE(2242), - [sym_expansion] = STATE(2242), - [sym_command_substitution] = STATE(2242), - [sym_process_substitution] = STATE(2242), - [anon_sym_RBRACE] = ACTIONS(4746), - [sym__special_characters] = ACTIONS(4750), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(4752), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4754), - }, - [1576] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_DOLLAR] = ACTIONS(3394), - [sym__string_content] = ACTIONS(4618), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), - [anon_sym_BQUOTE] = ACTIONS(3394), - [sym_comment] = ACTIONS(182), - }, - [1577] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4756), - }, - [1578] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4758), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1579] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(3402), - [sym__string_content] = ACTIONS(4624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - }, - [1580] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4760), - }, - [1581] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4762), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1582] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4764), - }, - [1583] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4746), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1584] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2250), - [anon_sym_RBRACE] = ACTIONS(4766), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1585] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_DOLLAR] = ACTIONS(3414), - [sym__string_content] = ACTIONS(4634), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), - [anon_sym_BQUOTE] = ACTIONS(3414), - [sym_comment] = ACTIONS(182), - }, - [1586] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2252), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1587] = { - [sym_string] = STATE(1227), - [sym_simple_expansion] = STATE(1227), - [sym_string_expansion] = STATE(1227), - [sym_expansion] = STATE(1227), - [sym_command_substitution] = STATE(1227), - [sym_process_substitution] = STATE(1227), - [anon_sym_RBRACK] = ACTIONS(4770), - [sym__special_characters] = ACTIONS(2511), - [anon_sym_DQUOTE] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_raw_string] = ACTIONS(2513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2515), - }, - [1588] = { - [sym__concat] = ACTIONS(4772), - [anon_sym_RBRACE] = ACTIONS(2519), - [anon_sym_EQ] = ACTIONS(4774), - [sym__special_characters] = ACTIONS(4776), - [anon_sym_DQUOTE] = ACTIONS(2519), - [anon_sym_DOLLAR] = ACTIONS(4774), - [sym_raw_string] = ACTIONS(2519), - [anon_sym_POUND] = ACTIONS(2519), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2519), - [aux_sym_SLASH] = ACTIONS(2519), - [anon_sym_COLON] = ACTIONS(4774), - [anon_sym_COLON_QMARK] = ACTIONS(4774), - [anon_sym_COLON_DASH] = ACTIONS(4774), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_DASH] = ACTIONS(4774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2519), - [anon_sym_BQUOTE] = ACTIONS(2519), - [anon_sym_LT_LPAREN] = ACTIONS(2519), - [anon_sym_GT_LPAREN] = ACTIONS(2519), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4776), - }, - [1589] = { - [sym_string] = STATE(1227), - [sym_simple_expansion] = STATE(1227), - [sym_string_expansion] = STATE(1227), - [sym_expansion] = STATE(1227), - [sym_command_substitution] = STATE(1227), - [sym_process_substitution] = STATE(1227), - [anon_sym_RBRACK] = ACTIONS(4778), - [sym__special_characters] = ACTIONS(2511), - [anon_sym_DQUOTE] = ACTIONS(402), - [anon_sym_DOLLAR] = ACTIONS(404), - [sym_raw_string] = ACTIONS(2513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), - [anon_sym_BQUOTE] = ACTIONS(412), - [anon_sym_LT_LPAREN] = ACTIONS(414), - [anon_sym_GT_LPAREN] = ACTIONS(414), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2515), - }, - [1590] = { - [sym__concat] = ACTIONS(4780), - [anon_sym_RBRACE] = ACTIONS(2529), - [anon_sym_EQ] = ACTIONS(4782), - [sym__special_characters] = ACTIONS(4784), - [anon_sym_DQUOTE] = ACTIONS(2529), - [anon_sym_DOLLAR] = ACTIONS(4782), - [sym_raw_string] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(2529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2529), - [aux_sym_SLASH] = ACTIONS(2529), - [anon_sym_COLON] = ACTIONS(4782), - [anon_sym_COLON_QMARK] = ACTIONS(4782), - [anon_sym_COLON_DASH] = ACTIONS(4782), - [anon_sym_PERCENT] = ACTIONS(4782), - [anon_sym_DASH] = ACTIONS(4782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2529), - [anon_sym_BQUOTE] = ACTIONS(2529), - [anon_sym_LT_LPAREN] = ACTIONS(2529), - [anon_sym_GT_LPAREN] = ACTIONS(2529), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4784), - }, - [1591] = { - [anon_sym_RBRACK] = ACTIONS(4778), - [sym_comment] = ACTIONS(56), - }, - [1592] = { - [sym_string] = STATE(2257), - [sym_simple_expansion] = STATE(2257), - [sym_string_expansion] = STATE(2257), - [sym_expansion] = STATE(2257), - [sym_command_substitution] = STATE(2257), - [sym_process_substitution] = STATE(2257), - [sym__special_characters] = ACTIONS(4786), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(4788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4786), - }, - [1593] = { - [sym_file_descriptor] = ACTIONS(4790), - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_EQ_TILDE] = ACTIONS(4792), - [anon_sym_EQ_EQ] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_AMP_GT] = ACTIONS(4792), - [anon_sym_AMP_GT_GT] = ACTIONS(4792), - [anon_sym_LT_AMP] = ACTIONS(4792), - [anon_sym_GT_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4792), - [anon_sym_LT_LT_DASH] = ACTIONS(4792), - [anon_sym_LT_LT_LT] = ACTIONS(4792), - [sym__special_characters] = ACTIONS(4792), - [anon_sym_DQUOTE] = ACTIONS(4792), - [anon_sym_DOLLAR] = ACTIONS(4792), - [sym_raw_string] = ACTIONS(4792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), - [anon_sym_BQUOTE] = ACTIONS(4792), - [anon_sym_LT_LPAREN] = ACTIONS(4792), - [anon_sym_GT_LPAREN] = ACTIONS(4792), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4792), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - }, - [1594] = { - [aux_sym_concatenation_repeat1] = STATE(2258), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(788), - [sym_comment] = ACTIONS(56), - }, - [1595] = { - [sym__concat] = ACTIONS(792), - [anon_sym_RBRACE] = ACTIONS(792), - [sym_comment] = ACTIONS(56), - }, - [1596] = { + [1466] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(4794), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(4584), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -49066,249 +46796,2626 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, + [1467] = { + [sym_file_descriptor] = ACTIONS(826), + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(828), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(828), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [anon_sym_LT_LT] = ACTIONS(828), + [anon_sym_LT_LT_DASH] = ACTIONS(828), + [anon_sym_LT_LT_LT] = ACTIONS(828), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), + }, + [1468] = { + [sym_file_descriptor] = ACTIONS(830), + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_RPAREN] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_AMP_GT] = ACTIONS(832), + [anon_sym_AMP_GT_GT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(832), + [anon_sym_GT_AMP] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(832), + [anon_sym_LT_LT_DASH] = ACTIONS(832), + [anon_sym_LT_LT_LT] = ACTIONS(832), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), + }, + [1469] = { + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_AMP_GT] = ACTIONS(836), + [anon_sym_AMP_GT_GT] = ACTIONS(836), + [anon_sym_LT_AMP] = ACTIONS(836), + [anon_sym_GT_AMP] = ACTIONS(836), + [anon_sym_LT_LT] = ACTIONS(836), + [anon_sym_LT_LT_DASH] = ACTIONS(836), + [anon_sym_LT_LT_LT] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), + }, + [1470] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(4586), + [sym_comment] = ACTIONS(56), + }, + [1471] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2151), + [anon_sym_RBRACE] = ACTIONS(4588), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4590), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1472] = { + [sym_subscript] = STATE(2155), + [sym_variable_name] = ACTIONS(4592), + [anon_sym_DOLLAR] = ACTIONS(4594), + [anon_sym_DASH] = ACTIONS(4594), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4596), + [anon_sym_STAR] = ACTIONS(4594), + [anon_sym_AT] = ACTIONS(4594), + [anon_sym_QMARK] = ACTIONS(4594), + [anon_sym_0] = ACTIONS(4598), + [anon_sym__] = ACTIONS(4598), + }, + [1473] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2158), + [anon_sym_RBRACE] = ACTIONS(4600), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4602), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1474] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2161), + [anon_sym_RBRACE] = ACTIONS(4604), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4606), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1475] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4608), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [1476] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4608), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1477] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(4608), + [sym_comment] = ACTIONS(56), + }, + [1478] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(4608), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1479] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4610), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [1480] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4610), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1481] = { + [anon_sym_esac] = ACTIONS(4612), + [anon_sym_PIPE] = ACTIONS(4612), + [anon_sym_RPAREN] = ACTIONS(4612), + [anon_sym_SEMI_SEMI] = ACTIONS(4612), + [anon_sym_PIPE_AMP] = ACTIONS(4612), + [anon_sym_AMP_AMP] = ACTIONS(4612), + [anon_sym_PIPE_PIPE] = ACTIONS(4612), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4612), + [anon_sym_LF] = ACTIONS(4612), + [anon_sym_AMP] = ACTIONS(4612), + }, + [1482] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(828), + [sym_file_descriptor] = ACTIONS(558), + [anon_sym_PIPE] = ACTIONS(4106), + [anon_sym_RPAREN] = ACTIONS(4106), + [anon_sym_SEMI_SEMI] = ACTIONS(4106), + [anon_sym_PIPE_AMP] = ACTIONS(4106), + [anon_sym_AMP_AMP] = ACTIONS(4106), + [anon_sym_PIPE_PIPE] = ACTIONS(4106), + [anon_sym_LT] = ACTIONS(562), + [anon_sym_GT] = ACTIONS(562), + [anon_sym_GT_GT] = ACTIONS(562), + [anon_sym_AMP_GT] = ACTIONS(562), + [anon_sym_AMP_GT_GT] = ACTIONS(562), + [anon_sym_LT_AMP] = ACTIONS(562), + [anon_sym_GT_AMP] = ACTIONS(562), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(564), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym_LF] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4106), + }, + [1483] = { + [sym__concat] = ACTIONS(3293), + [anon_sym_EQ_TILDE] = ACTIONS(4614), + [anon_sym_EQ_EQ] = ACTIONS(4614), + [anon_sym_RBRACK] = ACTIONS(3293), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4614), + [sym_raw_string] = ACTIONS(3293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3293), + [anon_sym_LT_LPAREN] = ACTIONS(3293), + [anon_sym_GT_LPAREN] = ACTIONS(3293), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3295), + }, + [1484] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4616), + [sym_comment] = ACTIONS(56), + }, + [1485] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4618), + [sym_comment] = ACTIONS(56), + }, + [1486] = { + [anon_sym_RBRACE] = ACTIONS(4618), + [sym_comment] = ACTIONS(56), + }, + [1487] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2167), + [anon_sym_RBRACE] = ACTIONS(4620), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1488] = { + [sym__concat] = ACTIONS(3357), + [anon_sym_EQ_TILDE] = ACTIONS(4622), + [anon_sym_EQ_EQ] = ACTIONS(4622), + [anon_sym_RBRACK] = ACTIONS(3357), + [sym__special_characters] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(4622), + [sym_raw_string] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3357), + [anon_sym_LT_LPAREN] = ACTIONS(3357), + [anon_sym_GT_LPAREN] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3359), + }, + [1489] = { + [sym_concatenation] = STATE(2170), + [sym_string] = STATE(2169), + [sym_simple_expansion] = STATE(2169), + [sym_string_expansion] = STATE(2169), + [sym_expansion] = STATE(2169), + [sym_command_substitution] = STATE(2169), + [sym_process_substitution] = STATE(2169), + [anon_sym_RBRACE] = ACTIONS(4618), + [sym__special_characters] = ACTIONS(4624), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(4626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4628), + }, + [1490] = { + [sym__concat] = ACTIONS(3402), + [anon_sym_EQ_TILDE] = ACTIONS(4630), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_RBRACK] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(4630), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3404), + }, + [1491] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4632), + }, + [1492] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4634), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1493] = { + [sym__concat] = ACTIONS(3410), + [anon_sym_EQ_TILDE] = ACTIONS(4636), + [anon_sym_EQ_EQ] = ACTIONS(4636), + [anon_sym_RBRACK] = ACTIONS(3410), + [sym__special_characters] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_DOLLAR] = ACTIONS(4636), + [sym_raw_string] = ACTIONS(3410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), + [anon_sym_BQUOTE] = ACTIONS(3410), + [anon_sym_LT_LPAREN] = ACTIONS(3410), + [anon_sym_GT_LPAREN] = ACTIONS(3410), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3412), + }, + [1494] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4638), + }, + [1495] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4640), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1496] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4642), + }, + [1497] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4618), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1498] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2177), + [anon_sym_RBRACE] = ACTIONS(4644), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1499] = { + [sym__concat] = ACTIONS(3422), + [anon_sym_EQ_TILDE] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_RBRACK] = ACTIONS(3422), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_DOLLAR] = ACTIONS(4646), + [sym_raw_string] = ACTIONS(3422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), + [anon_sym_BQUOTE] = ACTIONS(3422), + [anon_sym_LT_LPAREN] = ACTIONS(3422), + [anon_sym_GT_LPAREN] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3424), + }, + [1500] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2179), + [anon_sym_RBRACE] = ACTIONS(4648), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1501] = { + [sym__concat] = ACTIONS(3293), + [anon_sym_EQ_TILDE] = ACTIONS(4614), + [anon_sym_EQ_EQ] = ACTIONS(4614), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3293), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4614), + [sym_raw_string] = ACTIONS(3293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3293), + [anon_sym_LT_LPAREN] = ACTIONS(3293), + [anon_sym_GT_LPAREN] = ACTIONS(3293), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3295), + }, + [1502] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4650), + [sym_comment] = ACTIONS(56), + }, + [1503] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4652), + [sym_comment] = ACTIONS(56), + }, + [1504] = { + [anon_sym_RBRACE] = ACTIONS(4652), + [sym_comment] = ACTIONS(56), + }, + [1505] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2183), + [anon_sym_RBRACE] = ACTIONS(4654), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1506] = { + [sym__concat] = ACTIONS(3357), + [anon_sym_EQ_TILDE] = ACTIONS(4622), + [anon_sym_EQ_EQ] = ACTIONS(4622), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3357), + [sym__special_characters] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(4622), + [sym_raw_string] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3357), + [anon_sym_LT_LPAREN] = ACTIONS(3357), + [anon_sym_GT_LPAREN] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3359), + }, + [1507] = { + [sym_concatenation] = STATE(2186), + [sym_string] = STATE(2185), + [sym_simple_expansion] = STATE(2185), + [sym_string_expansion] = STATE(2185), + [sym_expansion] = STATE(2185), + [sym_command_substitution] = STATE(2185), + [sym_process_substitution] = STATE(2185), + [anon_sym_RBRACE] = ACTIONS(4652), + [sym__special_characters] = ACTIONS(4656), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(4658), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4660), + }, + [1508] = { + [sym__concat] = ACTIONS(3402), + [anon_sym_EQ_TILDE] = ACTIONS(4630), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(4630), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3404), + }, + [1509] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4662), + }, + [1510] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4664), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1511] = { + [sym__concat] = ACTIONS(3410), + [anon_sym_EQ_TILDE] = ACTIONS(4636), + [anon_sym_EQ_EQ] = ACTIONS(4636), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3410), + [sym__special_characters] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_DOLLAR] = ACTIONS(4636), + [sym_raw_string] = ACTIONS(3410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), + [anon_sym_BQUOTE] = ACTIONS(3410), + [anon_sym_LT_LPAREN] = ACTIONS(3410), + [anon_sym_GT_LPAREN] = ACTIONS(3410), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3412), + }, + [1512] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4666), + }, + [1513] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4668), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1514] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4670), + }, + [1515] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4652), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1516] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2193), + [anon_sym_RBRACE] = ACTIONS(4672), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1517] = { + [sym__concat] = ACTIONS(3422), + [anon_sym_EQ_TILDE] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3422), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_DOLLAR] = ACTIONS(4646), + [sym_raw_string] = ACTIONS(3422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), + [anon_sym_BQUOTE] = ACTIONS(3422), + [anon_sym_LT_LPAREN] = ACTIONS(3422), + [anon_sym_GT_LPAREN] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3424), + }, + [1518] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2195), + [anon_sym_RBRACE] = ACTIONS(4674), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1519] = { + [sym_variable_name] = ACTIONS(2563), + [anon_sym_PIPE] = ACTIONS(2565), + [anon_sym_RPAREN] = ACTIONS(2565), + [anon_sym_SEMI_SEMI] = ACTIONS(2565), + [anon_sym_PIPE_AMP] = ACTIONS(2565), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE_PIPE] = ACTIONS(2565), + [sym__special_characters] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), + [anon_sym_DOLLAR] = ACTIONS(2565), + [sym_raw_string] = ACTIONS(2565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2565), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2565), + [anon_sym_BQUOTE] = ACTIONS(2565), + [anon_sym_LT_LPAREN] = ACTIONS(2565), + [anon_sym_GT_LPAREN] = ACTIONS(2565), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2565), + [sym_word] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_LF] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2565), + }, + [1520] = { + [sym_concatenation] = STATE(661), + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [aux_sym_for_statement_repeat1] = STATE(1273), + [anon_sym_RPAREN] = ACTIONS(4676), + [sym__special_characters] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1289), + [sym_raw_string] = ACTIONS(1291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), + [anon_sym_BQUOTE] = ACTIONS(1297), + [anon_sym_LT_LPAREN] = ACTIONS(1299), + [anon_sym_GT_LPAREN] = ACTIONS(1299), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1301), + }, + [1521] = { + [sym__concat] = ACTIONS(3293), + [sym_variable_name] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), + [anon_sym_BQUOTE] = ACTIONS(3295), + [anon_sym_LT_LPAREN] = ACTIONS(3295), + [anon_sym_GT_LPAREN] = ACTIONS(3295), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3295), + [sym_word] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + }, + [1522] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4678), + [sym_comment] = ACTIONS(56), + }, + [1523] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4680), + [sym_comment] = ACTIONS(56), + }, + [1524] = { + [anon_sym_RBRACE] = ACTIONS(4680), + [sym_comment] = ACTIONS(56), + }, + [1525] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2200), + [anon_sym_RBRACE] = ACTIONS(4682), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1526] = { + [sym__concat] = ACTIONS(3357), + [sym_variable_name] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3359), + [sym_word] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), + }, + [1527] = { + [sym_concatenation] = STATE(2203), + [sym_string] = STATE(2202), + [sym_simple_expansion] = STATE(2202), + [sym_string_expansion] = STATE(2202), + [sym_expansion] = STATE(2202), + [sym_command_substitution] = STATE(2202), + [sym_process_substitution] = STATE(2202), + [anon_sym_RBRACE] = ACTIONS(4680), + [sym__special_characters] = ACTIONS(4684), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(4686), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4688), + }, + [1528] = { + [sym__concat] = ACTIONS(3402), + [sym_variable_name] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [sym__special_characters] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_DOLLAR] = ACTIONS(3404), + [sym_raw_string] = ACTIONS(3404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), + [anon_sym_BQUOTE] = ACTIONS(3404), + [anon_sym_LT_LPAREN] = ACTIONS(3404), + [anon_sym_GT_LPAREN] = ACTIONS(3404), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3404), + [sym_word] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), + }, + [1529] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4690), + }, + [1530] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1531] = { + [sym__concat] = ACTIONS(3410), + [sym_variable_name] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(3412), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3412), + [sym_word] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), + }, + [1532] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4694), + }, + [1533] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4696), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1534] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4698), + }, + [1535] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4680), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1536] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2210), + [anon_sym_RBRACE] = ACTIONS(4700), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1537] = { + [sym__concat] = ACTIONS(3422), + [sym_variable_name] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(3424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), + [anon_sym_BQUOTE] = ACTIONS(3424), + [anon_sym_LT_LPAREN] = ACTIONS(3424), + [anon_sym_GT_LPAREN] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3424), + [sym_word] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), + }, + [1538] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2212), + [anon_sym_RBRACE] = ACTIONS(4702), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1539] = { + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), + [anon_sym_BQUOTE] = ACTIONS(3295), + [anon_sym_LT_LPAREN] = ACTIONS(3295), + [anon_sym_GT_LPAREN] = ACTIONS(3295), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3295), + [sym_word] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + }, + [1540] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4704), + [sym_comment] = ACTIONS(56), + }, + [1541] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4706), + [sym_comment] = ACTIONS(56), + }, + [1542] = { + [anon_sym_RBRACE] = ACTIONS(4706), + [sym_comment] = ACTIONS(56), + }, + [1543] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2216), + [anon_sym_RBRACE] = ACTIONS(4708), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1544] = { + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3359), + [sym_word] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), + }, + [1545] = { + [sym_concatenation] = STATE(2219), + [sym_string] = STATE(2218), + [sym_simple_expansion] = STATE(2218), + [sym_string_expansion] = STATE(2218), + [sym_expansion] = STATE(2218), + [sym_command_substitution] = STATE(2218), + [sym_process_substitution] = STATE(2218), + [anon_sym_RBRACE] = ACTIONS(4706), + [sym__special_characters] = ACTIONS(4710), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(4712), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4714), + }, + [1546] = { + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [sym__special_characters] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_DOLLAR] = ACTIONS(3404), + [sym_raw_string] = ACTIONS(3404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), + [anon_sym_BQUOTE] = ACTIONS(3404), + [anon_sym_LT_LPAREN] = ACTIONS(3404), + [anon_sym_GT_LPAREN] = ACTIONS(3404), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3404), + [sym_word] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), + }, + [1547] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4716), + }, + [1548] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4718), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1549] = { + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(3412), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3412), + [sym_word] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), + }, + [1550] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4720), + }, + [1551] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1552] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4724), + }, + [1553] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4706), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1554] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2226), + [anon_sym_RBRACE] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1555] = { + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(3424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), + [anon_sym_BQUOTE] = ACTIONS(3424), + [anon_sym_LT_LPAREN] = ACTIONS(3424), + [anon_sym_GT_LPAREN] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3424), + [sym_word] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), + }, + [1556] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2228), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1557] = { + [sym_file_descriptor] = ACTIONS(3293), + [sym__concat] = ACTIONS(3293), + [sym_variable_name] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_GT_GT] = ACTIONS(3293), + [anon_sym_AMP_GT] = ACTIONS(4614), + [anon_sym_AMP_GT_GT] = ACTIONS(3293), + [anon_sym_LT_AMP] = ACTIONS(3293), + [anon_sym_GT_AMP] = ACTIONS(3293), + [sym__special_characters] = ACTIONS(4614), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4614), + [sym_raw_string] = ACTIONS(3293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3293), + [anon_sym_LT_LPAREN] = ACTIONS(3293), + [anon_sym_GT_LPAREN] = ACTIONS(3293), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4614), + }, + [1558] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4730), + [sym_comment] = ACTIONS(56), + }, + [1559] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4732), + [sym_comment] = ACTIONS(56), + }, + [1560] = { + [anon_sym_RBRACE] = ACTIONS(4732), + [sym_comment] = ACTIONS(56), + }, + [1561] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2232), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1562] = { + [sym_file_descriptor] = ACTIONS(3357), + [sym__concat] = ACTIONS(3357), + [sym_variable_name] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(4622), + [anon_sym_GT] = ACTIONS(4622), + [anon_sym_GT_GT] = ACTIONS(3357), + [anon_sym_AMP_GT] = ACTIONS(4622), + [anon_sym_AMP_GT_GT] = ACTIONS(3357), + [anon_sym_LT_AMP] = ACTIONS(3357), + [anon_sym_GT_AMP] = ACTIONS(3357), + [sym__special_characters] = ACTIONS(4622), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(4622), + [sym_raw_string] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3357), + [anon_sym_LT_LPAREN] = ACTIONS(3357), + [anon_sym_GT_LPAREN] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4622), + }, + [1563] = { + [sym_concatenation] = STATE(2235), + [sym_string] = STATE(2234), + [sym_simple_expansion] = STATE(2234), + [sym_string_expansion] = STATE(2234), + [sym_expansion] = STATE(2234), + [sym_command_substitution] = STATE(2234), + [sym_process_substitution] = STATE(2234), + [anon_sym_RBRACE] = ACTIONS(4732), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(4738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4740), + }, + [1564] = { + [sym_file_descriptor] = ACTIONS(3402), + [sym__concat] = ACTIONS(3402), + [sym_variable_name] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_GT] = ACTIONS(4630), + [anon_sym_AMP_GT_GT] = ACTIONS(3402), + [anon_sym_LT_AMP] = ACTIONS(3402), + [anon_sym_GT_AMP] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(4630), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4630), + }, + [1565] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4742), + }, + [1566] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4744), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1567] = { + [sym_file_descriptor] = ACTIONS(3410), + [sym__concat] = ACTIONS(3410), + [sym_variable_name] = ACTIONS(3410), + [anon_sym_LT] = ACTIONS(4636), + [anon_sym_GT] = ACTIONS(4636), + [anon_sym_GT_GT] = ACTIONS(3410), + [anon_sym_AMP_GT] = ACTIONS(4636), + [anon_sym_AMP_GT_GT] = ACTIONS(3410), + [anon_sym_LT_AMP] = ACTIONS(3410), + [anon_sym_GT_AMP] = ACTIONS(3410), + [sym__special_characters] = ACTIONS(4636), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_DOLLAR] = ACTIONS(4636), + [sym_raw_string] = ACTIONS(3410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), + [anon_sym_BQUOTE] = ACTIONS(3410), + [anon_sym_LT_LPAREN] = ACTIONS(3410), + [anon_sym_GT_LPAREN] = ACTIONS(3410), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4636), + }, + [1568] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4746), + }, + [1569] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1570] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4750), + }, + [1571] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1572] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2242), + [anon_sym_RBRACE] = ACTIONS(4752), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1573] = { + [sym_file_descriptor] = ACTIONS(3422), + [sym__concat] = ACTIONS(3422), + [sym_variable_name] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_GT_GT] = ACTIONS(3422), + [anon_sym_AMP_GT] = ACTIONS(4646), + [anon_sym_AMP_GT_GT] = ACTIONS(3422), + [anon_sym_LT_AMP] = ACTIONS(3422), + [anon_sym_GT_AMP] = ACTIONS(3422), + [sym__special_characters] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_DOLLAR] = ACTIONS(4646), + [sym_raw_string] = ACTIONS(3422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), + [anon_sym_BQUOTE] = ACTIONS(3422), + [anon_sym_LT_LPAREN] = ACTIONS(3422), + [anon_sym_GT_LPAREN] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4646), + }, + [1574] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2244), + [anon_sym_RBRACE] = ACTIONS(4754), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1575] = { + [sym__concat] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym__string_content] = ACTIONS(4614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), + [anon_sym_BQUOTE] = ACTIONS(3295), + [sym_comment] = ACTIONS(182), + }, + [1576] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4756), + [sym_comment] = ACTIONS(56), + }, + [1577] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4758), + [sym_comment] = ACTIONS(56), + }, + [1578] = { + [anon_sym_RBRACE] = ACTIONS(4758), + [sym_comment] = ACTIONS(56), + }, + [1579] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2248), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1580] = { + [sym__concat] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(3359), + [sym__string_content] = ACTIONS(4622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [sym_comment] = ACTIONS(182), + }, + [1581] = { + [sym_concatenation] = STATE(2251), + [sym_string] = STATE(2250), + [sym_simple_expansion] = STATE(2250), + [sym_string_expansion] = STATE(2250), + [sym_expansion] = STATE(2250), + [sym_command_substitution] = STATE(2250), + [sym_process_substitution] = STATE(2250), + [anon_sym_RBRACE] = ACTIONS(4758), + [sym__special_characters] = ACTIONS(4762), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(4764), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4766), + }, + [1582] = { + [sym__concat] = ACTIONS(3402), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_DOLLAR] = ACTIONS(3404), + [sym__string_content] = ACTIONS(4630), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), + [anon_sym_BQUOTE] = ACTIONS(3404), + [sym_comment] = ACTIONS(182), + }, + [1583] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4768), + }, + [1584] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4770), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1585] = { + [sym__concat] = ACTIONS(3410), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(3412), + [sym__string_content] = ACTIONS(4636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_comment] = ACTIONS(182), + }, + [1586] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4772), + }, + [1587] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4774), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1588] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4776), + }, + [1589] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4758), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1590] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2258), + [anon_sym_RBRACE] = ACTIONS(4778), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1591] = { + [sym__concat] = ACTIONS(3422), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym__string_content] = ACTIONS(4646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), + [anon_sym_BQUOTE] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + }, + [1592] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2260), + [anon_sym_RBRACE] = ACTIONS(4780), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1593] = { + [sym_string] = STATE(1231), + [sym_simple_expansion] = STATE(1231), + [sym_string_expansion] = STATE(1231), + [sym_expansion] = STATE(1231), + [sym_command_substitution] = STATE(1231), + [sym_process_substitution] = STATE(1231), + [anon_sym_RBRACK] = ACTIONS(4782), + [sym__special_characters] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym_raw_string] = ACTIONS(2519), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(414), + [anon_sym_GT_LPAREN] = ACTIONS(414), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2521), + }, + [1594] = { + [sym__concat] = ACTIONS(4784), + [anon_sym_RBRACE] = ACTIONS(2525), + [anon_sym_EQ] = ACTIONS(4786), + [sym__special_characters] = ACTIONS(4788), + [anon_sym_DQUOTE] = ACTIONS(2525), + [anon_sym_DOLLAR] = ACTIONS(4786), + [sym_raw_string] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(2525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2525), + [aux_sym_SLASH] = ACTIONS(2525), + [anon_sym_COLON] = ACTIONS(4786), + [anon_sym_COLON_QMARK] = ACTIONS(4786), + [anon_sym_COLON_DASH] = ACTIONS(4786), + [anon_sym_PERCENT] = ACTIONS(4786), + [anon_sym_DASH] = ACTIONS(4786), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2525), + [anon_sym_BQUOTE] = ACTIONS(2525), + [anon_sym_LT_LPAREN] = ACTIONS(2525), + [anon_sym_GT_LPAREN] = ACTIONS(2525), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4788), + }, + [1595] = { + [sym_string] = STATE(1231), + [sym_simple_expansion] = STATE(1231), + [sym_string_expansion] = STATE(1231), + [sym_expansion] = STATE(1231), + [sym_command_substitution] = STATE(1231), + [sym_process_substitution] = STATE(1231), + [anon_sym_RBRACK] = ACTIONS(4790), + [sym__special_characters] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(402), + [anon_sym_DOLLAR] = ACTIONS(404), + [sym_raw_string] = ACTIONS(2519), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(408), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(410), + [anon_sym_BQUOTE] = ACTIONS(412), + [anon_sym_LT_LPAREN] = ACTIONS(414), + [anon_sym_GT_LPAREN] = ACTIONS(414), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2521), + }, + [1596] = { + [sym__concat] = ACTIONS(4792), + [anon_sym_RBRACE] = ACTIONS(2535), + [anon_sym_EQ] = ACTIONS(4794), + [sym__special_characters] = ACTIONS(4796), + [anon_sym_DQUOTE] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(4794), + [sym_raw_string] = ACTIONS(2535), + [anon_sym_POUND] = ACTIONS(2535), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2535), + [aux_sym_SLASH] = ACTIONS(2535), + [anon_sym_COLON] = ACTIONS(4794), + [anon_sym_COLON_QMARK] = ACTIONS(4794), + [anon_sym_COLON_DASH] = ACTIONS(4794), + [anon_sym_PERCENT] = ACTIONS(4794), + [anon_sym_DASH] = ACTIONS(4794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2535), + [anon_sym_BQUOTE] = ACTIONS(2535), + [anon_sym_LT_LPAREN] = ACTIONS(2535), + [anon_sym_GT_LPAREN] = ACTIONS(2535), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4796), + }, [1597] = { - [sym__concat] = ACTIONS(824), - [anon_sym_RBRACE] = ACTIONS(824), + [anon_sym_RBRACK] = ACTIONS(4790), [sym_comment] = ACTIONS(56), }, [1598] = { - [sym__concat] = ACTIONS(828), - [anon_sym_RBRACE] = ACTIONS(828), + [sym_string] = STATE(2265), + [sym_simple_expansion] = STATE(2265), + [sym_string_expansion] = STATE(2265), + [sym_expansion] = STATE(2265), + [sym_command_substitution] = STATE(2265), + [sym_process_substitution] = STATE(2265), + [sym__special_characters] = ACTIONS(4798), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(4800), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4798), }, [1599] = { - [sym__concat] = ACTIONS(832), - [anon_sym_RBRACE] = ACTIONS(832), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(4802), + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_EQ_TILDE] = ACTIONS(4804), + [anon_sym_EQ_EQ] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_GT_GT] = ACTIONS(4804), + [anon_sym_AMP_GT] = ACTIONS(4804), + [anon_sym_AMP_GT_GT] = ACTIONS(4804), + [anon_sym_LT_AMP] = ACTIONS(4804), + [anon_sym_GT_AMP] = ACTIONS(4804), + [anon_sym_LT_LT] = ACTIONS(4804), + [anon_sym_LT_LT_DASH] = ACTIONS(4804), + [anon_sym_LT_LT_LT] = ACTIONS(4804), + [sym__special_characters] = ACTIONS(4804), + [anon_sym_DQUOTE] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4804), + [sym_raw_string] = ACTIONS(4804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), + [anon_sym_BQUOTE] = ACTIONS(4804), + [anon_sym_LT_LPAREN] = ACTIONS(4804), + [anon_sym_GT_LPAREN] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), }, [1600] = { - [sym_file_descriptor] = ACTIONS(4796), - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [anon_sym_EQ_TILDE] = ACTIONS(4798), - [anon_sym_EQ_EQ] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4798), - [anon_sym_GT] = ACTIONS(4798), - [anon_sym_GT_GT] = ACTIONS(4798), - [anon_sym_AMP_GT] = ACTIONS(4798), - [anon_sym_AMP_GT_GT] = ACTIONS(4798), - [anon_sym_LT_AMP] = ACTIONS(4798), - [anon_sym_GT_AMP] = ACTIONS(4798), - [anon_sym_LT_LT] = ACTIONS(4798), - [anon_sym_LT_LT_DASH] = ACTIONS(4798), - [anon_sym_LT_LT_LT] = ACTIONS(4798), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4798), - [anon_sym_DOLLAR] = ACTIONS(4798), - [sym_raw_string] = ACTIONS(4798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), - [anon_sym_BQUOTE] = ACTIONS(4798), - [anon_sym_LT_LPAREN] = ACTIONS(4798), - [anon_sym_GT_LPAREN] = ACTIONS(4798), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4798), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), + [aux_sym_concatenation_repeat1] = STATE(2266), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(790), + [sym_comment] = ACTIONS(56), }, [1601] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(4800), + [sym__concat] = ACTIONS(794), + [anon_sym_RBRACE] = ACTIONS(794), [sym_comment] = ACTIONS(56), }, [1602] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2263), - [anon_sym_RBRACE] = ACTIONS(4802), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4804), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(4806), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), }, [1603] = { - [sym_subscript] = STATE(2267), - [sym_variable_name] = ACTIONS(4806), - [anon_sym_DOLLAR] = ACTIONS(4808), - [anon_sym_DASH] = ACTIONS(4808), + [sym__concat] = ACTIONS(826), + [anon_sym_RBRACE] = ACTIONS(826), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4810), - [anon_sym_STAR] = ACTIONS(4808), - [anon_sym_AT] = ACTIONS(4808), - [anon_sym_QMARK] = ACTIONS(4808), - [anon_sym_0] = ACTIONS(4812), - [anon_sym__] = ACTIONS(4812), }, [1604] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2270), - [anon_sym_RBRACE] = ACTIONS(4814), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4816), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(830), + [anon_sym_RBRACE] = ACTIONS(830), + [sym_comment] = ACTIONS(56), }, [1605] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2273), - [anon_sym_RBRACE] = ACTIONS(4818), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4820), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(834), + [anon_sym_RBRACE] = ACTIONS(834), + [sym_comment] = ACTIONS(56), }, [1606] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4822), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(4808), + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [anon_sym_EQ_TILDE] = ACTIONS(4810), + [anon_sym_EQ_EQ] = ACTIONS(4810), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_GT_GT] = ACTIONS(4810), + [anon_sym_AMP_GT] = ACTIONS(4810), + [anon_sym_AMP_GT_GT] = ACTIONS(4810), + [anon_sym_LT_AMP] = ACTIONS(4810), + [anon_sym_GT_AMP] = ACTIONS(4810), + [anon_sym_LT_LT] = ACTIONS(4810), + [anon_sym_LT_LT_DASH] = ACTIONS(4810), + [anon_sym_LT_LT_LT] = ACTIONS(4810), + [sym__special_characters] = ACTIONS(4810), + [anon_sym_DQUOTE] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4810), + [sym_raw_string] = ACTIONS(4810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), + [anon_sym_BQUOTE] = ACTIONS(4810), + [anon_sym_LT_LPAREN] = ACTIONS(4810), + [anon_sym_GT_LPAREN] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), }, [1607] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4822), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(4812), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [1608] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(4822), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2271), + [anon_sym_RBRACE] = ACTIONS(4814), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4816), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1609] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(4822), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_subscript] = STATE(2275), + [sym_variable_name] = ACTIONS(4818), + [anon_sym_DOLLAR] = ACTIONS(4820), + [anon_sym_DASH] = ACTIONS(4820), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4822), + [anon_sym_STAR] = ACTIONS(4820), + [anon_sym_AT] = ACTIONS(4820), + [anon_sym_QMARK] = ACTIONS(4820), + [anon_sym_0] = ACTIONS(4824), + [anon_sym__] = ACTIONS(4824), }, [1610] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4824), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2278), + [anon_sym_RBRACE] = ACTIONS(4826), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4828), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1611] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2281), + [anon_sym_RBRACE] = ACTIONS(4830), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4832), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1612] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4834), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [1613] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4824), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4834), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -49328,508 +49435,424 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [1612] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_EQ] = ACTIONS(3056), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(3056), - [anon_sym_COLON_QMARK] = ACTIONS(3056), - [anon_sym_COLON_DASH] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1888), - }, - [1613] = { - [aux_sym_concatenation_repeat1] = STATE(1613), - [sym__concat] = ACTIONS(4826), - [anon_sym_RBRACE] = ACTIONS(1886), - [anon_sym_EQ] = ACTIONS(3056), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_COLON] = ACTIONS(3056), - [anon_sym_COLON_QMARK] = ACTIONS(3056), - [anon_sym_COLON_DASH] = ACTIONS(3056), - [anon_sym_PERCENT] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1888), - }, [1614] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1923), - [anon_sym_EQ] = ACTIONS(3061), - [sym__special_characters] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(1923), - [anon_sym_POUND] = ACTIONS(1923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), - [anon_sym_COLON] = ACTIONS(3061), - [anon_sym_COLON_QMARK] = ACTIONS(3061), - [anon_sym_COLON_DASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), - [anon_sym_BQUOTE] = ACTIONS(1923), - [anon_sym_LT_LPAREN] = ACTIONS(1923), - [anon_sym_GT_LPAREN] = ACTIONS(1923), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1925), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(4834), + [sym_comment] = ACTIONS(56), }, [1615] = { - [sym_concatenation] = STATE(2279), - [sym_string] = STATE(2278), - [sym_simple_expansion] = STATE(2278), - [sym_string_expansion] = STATE(2278), - [sym_expansion] = STATE(2278), - [sym_command_substitution] = STATE(2278), - [sym_process_substitution] = STATE(2278), - [anon_sym_RBRACE] = ACTIONS(4829), - [sym__special_characters] = ACTIONS(4831), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(4833), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(4834), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4835), + [sym_word] = ACTIONS(384), }, [1616] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4836), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [1617] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4836), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1618] = { + [sym__concat] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(3066), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_COLON] = ACTIONS(3066), + [anon_sym_COLON_QMARK] = ACTIONS(3066), + [anon_sym_COLON_DASH] = ACTIONS(3066), + [anon_sym_PERCENT] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1892), + }, + [1619] = { + [aux_sym_concatenation_repeat1] = STATE(1619), + [sym__concat] = ACTIONS(4838), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_EQ] = ACTIONS(3066), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_COLON] = ACTIONS(3066), + [anon_sym_COLON_QMARK] = ACTIONS(3066), + [anon_sym_COLON_DASH] = ACTIONS(3066), + [anon_sym_PERCENT] = ACTIONS(3066), + [anon_sym_DASH] = ACTIONS(3066), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1892), + }, + [1620] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1927), [anon_sym_EQ] = ACTIONS(3071), - [sym__special_characters] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1968), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1927), [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_POUND] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_POUND] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), [anon_sym_COLON] = ACTIONS(3071), [anon_sym_COLON_QMARK] = ACTIONS(3071), [anon_sym_COLON_DASH] = ACTIONS(3071), [anon_sym_PERCENT] = ACTIONS(3071), [anon_sym_DASH] = ACTIONS(3071), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1970), - }, - [1617] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4837), - }, - [1618] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4839), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1619] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(4841), - [sym_comment] = ACTIONS(56), - }, - [1620] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2285), - [anon_sym_RBRACE] = ACTIONS(4843), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4845), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(1929), }, [1621] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2288), - [anon_sym_RBRACE] = ACTIONS(4847), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4849), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(2287), + [sym_string] = STATE(2286), + [sym_simple_expansion] = STATE(2286), + [sym_string_expansion] = STATE(2286), + [sym_expansion] = STATE(2286), + [sym_command_substitution] = STATE(2286), + [sym_process_substitution] = STATE(2286), + [anon_sym_RBRACE] = ACTIONS(4841), + [sym__special_characters] = ACTIONS(4843), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(4845), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4847), }, [1622] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2290), - [anon_sym_RBRACE] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4851), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_EQ] = ACTIONS(3081), + [sym__special_characters] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(3081), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), + [anon_sym_COLON] = ACTIONS(3081), + [anon_sym_COLON_QMARK] = ACTIONS(3081), + [anon_sym_COLON_DASH] = ACTIONS(3081), + [anon_sym_PERCENT] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [anon_sym_LT_LPAREN] = ACTIONS(1972), + [anon_sym_GT_LPAREN] = ACTIONS(1972), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(1974), }, [1623] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2022), - [anon_sym_EQ] = ACTIONS(3089), - [sym__special_characters] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(3089), - [sym_raw_string] = ACTIONS(2022), - [anon_sym_POUND] = ACTIONS(2022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), - [anon_sym_COLON] = ACTIONS(3089), - [anon_sym_COLON_QMARK] = ACTIONS(3089), - [anon_sym_COLON_DASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_BQUOTE] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2022), - [anon_sym_GT_LPAREN] = ACTIONS(2022), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2024), + [sym_regex_without_right_brace] = ACTIONS(4849), }, [1624] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4851), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4853), + [sym_word] = ACTIONS(866), }, [1625] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(4853), + [sym_comment] = ACTIONS(56), }, [1626] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_RBRACE] = ACTIONS(2030), - [anon_sym_EQ] = ACTIONS(3095), - [sym__special_characters] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(2030), - [anon_sym_POUND] = ACTIONS(2030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), - [anon_sym_COLON] = ACTIONS(3095), - [anon_sym_COLON_QMARK] = ACTIONS(3095), - [anon_sym_COLON_DASH] = ACTIONS(3095), - [anon_sym_PERCENT] = ACTIONS(3095), - [anon_sym_DASH] = ACTIONS(3095), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2293), + [anon_sym_RBRACE] = ACTIONS(4855), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4857), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2032), + [sym_word] = ACTIONS(866), }, [1627] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2296), + [anon_sym_RBRACE] = ACTIONS(4859), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4861), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(4857), + [sym_word] = ACTIONS(866), }, [1628] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4829), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2298), + [anon_sym_RBRACE] = ACTIONS(4841), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4863), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [1629] = { - [sym_file_descriptor] = ACTIONS(4859), - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_EQ_TILDE] = ACTIONS(4861), - [anon_sym_EQ_EQ] = ACTIONS(4861), - [anon_sym_LT] = ACTIONS(4861), - [anon_sym_GT] = ACTIONS(4861), - [anon_sym_GT_GT] = ACTIONS(4861), - [anon_sym_AMP_GT] = ACTIONS(4861), - [anon_sym_AMP_GT_GT] = ACTIONS(4861), - [anon_sym_LT_AMP] = ACTIONS(4861), - [anon_sym_GT_AMP] = ACTIONS(4861), - [anon_sym_LT_LT] = ACTIONS(4861), - [anon_sym_LT_LT_DASH] = ACTIONS(4861), - [anon_sym_LT_LT_LT] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4861), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), - }, - [1630] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4863), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1631] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), + [sym__concat] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), [anon_sym_EQ] = ACTIONS(3099), - [sym__special_characters] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2190), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2190), - [anon_sym_POUND] = ACTIONS(2190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), + [sym_raw_string] = ACTIONS(2026), + [anon_sym_POUND] = ACTIONS(2026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), [anon_sym_COLON] = ACTIONS(3099), [anon_sym_COLON_QMARK] = ACTIONS(3099), [anon_sym_COLON_DASH] = ACTIONS(3099), [anon_sym_PERCENT] = ACTIONS(3099), [anon_sym_DASH] = ACTIONS(3099), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), - [anon_sym_BQUOTE] = ACTIONS(2190), - [anon_sym_LT_LPAREN] = ACTIONS(2190), - [anon_sym_GT_LPAREN] = ACTIONS(2190), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2026), + [anon_sym_GT_LPAREN] = ACTIONS(2026), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2192), + [sym_word] = ACTIONS(2028), + }, + [1630] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4865), + }, + [1631] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4867), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1632] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2396), - [anon_sym_EQ] = ACTIONS(3101), - [sym__special_characters] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(3101), - [sym_raw_string] = ACTIONS(2396), - [anon_sym_POUND] = ACTIONS(2396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), - [anon_sym_COLON] = ACTIONS(3101), - [anon_sym_COLON_QMARK] = ACTIONS(3101), - [anon_sym_COLON_DASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_LT_LPAREN] = ACTIONS(2396), - [anon_sym_GT_LPAREN] = ACTIONS(2396), + [sym__concat] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_EQ] = ACTIONS(3105), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(3105), + [sym_raw_string] = ACTIONS(2034), + [anon_sym_POUND] = ACTIONS(2034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), + [anon_sym_COLON] = ACTIONS(3105), + [anon_sym_COLON_QMARK] = ACTIONS(3105), + [anon_sym_COLON_DASH] = ACTIONS(3105), + [anon_sym_PERCENT] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), + [anon_sym_BQUOTE] = ACTIONS(2034), + [anon_sym_LT_LPAREN] = ACTIONS(2034), + [anon_sym_GT_LPAREN] = ACTIONS(2034), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2398), + [sym_word] = ACTIONS(2036), }, [1633] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4865), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(4869), }, [1634] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(4867), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4841), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1635] = { - [anon_sym_RBRACE] = ACTIONS(4867), - [sym_comment] = ACTIONS(56), - }, - [1636] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2298), - [anon_sym_RBRACE] = ACTIONS(4869), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1637] = { [sym_file_descriptor] = ACTIONS(4871), [sym__concat] = ACTIONS(4871), [anon_sym_PIPE] = ACTIONS(4873), @@ -49864,100 +49887,125 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4873), [anon_sym_AMP] = ACTIONS(4873), }, - [1638] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2300), + [1636] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), [anon_sym_RBRACE] = ACTIONS(4875), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), + }, + [1637] = { + [sym__concat] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_EQ] = ACTIONS(3109), + [sym__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(3109), + [sym_raw_string] = ACTIONS(2196), + [anon_sym_POUND] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_COLON] = ACTIONS(3109), + [anon_sym_COLON_QMARK] = ACTIONS(3109), + [anon_sym_COLON_DASH] = ACTIONS(3109), + [anon_sym_PERCENT] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2198), + }, + [1638] = { + [sym__concat] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [anon_sym_EQ] = ACTIONS(3111), + [sym__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(3111), + [sym_raw_string] = ACTIONS(2402), + [anon_sym_POUND] = ACTIONS(2402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_COLON] = ACTIONS(3111), + [anon_sym_COLON_QMARK] = ACTIONS(3111), + [anon_sym_COLON_DASH] = ACTIONS(3111), + [anon_sym_PERCENT] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3111), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), + [anon_sym_BQUOTE] = ACTIONS(2402), + [anon_sym_LT_LPAREN] = ACTIONS(2402), + [anon_sym_GT_LPAREN] = ACTIONS(2402), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2404), }, [1639] = { - [sym_file_descriptor] = ACTIONS(4877), - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_EQ_TILDE] = ACTIONS(4879), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_GT_GT] = ACTIONS(4879), - [anon_sym_AMP_GT] = ACTIONS(4879), - [anon_sym_AMP_GT_GT] = ACTIONS(4879), - [anon_sym_LT_AMP] = ACTIONS(4879), - [anon_sym_GT_AMP] = ACTIONS(4879), - [anon_sym_LT_LT] = ACTIONS(4879), - [anon_sym_LT_LT_DASH] = ACTIONS(4879), - [anon_sym_LT_LT_LT] = ACTIONS(4879), - [sym__special_characters] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4879), - [sym_raw_string] = ACTIONS(4879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), - [anon_sym_BQUOTE] = ACTIONS(4879), - [anon_sym_LT_LPAREN] = ACTIONS(4879), - [anon_sym_GT_LPAREN] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4877), + [sym_comment] = ACTIONS(56), }, [1640] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2302), - [anon_sym_RBRACE] = ACTIONS(4881), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(4879), + [sym_comment] = ACTIONS(56), }, [1641] = { + [anon_sym_RBRACE] = ACTIONS(4879), + [sym_comment] = ACTIONS(56), + }, + [1642] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2306), + [anon_sym_RBRACE] = ACTIONS(4881), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1643] = { [sym_file_descriptor] = ACTIONS(4883), [sym__concat] = ACTIONS(4883), [anon_sym_PIPE] = ACTIONS(4885), @@ -49992,36 +50040,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4885), [anon_sym_AMP] = ACTIONS(4885), }, - [1642] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [1644] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2308), [anon_sym_RBRACE] = ACTIONS(4887), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [1643] = { + [1645] = { [sym_file_descriptor] = ACTIONS(4889), [sym__concat] = ACTIONS(4889), [anon_sym_PIPE] = ACTIONS(4891), @@ -50056,166 +50104,294 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4891), [anon_sym_AMP] = ACTIONS(4891), }, - [1644] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(4893), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1645] = { - [sym_file_descriptor] = ACTIONS(2557), - [sym_variable_name] = ACTIONS(2557), - [anon_sym_PIPE] = ACTIONS(4895), - [anon_sym_RPAREN] = ACTIONS(2557), - [anon_sym_PIPE_AMP] = ACTIONS(2557), - [anon_sym_AMP_AMP] = ACTIONS(2557), - [anon_sym_PIPE_PIPE] = ACTIONS(2557), - [anon_sym_LT] = ACTIONS(4895), - [anon_sym_GT] = ACTIONS(4895), - [anon_sym_GT_GT] = ACTIONS(2557), - [anon_sym_AMP_GT] = ACTIONS(4895), - [anon_sym_AMP_GT_GT] = ACTIONS(2557), - [anon_sym_LT_AMP] = ACTIONS(2557), - [anon_sym_GT_AMP] = ACTIONS(2557), - [sym__special_characters] = ACTIONS(4895), - [anon_sym_DQUOTE] = ACTIONS(2557), - [anon_sym_DOLLAR] = ACTIONS(4895), - [sym_raw_string] = ACTIONS(2557), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2557), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2557), - [anon_sym_BQUOTE] = ACTIONS(2557), - [anon_sym_LT_LPAREN] = ACTIONS(2557), - [anon_sym_GT_LPAREN] = ACTIONS(2557), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4895), - }, [1646] = { - [sym_concatenation] = STATE(660), - [sym_string] = STATE(655), - [sym_simple_expansion] = STATE(655), - [sym_string_expansion] = STATE(655), - [sym_expansion] = STATE(655), - [sym_command_substitution] = STATE(655), - [sym_process_substitution] = STATE(655), - [aux_sym_for_statement_repeat1] = STATE(1269), - [anon_sym_RPAREN] = ACTIONS(4897), - [sym__special_characters] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1287), - [sym_raw_string] = ACTIONS(1289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LT_LPAREN] = ACTIONS(1297), - [anon_sym_GT_LPAREN] = ACTIONS(1297), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1299), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2310), + [anon_sym_RBRACE] = ACTIONS(4893), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1647] = { - [sym_string] = STATE(2306), - [sym_simple_expansion] = STATE(2306), - [sym_string_expansion] = STATE(2306), - [sym_expansion] = STATE(2306), - [sym_command_substitution] = STATE(2306), - [sym_process_substitution] = STATE(2306), - [sym__special_characters] = ACTIONS(4899), - [anon_sym_DQUOTE] = ACTIONS(2042), - [anon_sym_DOLLAR] = ACTIONS(2044), - [sym_raw_string] = ACTIONS(4901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2048), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2050), - [anon_sym_BQUOTE] = ACTIONS(2052), - [anon_sym_LT_LPAREN] = ACTIONS(2054), - [anon_sym_GT_LPAREN] = ACTIONS(2054), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4899), + [sym_file_descriptor] = ACTIONS(4895), + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [anon_sym_EQ_TILDE] = ACTIONS(4897), + [anon_sym_EQ_EQ] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_GT_GT] = ACTIONS(4897), + [anon_sym_AMP_GT] = ACTIONS(4897), + [anon_sym_AMP_GT_GT] = ACTIONS(4897), + [anon_sym_LT_AMP] = ACTIONS(4897), + [anon_sym_GT_AMP] = ACTIONS(4897), + [anon_sym_LT_LT] = ACTIONS(4897), + [anon_sym_LT_LT_DASH] = ACTIONS(4897), + [anon_sym_LT_LT_LT] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(4897), + [anon_sym_DQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR] = ACTIONS(4897), + [sym_raw_string] = ACTIONS(4897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), + [anon_sym_BQUOTE] = ACTIONS(4897), + [anon_sym_LT_LPAREN] = ACTIONS(4897), + [anon_sym_GT_LPAREN] = ACTIONS(4897), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4897), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), }, [1648] = { - [aux_sym_concatenation_repeat1] = STATE(2307), - [sym_file_descriptor] = ACTIONS(788), - [sym__concat] = ACTIONS(3422), - [sym_variable_name] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_PIPE_AMP] = ACTIONS(788), - [anon_sym_AMP_AMP] = ACTIONS(788), - [anon_sym_PIPE_PIPE] = ACTIONS(788), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_GT] = ACTIONS(1567), - [anon_sym_GT_GT] = ACTIONS(788), - [anon_sym_AMP_GT] = ACTIONS(1567), - [anon_sym_AMP_GT_GT] = ACTIONS(788), - [anon_sym_LT_AMP] = ACTIONS(788), - [anon_sym_GT_AMP] = ACTIONS(788), - [sym__special_characters] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(1567), - [sym_raw_string] = ACTIONS(788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LT_LPAREN] = ACTIONS(788), - [anon_sym_GT_LPAREN] = ACTIONS(788), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1567), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4899), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1649] = { - [sym_file_descriptor] = ACTIONS(792), - [sym__concat] = ACTIONS(792), - [sym_variable_name] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_LT] = ACTIONS(1569), - [anon_sym_GT] = ACTIONS(1569), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_AMP_GT] = ACTIONS(1569), - [anon_sym_AMP_GT_GT] = ACTIONS(792), - [anon_sym_LT_AMP] = ACTIONS(792), - [anon_sym_GT_AMP] = ACTIONS(792), - [sym__special_characters] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(1569), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1569), + [sym_file_descriptor] = ACTIONS(4901), + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [anon_sym_EQ_TILDE] = ACTIONS(4903), + [anon_sym_EQ_EQ] = ACTIONS(4903), + [anon_sym_LT] = ACTIONS(4903), + [anon_sym_GT] = ACTIONS(4903), + [anon_sym_GT_GT] = ACTIONS(4903), + [anon_sym_AMP_GT] = ACTIONS(4903), + [anon_sym_AMP_GT_GT] = ACTIONS(4903), + [anon_sym_LT_AMP] = ACTIONS(4903), + [anon_sym_GT_AMP] = ACTIONS(4903), + [anon_sym_LT_LT] = ACTIONS(4903), + [anon_sym_LT_LT_DASH] = ACTIONS(4903), + [anon_sym_LT_LT_LT] = ACTIONS(4903), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4903), + [sym_raw_string] = ACTIONS(4903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), + [anon_sym_BQUOTE] = ACTIONS(4903), + [anon_sym_LT_LPAREN] = ACTIONS(4903), + [anon_sym_GT_LPAREN] = ACTIONS(4903), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4903), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), }, [1650] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(4905), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1651] = { + [sym_file_descriptor] = ACTIONS(2563), + [sym_variable_name] = ACTIONS(2563), + [anon_sym_PIPE] = ACTIONS(4907), + [anon_sym_RPAREN] = ACTIONS(2563), + [anon_sym_PIPE_AMP] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2563), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(4907), + [anon_sym_GT] = ACTIONS(4907), + [anon_sym_GT_GT] = ACTIONS(2563), + [anon_sym_AMP_GT] = ACTIONS(4907), + [anon_sym_AMP_GT_GT] = ACTIONS(2563), + [anon_sym_LT_AMP] = ACTIONS(2563), + [anon_sym_GT_AMP] = ACTIONS(2563), + [sym__special_characters] = ACTIONS(4907), + [anon_sym_DQUOTE] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym_raw_string] = ACTIONS(2563), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2563), + [anon_sym_BQUOTE] = ACTIONS(2563), + [anon_sym_LT_LPAREN] = ACTIONS(2563), + [anon_sym_GT_LPAREN] = ACTIONS(2563), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4907), + }, + [1652] = { + [sym_concatenation] = STATE(661), + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [aux_sym_for_statement_repeat1] = STATE(1273), + [anon_sym_RPAREN] = ACTIONS(4909), + [sym__special_characters] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1289), + [sym_raw_string] = ACTIONS(1291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), + [anon_sym_BQUOTE] = ACTIONS(1297), + [anon_sym_LT_LPAREN] = ACTIONS(1299), + [anon_sym_GT_LPAREN] = ACTIONS(1299), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1301), + }, + [1653] = { + [sym_string] = STATE(2314), + [sym_simple_expansion] = STATE(2314), + [sym_string_expansion] = STATE(2314), + [sym_expansion] = STATE(2314), + [sym_command_substitution] = STATE(2314), + [sym_process_substitution] = STATE(2314), + [sym__special_characters] = ACTIONS(4911), + [anon_sym_DQUOTE] = ACTIONS(2046), + [anon_sym_DOLLAR] = ACTIONS(2048), + [sym_raw_string] = ACTIONS(4913), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2052), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2054), + [anon_sym_BQUOTE] = ACTIONS(2056), + [anon_sym_LT_LPAREN] = ACTIONS(2058), + [anon_sym_GT_LPAREN] = ACTIONS(2058), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4911), + }, + [1654] = { + [aux_sym_concatenation_repeat1] = STATE(2315), + [sym_file_descriptor] = ACTIONS(790), + [sym__concat] = ACTIONS(3432), + [sym_variable_name] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(1571), + [anon_sym_GT] = ACTIONS(1571), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(1571), + [anon_sym_AMP_GT_GT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(790), + [anon_sym_GT_AMP] = ACTIONS(790), + [sym__special_characters] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(1571), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1571), + }, + [1655] = { + [sym_file_descriptor] = ACTIONS(794), + [sym__concat] = ACTIONS(794), + [sym_variable_name] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(794), + [anon_sym_LT_AMP] = ACTIONS(794), + [anon_sym_GT_AMP] = ACTIONS(794), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1573), + }, + [1656] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(4903), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(4915), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -50223,283 +50399,214 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [1651] = { - [sym_file_descriptor] = ACTIONS(824), - [sym__concat] = ACTIONS(824), - [sym_variable_name] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_PIPE_AMP] = ACTIONS(824), - [anon_sym_AMP_AMP] = ACTIONS(824), - [anon_sym_PIPE_PIPE] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(824), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(824), - [anon_sym_LT_AMP] = ACTIONS(824), - [anon_sym_GT_AMP] = ACTIONS(824), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_LT_LPAREN] = ACTIONS(824), - [anon_sym_GT_LPAREN] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1573), - }, - [1652] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [sym_variable_name] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1575), - [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(1575), - [anon_sym_GT] = ACTIONS(1575), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(1575), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [sym__special_characters] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1575), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1575), - }, - [1653] = { - [sym_file_descriptor] = ACTIONS(832), - [sym__concat] = ACTIONS(832), - [sym_variable_name] = ACTIONS(832), + [1657] = { + [sym_file_descriptor] = ACTIONS(826), + [sym__concat] = ACTIONS(826), + [sym_variable_name] = ACTIONS(826), [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), [anon_sym_LT] = ACTIONS(1577), [anon_sym_GT] = ACTIONS(1577), - [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_GT_GT] = ACTIONS(826), [anon_sym_AMP_GT] = ACTIONS(1577), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(826), [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(1577), }, - [1654] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(4905), - [sym_comment] = ACTIONS(56), - }, - [1655] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2312), - [anon_sym_RBRACE] = ACTIONS(4907), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4909), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1656] = { - [sym_subscript] = STATE(2316), - [sym_variable_name] = ACTIONS(4911), - [anon_sym_DOLLAR] = ACTIONS(4913), - [anon_sym_DASH] = ACTIONS(4913), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4915), - [anon_sym_STAR] = ACTIONS(4913), - [anon_sym_AT] = ACTIONS(4913), - [anon_sym_QMARK] = ACTIONS(4913), - [anon_sym_0] = ACTIONS(4917), - [anon_sym__] = ACTIONS(4917), - }, - [1657] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2319), - [anon_sym_RBRACE] = ACTIONS(4919), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4921), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [1658] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2322), - [anon_sym_RBRACE] = ACTIONS(4923), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(4925), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(830), + [sym__concat] = ACTIONS(830), + [sym_variable_name] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(1579), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [sym__special_characters] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(1579), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1579), }, [1659] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [sym_variable_name] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(1581), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [sym__special_characters] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1581), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1581), }, [1660] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4927), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(4917), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [1661] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(4927), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2320), + [anon_sym_RBRACE] = ACTIONS(4919), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4921), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1662] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(4927), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_subscript] = STATE(2324), + [sym_variable_name] = ACTIONS(4923), + [anon_sym_DOLLAR] = ACTIONS(4925), + [anon_sym_DASH] = ACTIONS(4925), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4927), + [anon_sym_STAR] = ACTIONS(4925), + [anon_sym_AT] = ACTIONS(4925), + [anon_sym_QMARK] = ACTIONS(4925), + [anon_sym_0] = ACTIONS(4929), + [anon_sym__] = ACTIONS(4929), }, [1663] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4929), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2327), + [anon_sym_RBRACE] = ACTIONS(4931), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4933), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1664] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2330), + [anon_sym_RBRACE] = ACTIONS(4935), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(4937), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1665] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4939), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [1666] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(4929), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4939), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -50519,169 +50626,116 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [1665] = { - [sym_concatenation] = STATE(688), - [sym_string] = STATE(683), - [sym_simple_expansion] = STATE(683), - [sym_string_expansion] = STATE(683), - [sym_expansion] = STATE(683), - [sym_command_substitution] = STATE(683), - [sym_process_substitution] = STATE(683), - [aux_sym_for_statement_repeat1] = STATE(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(4931), - [sym__special_characters] = ACTIONS(2653), - [anon_sym_DQUOTE] = ACTIONS(2655), - [anon_sym_DOLLAR] = ACTIONS(2657), - [sym_raw_string] = ACTIONS(2659), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2661), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2663), - [anon_sym_BQUOTE] = ACTIONS(2665), - [anon_sym_LT_LPAREN] = ACTIONS(2667), - [anon_sym_GT_LPAREN] = ACTIONS(2667), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2659), - [anon_sym_SEMI] = ACTIONS(4931), - [anon_sym_LF] = ACTIONS(4931), - [anon_sym_AMP] = ACTIONS(4931), - }, - [1666] = { - [sym_file_descriptor] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(4933), - [anon_sym_RPAREN] = ACTIONS(2669), - [anon_sym_PIPE_AMP] = ACTIONS(2669), - [anon_sym_AMP_AMP] = ACTIONS(2669), - [anon_sym_PIPE_PIPE] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(4933), - [anon_sym_GT] = ACTIONS(4933), - [anon_sym_GT_GT] = ACTIONS(2669), - [anon_sym_AMP_GT] = ACTIONS(4933), - [anon_sym_AMP_GT_GT] = ACTIONS(2669), - [anon_sym_LT_AMP] = ACTIONS(2669), - [anon_sym_GT_AMP] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(4933), - [anon_sym_LT_LT_DASH] = ACTIONS(2669), - [anon_sym_LT_LT_LT] = ACTIONS(2669), - [anon_sym_BQUOTE] = ACTIONS(2669), - [sym_comment] = ACTIONS(56), - }, [1667] = { - [sym__terminated_statement] = STATE(691), - [sym_for_statement] = STATE(692), - [sym_while_statement] = STATE(692), - [sym_if_statement] = STATE(692), - [sym_case_statement] = STATE(692), - [sym_function_definition] = STATE(692), - [sym_subshell] = STATE(692), - [sym_pipeline] = STATE(692), - [sym_list] = STATE(692), - [sym_command] = STATE(692), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(692), - [sym_variable_assignment] = STATE(693), - [sym_declaration_command] = STATE(692), - [sym_unset_command] = STATE(692), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1311), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(4935), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(4939), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), }, [1668] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1101), - [sym_file_descriptor] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(4937), - [anon_sym_RPAREN] = ACTIONS(4939), - [anon_sym_PIPE_AMP] = ACTIONS(4939), - [anon_sym_AMP_AMP] = ACTIONS(4939), - [anon_sym_PIPE_PIPE] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_AMP_GT] = ACTIONS(988), - [anon_sym_AMP_GT_GT] = ACTIONS(990), - [anon_sym_LT_AMP] = ACTIONS(990), - [anon_sym_GT_AMP] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(996), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(4939), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [1669] = { - [anon_sym_PIPE] = ACTIONS(4941), - [anon_sym_RPAREN] = ACTIONS(4943), - [anon_sym_PIPE_AMP] = ACTIONS(4943), - [anon_sym_AMP_AMP] = ACTIONS(4943), - [anon_sym_PIPE_PIPE] = ACTIONS(4943), - [anon_sym_BQUOTE] = ACTIONS(4943), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4941), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, [1670] = { - [anon_sym_fi] = ACTIONS(4945), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(4941), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [1671] = { - [sym__terminated_statement] = STATE(699), - [sym_for_statement] = STATE(700), - [sym_while_statement] = STATE(700), - [sym_if_statement] = STATE(700), - [sym_elif_clause] = STATE(701), - [sym_else_clause] = STATE(2328), - [sym_case_statement] = STATE(700), - [sym_function_definition] = STATE(700), - [sym_subshell] = STATE(700), - [sym_pipeline] = STATE(700), - [sym_list] = STATE(700), - [sym_command] = STATE(700), + [sym_concatenation] = STATE(689), + [sym_string] = STATE(684), + [sym_simple_expansion] = STATE(684), + [sym_string_expansion] = STATE(684), + [sym_expansion] = STATE(684), + [sym_command_substitution] = STATE(684), + [sym_process_substitution] = STATE(684), + [aux_sym_for_statement_repeat1] = STATE(1312), + [anon_sym_SEMI_SEMI] = ACTIONS(4943), + [sym__special_characters] = ACTIONS(2659), + [anon_sym_DQUOTE] = ACTIONS(2661), + [anon_sym_DOLLAR] = ACTIONS(2663), + [sym_raw_string] = ACTIONS(2665), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2667), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2669), + [anon_sym_BQUOTE] = ACTIONS(2671), + [anon_sym_LT_LPAREN] = ACTIONS(2673), + [anon_sym_GT_LPAREN] = ACTIONS(2673), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(4943), + [anon_sym_LF] = ACTIONS(4943), + [anon_sym_AMP] = ACTIONS(4943), + }, + [1672] = { + [sym__terminated_statement] = STATE(694), + [sym_for_statement] = STATE(695), + [sym_while_statement] = STATE(695), + [sym_if_statement] = STATE(695), + [sym_case_statement] = STATE(695), + [sym_function_definition] = STATE(695), + [sym_subshell] = STATE(695), + [sym_pipeline] = STATE(695), + [sym_list] = STATE(695), + [sym_command] = STATE(695), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(700), - [sym_variable_assignment] = STATE(703), - [sym_declaration_command] = STATE(700), - [sym_unset_command] = STATE(700), + [sym_bracket_command] = STATE(695), + [sym_variable_assignment] = STATE(696), + [sym_declaration_command] = STATE(695), + [sym_unset_command] = STATE(695), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -50691,17 +50745,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1320), - [aux_sym_if_statement_repeat1] = STATE(2329), + [aux_sym_program_repeat1] = STATE(2335), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(4945), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(4947), - [anon_sym_elif] = ACTIONS(1351), - [anon_sym_else] = ACTIONS(1353), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -50733,115 +50784,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [1672] = { - [sym_elif_clause] = STATE(701), - [sym_else_clause] = STATE(2328), - [aux_sym_if_statement_repeat1] = STATE(1322), - [anon_sym_fi] = ACTIONS(4945), - [anon_sym_elif] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2693), - [sym_comment] = ACTIONS(56), - }, [1673] = { - [sym_case_item] = STATE(1332), - [sym_last_case_item] = STATE(2331), - [sym_concatenation] = STATE(1334), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_string_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [aux_sym_case_statement_repeat1] = STATE(2332), - [anon_sym_esac] = ACTIONS(4949), - [sym__special_characters] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(4947), + [anon_sym_RPAREN] = ACTIONS(4949), + [anon_sym_PIPE_AMP] = ACTIONS(4949), + [anon_sym_AMP_AMP] = ACTIONS(4949), + [anon_sym_PIPE_PIPE] = ACTIONS(4949), + [anon_sym_BQUOTE] = ACTIONS(4949), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2713), }, [1674] = { - [anon_sym_SEMI_SEMI] = ACTIONS(4951), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_LF] = ACTIONS(4951), - [anon_sym_AMP] = ACTIONS(4951), + [sym_file_descriptor] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(4951), + [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_PIPE_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(4951), + [anon_sym_GT] = ACTIONS(4951), + [anon_sym_GT_GT] = ACTIONS(2679), + [anon_sym_AMP_GT] = ACTIONS(4951), + [anon_sym_AMP_GT_GT] = ACTIONS(2679), + [anon_sym_LT_AMP] = ACTIONS(2679), + [anon_sym_GT_AMP] = ACTIONS(2679), + [anon_sym_LT_LT] = ACTIONS(4951), + [anon_sym_LT_LT_DASH] = ACTIONS(2679), + [anon_sym_LT_LT_LT] = ACTIONS(2679), + [anon_sym_BQUOTE] = ACTIONS(2679), + [sym_comment] = ACTIONS(56), }, [1675] = { - [sym_case_item] = STATE(1332), - [sym_last_case_item] = STATE(2335), - [sym_concatenation] = STATE(1334), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_string_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [aux_sym_case_statement_repeat1] = STATE(2336), - [anon_sym_esac] = ACTIONS(4953), - [sym__special_characters] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2713), - }, - [1676] = { - [anon_sym_SEMI_SEMI] = ACTIONS(4955), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4955), - [anon_sym_LF] = ACTIONS(4955), - [anon_sym_AMP] = ACTIONS(4955), - }, - [1677] = { - [sym_compound_statement] = STATE(2338), - [anon_sym_LBRACE] = ACTIONS(2076), - [sym_comment] = ACTIONS(56), - }, - [1678] = { - [sym_file_descriptor] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(4957), - [anon_sym_RPAREN] = ACTIONS(2754), - [anon_sym_PIPE_AMP] = ACTIONS(2754), - [anon_sym_AMP_AMP] = ACTIONS(2754), - [anon_sym_PIPE_PIPE] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(4957), - [anon_sym_GT] = ACTIONS(4957), - [anon_sym_GT_GT] = ACTIONS(2754), - [anon_sym_AMP_GT] = ACTIONS(4957), - [anon_sym_AMP_GT_GT] = ACTIONS(2754), - [anon_sym_LT_AMP] = ACTIONS(2754), - [anon_sym_GT_AMP] = ACTIONS(2754), - [anon_sym_BQUOTE] = ACTIONS(2754), - [sym_comment] = ACTIONS(56), - }, - [1679] = { - [sym__terminated_statement] = STATE(731), - [sym_for_statement] = STATE(732), - [sym_while_statement] = STATE(732), - [sym_if_statement] = STATE(732), - [sym_case_statement] = STATE(732), - [sym_function_definition] = STATE(732), - [sym_subshell] = STATE(732), - [sym_pipeline] = STATE(732), - [sym_list] = STATE(732), - [sym_command] = STATE(732), + [sym__terminated_statement] = STATE(694), + [sym_for_statement] = STATE(695), + [sym_while_statement] = STATE(695), + [sym_if_statement] = STATE(695), + [sym_case_statement] = STATE(695), + [sym_function_definition] = STATE(695), + [sym_subshell] = STATE(695), + [sym_pipeline] = STATE(695), + [sym_list] = STATE(695), + [sym_command] = STATE(695), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(732), - [sym_variable_assignment] = STATE(733), - [sym_declaration_command] = STATE(732), - [sym_unset_command] = STATE(732), + [sym_bracket_command] = STATE(695), + [sym_variable_assignment] = STATE(696), + [sym_declaration_command] = STATE(695), + [sym_unset_command] = STATE(695), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -50851,17 +50838,122 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1362), + [aux_sym_program_repeat1] = STATE(1317), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(4953), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [1676] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [aux_sym_while_statement_repeat1] = STATE(1105), + [sym_file_descriptor] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_RPAREN] = ACTIONS(4957), + [anon_sym_PIPE_AMP] = ACTIONS(4957), + [anon_sym_AMP_AMP] = ACTIONS(4957), + [anon_sym_PIPE_PIPE] = ACTIONS(4957), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [anon_sym_GT_GT] = ACTIONS(992), + [anon_sym_AMP_GT] = ACTIONS(990), + [anon_sym_AMP_GT_GT] = ACTIONS(992), + [anon_sym_LT_AMP] = ACTIONS(992), + [anon_sym_GT_AMP] = ACTIONS(992), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(998), + [sym_comment] = ACTIONS(56), + }, + [1677] = { + [anon_sym_PIPE] = ACTIONS(4959), + [anon_sym_RPAREN] = ACTIONS(4961), + [anon_sym_PIPE_AMP] = ACTIONS(4961), + [anon_sym_AMP_AMP] = ACTIONS(4961), + [anon_sym_PIPE_PIPE] = ACTIONS(4961), + [anon_sym_BQUOTE] = ACTIONS(4961), + [sym_comment] = ACTIONS(56), + }, + [1678] = { + [anon_sym_fi] = ACTIONS(4963), + [sym_comment] = ACTIONS(56), + }, + [1679] = { + [sym__terminated_statement] = STATE(702), + [sym_for_statement] = STATE(703), + [sym_while_statement] = STATE(703), + [sym_if_statement] = STATE(703), + [sym_elif_clause] = STATE(704), + [sym_else_clause] = STATE(2338), + [sym_case_statement] = STATE(703), + [sym_function_definition] = STATE(703), + [sym_subshell] = STATE(703), + [sym_pipeline] = STATE(703), + [sym_list] = STATE(703), + [sym_command] = STATE(703), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(703), + [sym_variable_assignment] = STATE(706), + [sym_declaration_command] = STATE(703), + [sym_unset_command] = STATE(703), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1326), + [aux_sym_if_statement_repeat1] = STATE(2339), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(4965), + [anon_sym_elif] = ACTIONS(1355), + [anon_sym_else] = ACTIONS(1357), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_RBRACE] = ACTIONS(4959), [anon_sym_LBRACK] = ACTIONS(28), [anon_sym_LBRACK_LBRACK] = ACTIONS(30), [anon_sym_declare] = ACTIONS(32), @@ -50891,6164 +50983,1645 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(58), }, [1680] = { - [anon_sym_LT] = ACTIONS(4961), - [anon_sym_GT] = ACTIONS(4961), - [anon_sym_GT_GT] = ACTIONS(4963), - [anon_sym_AMP_GT] = ACTIONS(4961), - [anon_sym_AMP_GT_GT] = ACTIONS(4963), - [anon_sym_LT_AMP] = ACTIONS(4963), - [anon_sym_GT_AMP] = ACTIONS(4963), + [sym_elif_clause] = STATE(704), + [sym_else_clause] = STATE(2338), + [aux_sym_if_statement_repeat1] = STATE(1328), + [anon_sym_fi] = ACTIONS(4963), + [anon_sym_elif] = ACTIONS(2701), + [anon_sym_else] = ACTIONS(2703), [sym_comment] = ACTIONS(56), }, [1681] = { - [sym_concatenation] = STATE(2349), - [sym_string] = STATE(2344), - [sym_simple_expansion] = STATE(2344), - [sym_string_expansion] = STATE(2344), - [sym_expansion] = STATE(2344), - [sym_command_substitution] = STATE(2344), - [sym_process_substitution] = STATE(2344), - [sym__special_characters] = ACTIONS(4965), - [anon_sym_DQUOTE] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4969), - [sym_raw_string] = ACTIONS(4971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4975), - [anon_sym_BQUOTE] = ACTIONS(4977), - [anon_sym_LT_LPAREN] = ACTIONS(4979), - [anon_sym_GT_LPAREN] = ACTIONS(4979), + [sym_case_item] = STATE(1338), + [sym_last_case_item] = STATE(2341), + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(1333), + [sym_simple_expansion] = STATE(1333), + [sym_string_expansion] = STATE(1333), + [sym_expansion] = STATE(1333), + [sym_command_substitution] = STATE(1333), + [sym_process_substitution] = STATE(1333), + [aux_sym_case_statement_repeat1] = STATE(2342), + [anon_sym_esac] = ACTIONS(4967), + [sym__special_characters] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(2713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4981), + [sym_word] = ACTIONS(2723), }, [1682] = { - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_PIPE_AMP] = ACTIONS(4985), - [anon_sym_AMP_AMP] = ACTIONS(4985), - [anon_sym_PIPE_PIPE] = ACTIONS(4985), - [anon_sym_BQUOTE] = ACTIONS(4985), - [sym_comment] = ACTIONS(56), + [anon_sym_SEMI_SEMI] = ACTIONS(4969), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4969), + [anon_sym_LF] = ACTIONS(4969), + [anon_sym_AMP] = ACTIONS(4969), }, [1683] = { - [anon_sym_PIPE] = ACTIONS(4987), - [anon_sym_RPAREN] = ACTIONS(4989), - [anon_sym_PIPE_AMP] = ACTIONS(4989), - [anon_sym_AMP_AMP] = ACTIONS(4989), - [anon_sym_PIPE_PIPE] = ACTIONS(4989), - [anon_sym_BQUOTE] = ACTIONS(4989), + [sym_case_item] = STATE(1338), + [sym_last_case_item] = STATE(2345), + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(1333), + [sym_simple_expansion] = STATE(1333), + [sym_string_expansion] = STATE(1333), + [sym_expansion] = STATE(1333), + [sym_command_substitution] = STATE(1333), + [sym_process_substitution] = STATE(1333), + [aux_sym_case_statement_repeat1] = STATE(2346), + [anon_sym_esac] = ACTIONS(4971), + [sym__special_characters] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(2713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2723), }, [1684] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_RPAREN] = ACTIONS(4991), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(1102), - [sym_raw_string] = ACTIONS(1100), - [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_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1104), + [anon_sym_SEMI_SEMI] = ACTIONS(4973), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4973), + [anon_sym_LF] = ACTIONS(4973), + [anon_sym_AMP] = ACTIONS(4973), }, [1685] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1101), - [sym_file_descriptor] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(4993), - [anon_sym_RPAREN] = ACTIONS(4995), - [anon_sym_PIPE_AMP] = ACTIONS(4995), - [anon_sym_AMP_AMP] = ACTIONS(4995), - [anon_sym_PIPE_PIPE] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_AMP_GT] = ACTIONS(988), - [anon_sym_AMP_GT_GT] = ACTIONS(990), - [anon_sym_LT_AMP] = ACTIONS(990), - [anon_sym_GT_AMP] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(996), + [sym_compound_statement] = STATE(2348), + [anon_sym_LBRACE] = ACTIONS(2082), [sym_comment] = ACTIONS(56), }, [1686] = { - [sym_variable_name] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(3418), - [anon_sym_RPAREN] = ACTIONS(1277), - [anon_sym_PIPE_AMP] = ACTIONS(1277), - [anon_sym_AMP_AMP] = ACTIONS(1277), - [anon_sym_PIPE_PIPE] = ACTIONS(1277), - [sym__special_characters] = ACTIONS(3418), - [anon_sym_DQUOTE] = ACTIONS(1277), - [anon_sym_DOLLAR] = ACTIONS(3418), - [sym_raw_string] = ACTIONS(1277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), - [anon_sym_BQUOTE] = ACTIONS(1277), - [anon_sym_LT_LPAREN] = ACTIONS(1277), - [anon_sym_GT_LPAREN] = ACTIONS(1277), + [sym_file_descriptor] = ACTIONS(2764), + [anon_sym_PIPE] = ACTIONS(4975), + [anon_sym_RPAREN] = ACTIONS(2764), + [anon_sym_PIPE_AMP] = ACTIONS(2764), + [anon_sym_AMP_AMP] = ACTIONS(2764), + [anon_sym_PIPE_PIPE] = ACTIONS(2764), + [anon_sym_LT] = ACTIONS(4975), + [anon_sym_GT] = ACTIONS(4975), + [anon_sym_GT_GT] = ACTIONS(2764), + [anon_sym_AMP_GT] = ACTIONS(4975), + [anon_sym_AMP_GT_GT] = ACTIONS(2764), + [anon_sym_LT_AMP] = ACTIONS(2764), + [anon_sym_GT_AMP] = ACTIONS(2764), + [anon_sym_BQUOTE] = ACTIONS(2764), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3418), - [sym_word] = ACTIONS(1279), }, [1687] = { - [sym_concatenation] = STATE(660), - [sym_string] = STATE(655), - [sym_simple_expansion] = STATE(655), - [sym_string_expansion] = STATE(655), - [sym_expansion] = STATE(655), - [sym_command_substitution] = STATE(655), - [sym_process_substitution] = STATE(655), - [aux_sym_for_statement_repeat1] = STATE(2352), - [anon_sym_RPAREN] = ACTIONS(4997), - [sym__special_characters] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1287), - [sym_raw_string] = ACTIONS(1289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LT_LPAREN] = ACTIONS(1297), - [anon_sym_GT_LPAREN] = ACTIONS(1297), + [sym__terminated_statement] = STATE(734), + [sym_for_statement] = STATE(735), + [sym_while_statement] = STATE(735), + [sym_if_statement] = STATE(735), + [sym_case_statement] = STATE(735), + [sym_function_definition] = STATE(735), + [sym_subshell] = STATE(735), + [sym_pipeline] = STATE(735), + [sym_list] = STATE(735), + [sym_command] = STATE(735), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(735), + [sym_variable_assignment] = STATE(736), + [sym_declaration_command] = STATE(735), + [sym_unset_command] = STATE(735), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1368), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_RBRACE] = ACTIONS(4977), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1299), + [sym_word] = ACTIONS(58), }, [1688] = { - [aux_sym_concatenation_repeat1] = STATE(1021), - [sym__concat] = ACTIONS(2086), - [sym_variable_name] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_RPAREN] = ACTIONS(1301), - [anon_sym_PIPE_AMP] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), + [anon_sym_LT] = ACTIONS(4979), + [anon_sym_GT] = ACTIONS(4979), + [anon_sym_GT_GT] = ACTIONS(4981), + [anon_sym_AMP_GT] = ACTIONS(4979), + [anon_sym_AMP_GT_GT] = ACTIONS(4981), + [anon_sym_LT_AMP] = ACTIONS(4981), + [anon_sym_GT_AMP] = ACTIONS(4981), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3424), - [sym_word] = ACTIONS(1305), }, [1689] = { - [aux_sym_concatenation_repeat1] = STATE(1021), - [sym__concat] = ACTIONS(2086), - [sym_variable_name] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(3418), - [anon_sym_RPAREN] = ACTIONS(1277), - [anon_sym_PIPE_AMP] = ACTIONS(1277), - [anon_sym_AMP_AMP] = ACTIONS(1277), - [anon_sym_PIPE_PIPE] = ACTIONS(1277), - [sym__special_characters] = ACTIONS(3418), - [anon_sym_DQUOTE] = ACTIONS(1277), - [anon_sym_DOLLAR] = ACTIONS(3418), - [sym_raw_string] = ACTIONS(1277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), - [anon_sym_BQUOTE] = ACTIONS(1277), - [anon_sym_LT_LPAREN] = ACTIONS(1277), - [anon_sym_GT_LPAREN] = ACTIONS(1277), + [sym_concatenation] = STATE(2359), + [sym_string] = STATE(2354), + [sym_simple_expansion] = STATE(2354), + [sym_string_expansion] = STATE(2354), + [sym_expansion] = STATE(2354), + [sym_command_substitution] = STATE(2354), + [sym_process_substitution] = STATE(2354), + [sym__special_characters] = ACTIONS(4983), + [anon_sym_DQUOTE] = ACTIONS(4985), + [anon_sym_DOLLAR] = ACTIONS(4987), + [sym_raw_string] = ACTIONS(4989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4991), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4993), + [anon_sym_BQUOTE] = ACTIONS(4995), + [anon_sym_LT_LPAREN] = ACTIONS(4997), + [anon_sym_GT_LPAREN] = ACTIONS(4997), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3418), - [sym_word] = ACTIONS(1279), + [sym_word] = ACTIONS(4999), }, [1690] = { - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5003), + [anon_sym_PIPE_AMP] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5003), + [anon_sym_BQUOTE] = ACTIONS(5003), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), - [sym_word] = ACTIONS(1888), }, [1691] = { - [aux_sym_concatenation_repeat1] = STATE(1691), - [sym__concat] = ACTIONS(4999), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(5005), + [anon_sym_RPAREN] = ACTIONS(5007), + [anon_sym_PIPE_AMP] = ACTIONS(5007), + [anon_sym_AMP_AMP] = ACTIONS(5007), + [anon_sym_PIPE_PIPE] = ACTIONS(5007), + [anon_sym_BQUOTE] = ACTIONS(5007), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), - [sym_word] = ACTIONS(1888), }, [1692] = { - [sym__concat] = ACTIONS(1923), - [sym_variable_name] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(1923), - [anon_sym_PIPE_AMP] = ACTIONS(1923), - [anon_sym_AMP_AMP] = ACTIONS(1923), - [anon_sym_PIPE_PIPE] = ACTIONS(1923), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(1923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), - [anon_sym_BQUOTE] = ACTIONS(1923), - [anon_sym_LT_LPAREN] = ACTIONS(1923), - [anon_sym_GT_LPAREN] = ACTIONS(1923), + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_RPAREN] = ACTIONS(5009), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1104), + [sym_raw_string] = ACTIONS(1102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), + [anon_sym_BQUOTE] = ACTIONS(1102), + [anon_sym_LT_LPAREN] = ACTIONS(1102), + [anon_sym_GT_LPAREN] = ACTIONS(1102), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), - [sym_word] = ACTIONS(1925), + [sym_word] = ACTIONS(1106), }, [1693] = { - [sym_concatenation] = STATE(2356), - [sym_string] = STATE(2355), - [sym_simple_expansion] = STATE(2355), - [sym_string_expansion] = STATE(2355), - [sym_expansion] = STATE(2355), - [sym_command_substitution] = STATE(2355), - [sym_process_substitution] = STATE(2355), - [anon_sym_RBRACE] = ACTIONS(5002), - [sym__special_characters] = ACTIONS(5004), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(5006), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [aux_sym_while_statement_repeat1] = STATE(1105), + [sym_file_descriptor] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(5011), + [anon_sym_RPAREN] = ACTIONS(5013), + [anon_sym_PIPE_AMP] = ACTIONS(5013), + [anon_sym_AMP_AMP] = ACTIONS(5013), + [anon_sym_PIPE_PIPE] = ACTIONS(5013), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [anon_sym_GT_GT] = ACTIONS(992), + [anon_sym_AMP_GT] = ACTIONS(990), + [anon_sym_AMP_GT_GT] = ACTIONS(992), + [anon_sym_LT_AMP] = ACTIONS(992), + [anon_sym_GT_AMP] = ACTIONS(992), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(998), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5008), }, [1694] = { - [sym__concat] = ACTIONS(1968), - [sym_variable_name] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1968), - [anon_sym_PIPE_PIPE] = ACTIONS(1968), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1968), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(3428), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(3428), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(3428), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3071), - [sym_word] = ACTIONS(1970), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3428), + [sym_word] = ACTIONS(1281), }, [1695] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5010), + [sym_concatenation] = STATE(661), + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [aux_sym_for_statement_repeat1] = STATE(2362), + [anon_sym_RPAREN] = ACTIONS(5015), + [sym__special_characters] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1289), + [sym_raw_string] = ACTIONS(1291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), + [anon_sym_BQUOTE] = ACTIONS(1297), + [anon_sym_LT_LPAREN] = ACTIONS(1299), + [anon_sym_GT_LPAREN] = ACTIONS(1299), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1301), }, [1696] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5012), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(1025), + [sym__concat] = ACTIONS(2092), + [sym_variable_name] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_RPAREN] = ACTIONS(1303), + [anon_sym_PIPE_AMP] = ACTIONS(1303), + [anon_sym_AMP_AMP] = ACTIONS(1303), + [anon_sym_PIPE_PIPE] = ACTIONS(1303), + [sym__special_characters] = ACTIONS(3434), + [anon_sym_DQUOTE] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(3434), + [sym_raw_string] = ACTIONS(1303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1303), + [anon_sym_BQUOTE] = ACTIONS(1303), + [anon_sym_LT_LPAREN] = ACTIONS(1303), + [anon_sym_GT_LPAREN] = ACTIONS(1303), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3434), + [sym_word] = ACTIONS(1307), }, [1697] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(5014), + [aux_sym_concatenation_repeat1] = STATE(1025), + [sym__concat] = ACTIONS(2092), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(3428), + [anon_sym_RPAREN] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(3428), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(3428), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3428), + [sym_word] = ACTIONS(1281), }, [1698] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2362), - [anon_sym_RBRACE] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5018), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3066), + [sym_word] = ACTIONS(1892), }, [1699] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2365), - [anon_sym_RBRACE] = ACTIONS(5020), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5022), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(1699), + [sym__concat] = ACTIONS(5017), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3066), + [sym_word] = ACTIONS(1892), }, [1700] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2367), - [anon_sym_RBRACE] = ACTIONS(5002), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5024), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(1927), + [sym_variable_name] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3071), + [sym_word] = ACTIONS(1929), }, [1701] = { - [sym__concat] = ACTIONS(2022), - [sym_variable_name] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(2022), - [anon_sym_PIPE_AMP] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), - [sym__special_characters] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(3089), - [sym_raw_string] = ACTIONS(2022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_BQUOTE] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2022), - [anon_sym_GT_LPAREN] = ACTIONS(2022), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3089), - [sym_word] = ACTIONS(2024), - }, - [1702] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5026), - }, - [1703] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5028), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1704] = { - [sym__concat] = ACTIONS(2030), - [sym_variable_name] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_RPAREN] = ACTIONS(2030), - [anon_sym_PIPE_AMP] = ACTIONS(2030), - [anon_sym_AMP_AMP] = ACTIONS(2030), - [anon_sym_PIPE_PIPE] = ACTIONS(2030), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(2030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3095), - [sym_word] = ACTIONS(2032), - }, - [1705] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5030), - }, - [1706] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5002), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1707] = { - [sym__concat] = ACTIONS(2190), - [sym_variable_name] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), - [anon_sym_BQUOTE] = ACTIONS(2190), - [anon_sym_LT_LPAREN] = ACTIONS(2190), - [anon_sym_GT_LPAREN] = ACTIONS(2190), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3099), - [sym_word] = ACTIONS(2192), - }, - [1708] = { - [sym__concat] = ACTIONS(2396), - [sym_variable_name] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_RPAREN] = ACTIONS(2396), - [anon_sym_PIPE_AMP] = ACTIONS(2396), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [sym__special_characters] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(3101), - [sym_raw_string] = ACTIONS(2396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_LT_LPAREN] = ACTIONS(2396), - [anon_sym_GT_LPAREN] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3101), - [sym_word] = ACTIONS(2398), - }, - [1709] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), - [sym_word] = ACTIONS(1888), - }, - [1710] = { - [aux_sym_concatenation_repeat1] = STATE(1710), - [sym__concat] = ACTIONS(5032), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), - [sym_word] = ACTIONS(1888), - }, - [1711] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(1923), - [anon_sym_PIPE_AMP] = ACTIONS(1923), - [anon_sym_AMP_AMP] = ACTIONS(1923), - [anon_sym_PIPE_PIPE] = ACTIONS(1923), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(1923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), - [anon_sym_BQUOTE] = ACTIONS(1923), - [anon_sym_LT_LPAREN] = ACTIONS(1923), - [anon_sym_GT_LPAREN] = ACTIONS(1923), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), - [sym_word] = ACTIONS(1925), - }, - [1712] = { - [sym_concatenation] = STATE(2374), - [sym_string] = STATE(2373), - [sym_simple_expansion] = STATE(2373), - [sym_string_expansion] = STATE(2373), - [sym_expansion] = STATE(2373), - [sym_command_substitution] = STATE(2373), - [sym_process_substitution] = STATE(2373), - [anon_sym_RBRACE] = ACTIONS(5035), - [sym__special_characters] = ACTIONS(5037), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(5039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5041), - }, - [1713] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1968), - [anon_sym_PIPE_PIPE] = ACTIONS(1968), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1968), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), + [sym_concatenation] = STATE(2366), + [sym_string] = STATE(2365), + [sym_simple_expansion] = STATE(2365), + [sym_string_expansion] = STATE(2365), + [sym_expansion] = STATE(2365), + [sym_command_substitution] = STATE(2365), + [sym_process_substitution] = STATE(2365), + [anon_sym_RBRACE] = ACTIONS(5020), + [sym__special_characters] = ACTIONS(5022), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(5024), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), [anon_sym_LT_LPAREN] = ACTIONS(1968), [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3071), - [sym_word] = ACTIONS(1970), + [sym_word] = ACTIONS(5026), }, - [1714] = { + [1702] = { + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(3081), + [anon_sym_RPAREN] = ACTIONS(1972), + [anon_sym_PIPE_AMP] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_PIPE_PIPE] = ACTIONS(1972), + [sym__special_characters] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(3081), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [anon_sym_LT_LPAREN] = ACTIONS(1972), + [anon_sym_GT_LPAREN] = ACTIONS(1972), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3081), + [sym_word] = ACTIONS(1974), + }, + [1703] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5043), + [sym_regex_without_right_brace] = ACTIONS(5028), }, - [1715] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5045), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [1704] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5030), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [1716] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(5047), + [1705] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(5032), [sym_comment] = ACTIONS(56), }, - [1717] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2380), - [anon_sym_RBRACE] = ACTIONS(5049), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5051), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [1706] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2372), + [anon_sym_RBRACE] = ACTIONS(5034), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5036), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [1718] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2383), - [anon_sym_RBRACE] = ACTIONS(5053), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5055), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [1707] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2375), + [anon_sym_RBRACE] = ACTIONS(5038), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5040), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [1719] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2385), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5057), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [1708] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2377), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5042), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [1720] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(2022), - [anon_sym_PIPE_AMP] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), - [sym__special_characters] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(3089), - [sym_raw_string] = ACTIONS(2022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_BQUOTE] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2022), - [anon_sym_GT_LPAREN] = ACTIONS(2022), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3089), - [sym_word] = ACTIONS(2024), - }, - [1721] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5059), - }, - [1722] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5061), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1723] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_RPAREN] = ACTIONS(2030), - [anon_sym_PIPE_AMP] = ACTIONS(2030), - [anon_sym_AMP_AMP] = ACTIONS(2030), - [anon_sym_PIPE_PIPE] = ACTIONS(2030), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(2030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3095), - [sym_word] = ACTIONS(2032), - }, - [1724] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5063), - }, - [1725] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5035), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1726] = { - [sym__concat] = ACTIONS(2190), + [1709] = { + [sym__concat] = ACTIONS(2026), + [sym_variable_name] = ACTIONS(2026), [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_PIPE_AMP] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), - [anon_sym_BQUOTE] = ACTIONS(2190), - [anon_sym_LT_LPAREN] = ACTIONS(2190), - [anon_sym_GT_LPAREN] = ACTIONS(2190), + [sym_raw_string] = ACTIONS(2026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2026), + [anon_sym_GT_LPAREN] = ACTIONS(2026), [sym_comment] = ACTIONS(56), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3099), - [sym_word] = ACTIONS(2192), + [sym_word] = ACTIONS(2028), + }, + [1710] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5044), + }, + [1711] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5046), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1712] = { + [sym__concat] = ACTIONS(2034), + [sym_variable_name] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_RPAREN] = ACTIONS(2034), + [anon_sym_PIPE_AMP] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_PIPE_PIPE] = ACTIONS(2034), + [sym__special_characters] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(3105), + [sym_raw_string] = ACTIONS(2034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), + [anon_sym_BQUOTE] = ACTIONS(2034), + [anon_sym_LT_LPAREN] = ACTIONS(2034), + [anon_sym_GT_LPAREN] = ACTIONS(2034), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3105), + [sym_word] = ACTIONS(2036), + }, + [1713] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5048), + }, + [1714] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5020), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1715] = { + [sym__concat] = ACTIONS(2196), + [sym_variable_name] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(3109), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [sym__special_characters] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(3109), + [sym_raw_string] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3109), + [sym_word] = ACTIONS(2198), + }, + [1716] = { + [sym__concat] = ACTIONS(2402), + [sym_variable_name] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_PIPE_AMP] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [sym__special_characters] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(3111), + [sym_raw_string] = ACTIONS(2402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), + [anon_sym_BQUOTE] = ACTIONS(2402), + [anon_sym_LT_LPAREN] = ACTIONS(2402), + [anon_sym_GT_LPAREN] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3111), + [sym_word] = ACTIONS(2404), + }, + [1717] = { + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3066), + [sym_word] = ACTIONS(1892), + }, + [1718] = { + [aux_sym_concatenation_repeat1] = STATE(1718), + [sym__concat] = ACTIONS(5050), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3066), + [sym_word] = ACTIONS(1892), + }, + [1719] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3071), + [sym_word] = ACTIONS(1929), + }, + [1720] = { + [sym_concatenation] = STATE(2384), + [sym_string] = STATE(2383), + [sym_simple_expansion] = STATE(2383), + [sym_string_expansion] = STATE(2383), + [sym_expansion] = STATE(2383), + [sym_command_substitution] = STATE(2383), + [sym_process_substitution] = STATE(2383), + [anon_sym_RBRACE] = ACTIONS(5053), + [sym__special_characters] = ACTIONS(5055), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(5057), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5059), + }, + [1721] = { + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(3081), + [anon_sym_RPAREN] = ACTIONS(1972), + [anon_sym_PIPE_AMP] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_PIPE_PIPE] = ACTIONS(1972), + [sym__special_characters] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(3081), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [anon_sym_LT_LPAREN] = ACTIONS(1972), + [anon_sym_GT_LPAREN] = ACTIONS(1972), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3081), + [sym_word] = ACTIONS(1974), + }, + [1722] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5061), + }, + [1723] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5063), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1724] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(5065), + [sym_comment] = ACTIONS(56), + }, + [1725] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2390), + [anon_sym_RBRACE] = ACTIONS(5067), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5069), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1726] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2393), + [anon_sym_RBRACE] = ACTIONS(5071), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5073), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1727] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_RPAREN] = ACTIONS(2396), - [anon_sym_PIPE_AMP] = ACTIONS(2396), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [sym__special_characters] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(3101), - [sym_raw_string] = ACTIONS(2396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_LT_LPAREN] = ACTIONS(2396), - [anon_sym_GT_LPAREN] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3101), - [sym_word] = ACTIONS(2398), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2395), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5075), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [1728] = { - [sym_file_descriptor] = ACTIONS(3283), - [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(4602), - [anon_sym_RPAREN] = ACTIONS(3283), - [anon_sym_PIPE_AMP] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [anon_sym_EQ_TILDE] = ACTIONS(4602), - [anon_sym_EQ_EQ] = ACTIONS(4602), - [anon_sym_LT] = ACTIONS(4602), - [anon_sym_GT] = ACTIONS(4602), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_AMP_GT] = ACTIONS(4602), - [anon_sym_AMP_GT_GT] = ACTIONS(3283), - [anon_sym_LT_AMP] = ACTIONS(3283), - [anon_sym_GT_AMP] = ACTIONS(3283), - [anon_sym_LT_LT] = ACTIONS(4602), - [anon_sym_LT_LT_DASH] = ACTIONS(3283), - [anon_sym_LT_LT_LT] = ACTIONS(3283), - [sym__special_characters] = ACTIONS(4602), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(4602), - [sym_raw_string] = ACTIONS(3283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), - [anon_sym_BQUOTE] = ACTIONS(3283), - [anon_sym_LT_LPAREN] = ACTIONS(3283), - [anon_sym_GT_LPAREN] = ACTIONS(3283), + [sym__concat] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_PIPE_AMP] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [sym__special_characters] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2026), + [anon_sym_GT_LPAREN] = ACTIONS(2026), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3285), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3099), + [sym_word] = ACTIONS(2028), }, [1729] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5065), - [sym_comment] = ACTIONS(56), - }, - [1730] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5067), - [sym_comment] = ACTIONS(56), - }, - [1731] = { - [anon_sym_RBRACE] = ACTIONS(5067), - [sym_comment] = ACTIONS(56), - }, - [1732] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2392), - [anon_sym_RBRACE] = ACTIONS(5069), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1733] = { - [sym_file_descriptor] = ACTIONS(3347), - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_RPAREN] = ACTIONS(3347), - [anon_sym_PIPE_AMP] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [anon_sym_EQ_TILDE] = ACTIONS(4610), - [anon_sym_EQ_EQ] = ACTIONS(4610), - [anon_sym_LT] = ACTIONS(4610), - [anon_sym_GT] = ACTIONS(4610), - [anon_sym_GT_GT] = ACTIONS(3347), - [anon_sym_AMP_GT] = ACTIONS(4610), - [anon_sym_AMP_GT_GT] = ACTIONS(3347), - [anon_sym_LT_AMP] = ACTIONS(3347), - [anon_sym_GT_AMP] = ACTIONS(3347), - [anon_sym_LT_LT] = ACTIONS(4610), - [anon_sym_LT_LT_DASH] = ACTIONS(3347), - [anon_sym_LT_LT_LT] = ACTIONS(3347), - [sym__special_characters] = ACTIONS(4610), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(3347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), - [anon_sym_BQUOTE] = ACTIONS(3347), - [anon_sym_LT_LPAREN] = ACTIONS(3347), - [anon_sym_GT_LPAREN] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3349), - }, - [1734] = { - [sym_concatenation] = STATE(2395), - [sym_string] = STATE(2394), - [sym_simple_expansion] = STATE(2394), - [sym_string_expansion] = STATE(2394), - [sym_expansion] = STATE(2394), - [sym_command_substitution] = STATE(2394), - [sym_process_substitution] = STATE(2394), - [anon_sym_RBRACE] = ACTIONS(5067), - [sym__special_characters] = ACTIONS(5071), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(5073), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5075), - }, - [1735] = { - [sym_file_descriptor] = ACTIONS(3392), - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(4618), - [anon_sym_RPAREN] = ACTIONS(3392), - [anon_sym_PIPE_AMP] = ACTIONS(3392), - [anon_sym_AMP_AMP] = ACTIONS(3392), - [anon_sym_PIPE_PIPE] = ACTIONS(3392), - [anon_sym_EQ_TILDE] = ACTIONS(4618), - [anon_sym_EQ_EQ] = ACTIONS(4618), - [anon_sym_LT] = ACTIONS(4618), - [anon_sym_GT] = ACTIONS(4618), - [anon_sym_GT_GT] = ACTIONS(3392), - [anon_sym_AMP_GT] = ACTIONS(4618), - [anon_sym_AMP_GT_GT] = ACTIONS(3392), - [anon_sym_LT_AMP] = ACTIONS(3392), - [anon_sym_GT_AMP] = ACTIONS(3392), - [anon_sym_LT_LT] = ACTIONS(4618), - [anon_sym_LT_LT_DASH] = ACTIONS(3392), - [anon_sym_LT_LT_LT] = ACTIONS(3392), - [sym__special_characters] = ACTIONS(4618), - [anon_sym_DQUOTE] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(4618), - [sym_raw_string] = ACTIONS(3392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), - [anon_sym_BQUOTE] = ACTIONS(3392), - [anon_sym_LT_LPAREN] = ACTIONS(3392), - [anon_sym_GT_LPAREN] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3394), - }, - [1736] = { [sym_comment] = ACTIONS(182), [sym_regex_without_right_brace] = ACTIONS(5077), }, - [1737] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [1730] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), [anon_sym_RBRACE] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [1738] = { - [sym_file_descriptor] = ACTIONS(3400), - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(4624), - [anon_sym_RPAREN] = ACTIONS(3400), - [anon_sym_PIPE_AMP] = ACTIONS(3400), - [anon_sym_AMP_AMP] = ACTIONS(3400), - [anon_sym_PIPE_PIPE] = ACTIONS(3400), - [anon_sym_EQ_TILDE] = ACTIONS(4624), - [anon_sym_EQ_EQ] = ACTIONS(4624), - [anon_sym_LT] = ACTIONS(4624), - [anon_sym_GT] = ACTIONS(4624), - [anon_sym_GT_GT] = ACTIONS(3400), - [anon_sym_AMP_GT] = ACTIONS(4624), - [anon_sym_AMP_GT_GT] = ACTIONS(3400), - [anon_sym_LT_AMP] = ACTIONS(3400), - [anon_sym_GT_AMP] = ACTIONS(3400), - [anon_sym_LT_LT] = ACTIONS(4624), - [anon_sym_LT_LT_DASH] = ACTIONS(3400), - [anon_sym_LT_LT_LT] = ACTIONS(3400), - [sym__special_characters] = ACTIONS(4624), - [anon_sym_DQUOTE] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(4624), - [sym_raw_string] = ACTIONS(3400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), - [anon_sym_BQUOTE] = ACTIONS(3400), - [anon_sym_LT_LPAREN] = ACTIONS(3400), - [anon_sym_GT_LPAREN] = ACTIONS(3400), + [1731] = { + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_RPAREN] = ACTIONS(2034), + [anon_sym_PIPE_AMP] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_PIPE_PIPE] = ACTIONS(2034), + [sym__special_characters] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(3105), + [sym_raw_string] = ACTIONS(2034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), + [anon_sym_BQUOTE] = ACTIONS(2034), + [anon_sym_LT_LPAREN] = ACTIONS(2034), + [anon_sym_GT_LPAREN] = ACTIONS(2034), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3402), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3105), + [sym_word] = ACTIONS(2036), }, - [1739] = { + [1732] = { [sym_comment] = ACTIONS(182), [sym_regex_without_right_brace] = ACTIONS(5081), }, - [1740] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [1733] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5053), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1734] = { + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(3109), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [sym__special_characters] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(3109), + [sym_raw_string] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3109), + [sym_word] = ACTIONS(2198), + }, + [1735] = { + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_PIPE_AMP] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [sym__special_characters] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(3111), + [sym_raw_string] = ACTIONS(2402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), + [anon_sym_BQUOTE] = ACTIONS(2402), + [anon_sym_LT_LPAREN] = ACTIONS(2402), + [anon_sym_GT_LPAREN] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3111), + [sym_word] = ACTIONS(2404), + }, + [1736] = { + [sym_file_descriptor] = ACTIONS(3293), + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_PIPE_AMP] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [anon_sym_EQ_TILDE] = ACTIONS(4614), + [anon_sym_EQ_EQ] = ACTIONS(4614), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_GT_GT] = ACTIONS(3293), + [anon_sym_AMP_GT] = ACTIONS(4614), + [anon_sym_AMP_GT_GT] = ACTIONS(3293), + [anon_sym_LT_AMP] = ACTIONS(3293), + [anon_sym_GT_AMP] = ACTIONS(3293), + [anon_sym_LT_LT] = ACTIONS(4614), + [anon_sym_LT_LT_DASH] = ACTIONS(3293), + [anon_sym_LT_LT_LT] = ACTIONS(3293), + [sym__special_characters] = ACTIONS(4614), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4614), + [sym_raw_string] = ACTIONS(3293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3293), + [anon_sym_LT_LPAREN] = ACTIONS(3293), + [anon_sym_GT_LPAREN] = ACTIONS(3293), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3295), + }, + [1737] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), [anon_sym_RBRACE] = ACTIONS(5083), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_comment] = ACTIONS(56), }, - [1741] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5085), + [1738] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5085), + [sym_comment] = ACTIONS(56), }, - [1742] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5067), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [1739] = { + [anon_sym_RBRACE] = ACTIONS(5085), + [sym_comment] = ACTIONS(56), }, - [1743] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), + [1740] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), [aux_sym_expansion_repeat1] = STATE(2402), [anon_sym_RBRACE] = ACTIONS(5087), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [1744] = { - [sym_file_descriptor] = ACTIONS(3412), - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(4634), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [anon_sym_EQ_TILDE] = ACTIONS(4634), - [anon_sym_EQ_EQ] = ACTIONS(4634), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), - [anon_sym_GT_GT] = ACTIONS(3412), - [anon_sym_AMP_GT] = ACTIONS(4634), - [anon_sym_AMP_GT_GT] = ACTIONS(3412), - [anon_sym_LT_AMP] = ACTIONS(3412), - [anon_sym_GT_AMP] = ACTIONS(3412), - [anon_sym_LT_LT] = ACTIONS(4634), - [anon_sym_LT_LT_DASH] = ACTIONS(3412), - [anon_sym_LT_LT_LT] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(4634), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(4634), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), + [1741] = { + [sym_file_descriptor] = ACTIONS(3357), + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(4622), + [anon_sym_RPAREN] = ACTIONS(3357), + [anon_sym_PIPE_AMP] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [anon_sym_EQ_TILDE] = ACTIONS(4622), + [anon_sym_EQ_EQ] = ACTIONS(4622), + [anon_sym_LT] = ACTIONS(4622), + [anon_sym_GT] = ACTIONS(4622), + [anon_sym_GT_GT] = ACTIONS(3357), + [anon_sym_AMP_GT] = ACTIONS(4622), + [anon_sym_AMP_GT_GT] = ACTIONS(3357), + [anon_sym_LT_AMP] = ACTIONS(3357), + [anon_sym_GT_AMP] = ACTIONS(3357), + [anon_sym_LT_LT] = ACTIONS(4622), + [anon_sym_LT_LT_DASH] = ACTIONS(3357), + [anon_sym_LT_LT_LT] = ACTIONS(3357), + [sym__special_characters] = ACTIONS(4622), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(4622), + [sym_raw_string] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3357), + [anon_sym_LT_LPAREN] = ACTIONS(3357), + [anon_sym_GT_LPAREN] = ACTIONS(3357), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3414), + [sym_word] = ACTIONS(3359), }, - [1745] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2404), - [anon_sym_RBRACE] = ACTIONS(5089), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1746] = { - [sym_file_redirect] = STATE(2405), - [sym_file_descriptor] = ACTIONS(3466), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_RPAREN] = ACTIONS(4985), - [anon_sym_PIPE_AMP] = ACTIONS(4985), - [anon_sym_AMP_AMP] = ACTIONS(4985), - [anon_sym_PIPE_PIPE] = ACTIONS(4985), - [anon_sym_LT] = ACTIONS(3472), - [anon_sym_GT] = ACTIONS(3472), - [anon_sym_GT_GT] = ACTIONS(3474), - [anon_sym_AMP_GT] = ACTIONS(3472), - [anon_sym_AMP_GT_GT] = ACTIONS(3474), - [anon_sym_LT_AMP] = ACTIONS(3474), - [anon_sym_GT_AMP] = ACTIONS(3474), - [sym_comment] = ACTIONS(56), - }, - [1747] = { - [aux_sym_concatenation_repeat1] = STATE(1751), - [sym_file_descriptor] = ACTIONS(1239), - [sym__concat] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(1241), - [anon_sym_RPAREN] = ACTIONS(1239), - [anon_sym_PIPE_AMP] = ACTIONS(1239), - [anon_sym_AMP_AMP] = ACTIONS(1239), - [anon_sym_PIPE_PIPE] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1241), - [anon_sym_GT] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1239), - [anon_sym_AMP_GT] = ACTIONS(1241), - [anon_sym_AMP_GT_GT] = ACTIONS(1239), - [anon_sym_LT_AMP] = ACTIONS(1239), - [anon_sym_GT_AMP] = ACTIONS(1239), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_LT_LT_DASH] = ACTIONS(1239), - [anon_sym_LT_LT_LT] = ACTIONS(1239), - [sym_comment] = ACTIONS(56), - }, - [1748] = { - [aux_sym_concatenation_repeat1] = STATE(1751), - [sym_file_descriptor] = ACTIONS(1243), - [sym__concat] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_PIPE_AMP] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1243), - [anon_sym_PIPE_PIPE] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1243), - [anon_sym_AMP_GT] = ACTIONS(1245), - [anon_sym_AMP_GT_GT] = ACTIONS(1243), - [anon_sym_LT_AMP] = ACTIONS(1243), - [anon_sym_GT_AMP] = ACTIONS(1243), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_LT_LT_DASH] = ACTIONS(1243), - [anon_sym_LT_LT_LT] = ACTIONS(1243), - [sym_comment] = ACTIONS(56), - }, - [1749] = { - [sym_file_descriptor] = ACTIONS(1243), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_PIPE_AMP] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1243), - [anon_sym_PIPE_PIPE] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1243), - [anon_sym_AMP_GT] = ACTIONS(1245), - [anon_sym_AMP_GT_GT] = ACTIONS(1243), - [anon_sym_LT_AMP] = ACTIONS(1243), - [anon_sym_GT_AMP] = ACTIONS(1243), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_LT_LT_DASH] = ACTIONS(1243), - [anon_sym_LT_LT_LT] = ACTIONS(1243), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_comment] = ACTIONS(56), - }, - [1750] = { - [sym_string] = STATE(2406), - [sym_simple_expansion] = STATE(2406), - [sym_string_expansion] = STATE(2406), - [sym_expansion] = STATE(2406), - [sym_command_substitution] = STATE(2406), - [sym_process_substitution] = STATE(2406), - [sym__special_characters] = ACTIONS(5091), - [anon_sym_DQUOTE] = ACTIONS(2218), - [anon_sym_DOLLAR] = ACTIONS(2220), - [sym_raw_string] = ACTIONS(5093), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2224), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2226), - [anon_sym_BQUOTE] = ACTIONS(2228), - [anon_sym_LT_LPAREN] = ACTIONS(2230), - [anon_sym_GT_LPAREN] = ACTIONS(2230), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5091), - }, - [1751] = { - [aux_sym_concatenation_repeat1] = STATE(2407), - [sym_file_descriptor] = ACTIONS(788), - [sym__concat] = ACTIONS(3680), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_PIPE_AMP] = ACTIONS(788), - [anon_sym_AMP_AMP] = ACTIONS(788), - [anon_sym_PIPE_PIPE] = ACTIONS(788), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_GT] = ACTIONS(1567), - [anon_sym_GT_GT] = ACTIONS(788), - [anon_sym_AMP_GT] = ACTIONS(1567), - [anon_sym_AMP_GT_GT] = ACTIONS(788), - [anon_sym_LT_AMP] = ACTIONS(788), - [anon_sym_GT_AMP] = ACTIONS(788), - [anon_sym_LT_LT] = ACTIONS(1567), - [anon_sym_LT_LT_DASH] = ACTIONS(788), - [anon_sym_LT_LT_LT] = ACTIONS(788), - [sym_comment] = ACTIONS(56), - }, - [1752] = { - [sym_file_descriptor] = ACTIONS(792), - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_LT] = ACTIONS(1569), - [anon_sym_GT] = ACTIONS(1569), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_AMP_GT] = ACTIONS(1569), - [anon_sym_AMP_GT_GT] = ACTIONS(792), - [anon_sym_LT_AMP] = ACTIONS(792), - [anon_sym_GT_AMP] = ACTIONS(792), - [anon_sym_LT_LT] = ACTIONS(1569), - [anon_sym_LT_LT_DASH] = ACTIONS(792), - [anon_sym_LT_LT_LT] = ACTIONS(792), - [sym_comment] = ACTIONS(56), - }, - [1753] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(5095), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1754] = { - [sym_file_descriptor] = ACTIONS(824), - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_PIPE_AMP] = ACTIONS(824), - [anon_sym_AMP_AMP] = ACTIONS(824), - [anon_sym_PIPE_PIPE] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(824), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(824), - [anon_sym_LT_AMP] = ACTIONS(824), - [anon_sym_GT_AMP] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(1573), - [anon_sym_LT_LT_DASH] = ACTIONS(824), - [anon_sym_LT_LT_LT] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - }, - [1755] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1575), - [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(1575), - [anon_sym_GT] = ACTIONS(1575), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(1575), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [anon_sym_LT_LT] = ACTIONS(1575), - [anon_sym_LT_LT_DASH] = ACTIONS(828), - [anon_sym_LT_LT_LT] = ACTIONS(828), - [sym_comment] = ACTIONS(56), - }, - [1756] = { - [sym_file_descriptor] = ACTIONS(832), - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1577), - [anon_sym_GT_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(1577), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT_LT_DASH] = ACTIONS(832), - [anon_sym_LT_LT_LT] = ACTIONS(832), - [sym_comment] = ACTIONS(56), - }, - [1757] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(5097), - [sym_comment] = ACTIONS(56), - }, - [1758] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2412), - [anon_sym_RBRACE] = ACTIONS(5099), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5101), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1759] = { - [sym_subscript] = STATE(2416), - [sym_variable_name] = ACTIONS(5103), - [anon_sym_DOLLAR] = ACTIONS(5105), - [anon_sym_DASH] = ACTIONS(5105), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5107), - [anon_sym_STAR] = ACTIONS(5105), - [anon_sym_AT] = ACTIONS(5105), - [anon_sym_QMARK] = ACTIONS(5105), - [anon_sym_0] = ACTIONS(5109), - [anon_sym__] = ACTIONS(5109), - }, - [1760] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2419), - [anon_sym_RBRACE] = ACTIONS(5111), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5113), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1761] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2422), - [anon_sym_RBRACE] = ACTIONS(5115), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5117), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1762] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5119), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [1763] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5119), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1764] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(5119), - [sym_comment] = ACTIONS(56), - }, - [1765] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(5119), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1766] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5121), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [1767] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5121), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1768] = { - [sym_file_descriptor] = ACTIONS(4072), - [anon_sym_PIPE] = ACTIONS(5123), - [anon_sym_RPAREN] = ACTIONS(4072), - [anon_sym_PIPE_AMP] = ACTIONS(4072), - [anon_sym_AMP_AMP] = ACTIONS(4072), - [anon_sym_PIPE_PIPE] = ACTIONS(4072), - [anon_sym_LT] = ACTIONS(5123), - [anon_sym_GT] = ACTIONS(5123), - [anon_sym_GT_GT] = ACTIONS(4072), - [anon_sym_AMP_GT] = ACTIONS(5123), - [anon_sym_AMP_GT_GT] = ACTIONS(4072), - [anon_sym_LT_AMP] = ACTIONS(4072), - [anon_sym_GT_AMP] = ACTIONS(4072), - [anon_sym_LT_LT] = ACTIONS(5123), - [anon_sym_LT_LT_DASH] = ACTIONS(4072), - [anon_sym_LT_LT_LT] = ACTIONS(4072), - [anon_sym_BQUOTE] = ACTIONS(4072), - [sym_comment] = ACTIONS(56), - }, - [1769] = { - [sym_simple_expansion] = STATE(1218), - [sym_expansion] = STATE(1218), - [aux_sym_heredoc_repeat1] = STATE(1902), - [sym__heredoc_middle] = ACTIONS(2440), - [sym__heredoc_end] = ACTIONS(5125), - [anon_sym_DOLLAR] = ACTIONS(2444), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2446), - [sym_comment] = ACTIONS(56), - }, - [1770] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1101), - [sym_file_descriptor] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_RPAREN] = ACTIONS(5129), - [anon_sym_PIPE_AMP] = ACTIONS(5129), - [anon_sym_AMP_AMP] = ACTIONS(5129), - [anon_sym_PIPE_PIPE] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(988), - [anon_sym_GT] = ACTIONS(988), - [anon_sym_GT_GT] = ACTIONS(990), - [anon_sym_AMP_GT] = ACTIONS(988), - [anon_sym_AMP_GT_GT] = ACTIONS(990), - [anon_sym_LT_AMP] = ACTIONS(990), - [anon_sym_GT_AMP] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(996), - [sym_comment] = ACTIONS(56), - }, - [1771] = { - [sym_string] = STATE(2426), - [sym_simple_expansion] = STATE(2426), - [sym_string_expansion] = STATE(2426), - [sym_expansion] = STATE(2426), - [sym_command_substitution] = STATE(2426), - [sym_process_substitution] = STATE(2426), - [sym__special_characters] = ACTIONS(5131), - [anon_sym_DQUOTE] = ACTIONS(2252), - [anon_sym_DOLLAR] = ACTIONS(2254), - [sym_raw_string] = ACTIONS(5133), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2260), - [anon_sym_BQUOTE] = ACTIONS(2262), - [anon_sym_LT_LPAREN] = ACTIONS(2264), - [anon_sym_GT_LPAREN] = ACTIONS(2264), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5131), - }, - [1772] = { - [aux_sym_concatenation_repeat1] = STATE(2427), - [sym_file_descriptor] = ACTIONS(788), - [sym__concat] = ACTIONS(3768), - [sym_variable_name] = ACTIONS(788), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_PIPE_AMP] = ACTIONS(788), - [anon_sym_AMP_AMP] = ACTIONS(788), - [anon_sym_PIPE_PIPE] = ACTIONS(788), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_GT] = ACTIONS(1567), - [anon_sym_GT_GT] = ACTIONS(788), - [anon_sym_AMP_GT] = ACTIONS(1567), - [anon_sym_AMP_GT_GT] = ACTIONS(788), - [anon_sym_LT_AMP] = ACTIONS(788), - [anon_sym_GT_AMP] = ACTIONS(788), - [sym__special_characters] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(788), - [anon_sym_DOLLAR] = ACTIONS(1567), - [sym_raw_string] = ACTIONS(788), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [anon_sym_LT_LPAREN] = ACTIONS(788), - [anon_sym_GT_LPAREN] = ACTIONS(788), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1567), - }, - [1773] = { - [sym_file_descriptor] = ACTIONS(792), - [sym__concat] = ACTIONS(792), - [sym_variable_name] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_LT] = ACTIONS(1569), - [anon_sym_GT] = ACTIONS(1569), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_AMP_GT] = ACTIONS(1569), - [anon_sym_AMP_GT_GT] = ACTIONS(792), - [anon_sym_LT_AMP] = ACTIONS(792), - [anon_sym_GT_AMP] = ACTIONS(792), - [sym__special_characters] = ACTIONS(1569), - [anon_sym_DQUOTE] = ACTIONS(792), - [anon_sym_DOLLAR] = ACTIONS(1569), - [sym_raw_string] = ACTIONS(792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [anon_sym_LT_LPAREN] = ACTIONS(792), - [anon_sym_GT_LPAREN] = ACTIONS(792), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1569), - }, - [1774] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(5135), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1775] = { - [sym_file_descriptor] = ACTIONS(824), - [sym__concat] = ACTIONS(824), - [sym_variable_name] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_PIPE_AMP] = ACTIONS(824), - [anon_sym_AMP_AMP] = ACTIONS(824), - [anon_sym_PIPE_PIPE] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(824), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(824), - [anon_sym_LT_AMP] = ACTIONS(824), - [anon_sym_GT_AMP] = ACTIONS(824), - [sym__special_characters] = ACTIONS(1573), - [anon_sym_DQUOTE] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(1573), - [sym_raw_string] = ACTIONS(824), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(824), - [anon_sym_BQUOTE] = ACTIONS(824), - [anon_sym_LT_LPAREN] = ACTIONS(824), - [anon_sym_GT_LPAREN] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1573), - }, - [1776] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [sym_variable_name] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1575), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(1575), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [sym__special_characters] = ACTIONS(1575), - [anon_sym_DQUOTE] = ACTIONS(828), - [anon_sym_DOLLAR] = ACTIONS(1575), - [sym_raw_string] = ACTIONS(828), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [anon_sym_LT_LPAREN] = ACTIONS(828), - [anon_sym_GT_LPAREN] = ACTIONS(828), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1575), - }, - [1777] = { - [sym_file_descriptor] = ACTIONS(832), - [sym__concat] = ACTIONS(832), - [sym_variable_name] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1577), - [anon_sym_GT_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(1577), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [sym__special_characters] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(1577), - [sym_raw_string] = ACTIONS(832), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [anon_sym_LT_LPAREN] = ACTIONS(832), - [anon_sym_GT_LPAREN] = ACTIONS(832), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1577), - }, - [1778] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(5137), - [sym_comment] = ACTIONS(56), - }, - [1779] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2432), - [anon_sym_RBRACE] = ACTIONS(5139), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5141), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1780] = { - [sym_subscript] = STATE(2436), - [sym_variable_name] = ACTIONS(5143), - [anon_sym_DOLLAR] = ACTIONS(5145), - [anon_sym_DASH] = ACTIONS(5145), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5147), - [anon_sym_STAR] = ACTIONS(5145), - [anon_sym_AT] = ACTIONS(5145), - [anon_sym_QMARK] = ACTIONS(5145), - [anon_sym_0] = ACTIONS(5149), - [anon_sym__] = ACTIONS(5149), - }, - [1781] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2439), - [anon_sym_RBRACE] = ACTIONS(5151), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5153), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1782] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2442), - [anon_sym_RBRACE] = ACTIONS(5155), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5157), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1783] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5159), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [1784] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5159), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1785] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(5159), - [sym_comment] = ACTIONS(56), - }, - [1786] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(5159), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1787] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5161), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [1788] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5161), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1789] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1192), - [sym_file_descriptor] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(4937), - [anon_sym_PIPE_AMP] = ACTIONS(4939), - [anon_sym_AMP_AMP] = ACTIONS(4939), - [anon_sym_PIPE_PIPE] = ACTIONS(4939), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_GT_GT] = ACTIONS(1082), - [anon_sym_AMP_GT] = ACTIONS(1080), - [anon_sym_AMP_GT_GT] = ACTIONS(1082), - [anon_sym_LT_AMP] = ACTIONS(1082), - [anon_sym_GT_AMP] = ACTIONS(1082), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(1084), - [anon_sym_BQUOTE] = ACTIONS(4939), - [sym_comment] = ACTIONS(56), - }, - [1790] = { - [sym_compound_statement] = STATE(2445), - [anon_sym_LBRACE] = ACTIONS(2076), - [sym_comment] = ACTIONS(56), - }, - [1791] = { - [anon_sym_LT] = ACTIONS(5163), - [anon_sym_GT] = ACTIONS(5163), - [anon_sym_GT_GT] = ACTIONS(5165), - [anon_sym_AMP_GT] = ACTIONS(5163), - [anon_sym_AMP_GT_GT] = ACTIONS(5165), - [anon_sym_LT_AMP] = ACTIONS(5165), - [anon_sym_GT_AMP] = ACTIONS(5165), - [sym_comment] = ACTIONS(56), - }, - [1792] = { - [sym_concatenation] = STATE(2349), - [sym_string] = STATE(2450), - [sym_simple_expansion] = STATE(2450), - [sym_string_expansion] = STATE(2450), - [sym_expansion] = STATE(2450), - [sym_command_substitution] = STATE(2450), - [sym_process_substitution] = STATE(2450), - [sym__special_characters] = ACTIONS(5167), - [anon_sym_DQUOTE] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [sym_raw_string] = ACTIONS(5173), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5177), - [anon_sym_BQUOTE] = ACTIONS(5179), - [anon_sym_LT_LPAREN] = ACTIONS(5181), - [anon_sym_GT_LPAREN] = ACTIONS(5181), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5183), - }, - [1793] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1192), - [sym_file_descriptor] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(4993), - [anon_sym_PIPE_AMP] = ACTIONS(4995), - [anon_sym_AMP_AMP] = ACTIONS(4995), - [anon_sym_PIPE_PIPE] = ACTIONS(4995), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_GT_GT] = ACTIONS(1082), - [anon_sym_AMP_GT] = ACTIONS(1080), - [anon_sym_AMP_GT_GT] = ACTIONS(1082), - [anon_sym_LT_AMP] = ACTIONS(1082), - [anon_sym_GT_AMP] = ACTIONS(1082), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(1084), - [anon_sym_BQUOTE] = ACTIONS(4995), - [sym_comment] = ACTIONS(56), - }, - [1794] = { - [aux_sym_concatenation_repeat1] = STATE(1119), - [sym__concat] = ACTIONS(2274), - [sym_variable_name] = ACTIONS(1301), - [anon_sym_PIPE] = ACTIONS(3424), - [anon_sym_PIPE_AMP] = ACTIONS(1301), - [anon_sym_AMP_AMP] = ACTIONS(1301), - [anon_sym_PIPE_PIPE] = ACTIONS(1301), - [sym__special_characters] = ACTIONS(3424), - [anon_sym_DQUOTE] = ACTIONS(1301), - [anon_sym_DOLLAR] = ACTIONS(3424), - [sym_raw_string] = ACTIONS(1301), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1301), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1301), - [anon_sym_BQUOTE] = ACTIONS(1301), - [anon_sym_LT_LPAREN] = ACTIONS(1301), - [anon_sym_GT_LPAREN] = ACTIONS(1301), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3424), - [sym_word] = ACTIONS(1305), - }, - [1795] = { - [aux_sym_concatenation_repeat1] = STATE(1119), - [sym__concat] = ACTIONS(2274), - [sym_variable_name] = ACTIONS(1277), - [anon_sym_PIPE] = ACTIONS(3418), - [anon_sym_PIPE_AMP] = ACTIONS(1277), - [anon_sym_AMP_AMP] = ACTIONS(1277), - [anon_sym_PIPE_PIPE] = ACTIONS(1277), - [sym__special_characters] = ACTIONS(3418), - [anon_sym_DQUOTE] = ACTIONS(1277), - [anon_sym_DOLLAR] = ACTIONS(3418), - [sym_raw_string] = ACTIONS(1277), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1277), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1277), - [anon_sym_BQUOTE] = ACTIONS(1277), - [anon_sym_LT_LPAREN] = ACTIONS(1277), - [anon_sym_GT_LPAREN] = ACTIONS(1277), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3418), - [sym_word] = ACTIONS(1279), - }, - [1796] = { - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), - [sym_word] = ACTIONS(1888), - }, - [1797] = { - [aux_sym_concatenation_repeat1] = STATE(1797), - [sym__concat] = ACTIONS(5185), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), - [sym_word] = ACTIONS(1888), - }, - [1798] = { - [sym__concat] = ACTIONS(1923), - [sym_variable_name] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_PIPE_AMP] = ACTIONS(1923), - [anon_sym_AMP_AMP] = ACTIONS(1923), - [anon_sym_PIPE_PIPE] = ACTIONS(1923), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(1923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), - [anon_sym_BQUOTE] = ACTIONS(1923), - [anon_sym_LT_LPAREN] = ACTIONS(1923), - [anon_sym_GT_LPAREN] = ACTIONS(1923), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), - [sym_word] = ACTIONS(1925), - }, - [1799] = { - [sym_concatenation] = STATE(2458), - [sym_string] = STATE(2457), - [sym_simple_expansion] = STATE(2457), - [sym_string_expansion] = STATE(2457), - [sym_expansion] = STATE(2457), - [sym_command_substitution] = STATE(2457), - [sym_process_substitution] = STATE(2457), - [anon_sym_RBRACE] = ACTIONS(5188), - [sym__special_characters] = ACTIONS(5190), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(5192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5194), - }, - [1800] = { - [sym__concat] = ACTIONS(1968), - [sym_variable_name] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1968), - [anon_sym_PIPE_PIPE] = ACTIONS(1968), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1968), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), + [1742] = { + [sym_concatenation] = STATE(2405), + [sym_string] = STATE(2404), + [sym_simple_expansion] = STATE(2404), + [sym_string_expansion] = STATE(2404), + [sym_expansion] = STATE(2404), + [sym_command_substitution] = STATE(2404), + [sym_process_substitution] = STATE(2404), + [anon_sym_RBRACE] = ACTIONS(5085), + [sym__special_characters] = ACTIONS(5089), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(5091), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), [anon_sym_LT_LPAREN] = ACTIONS(1968), [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3071), - [sym_word] = ACTIONS(1970), + [sym_word] = ACTIONS(5093), }, - [1801] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5196), - }, - [1802] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5198), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1803] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(5200), - [sym_comment] = ACTIONS(56), - }, - [1804] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2464), - [anon_sym_RBRACE] = ACTIONS(5202), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5204), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1805] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2467), - [anon_sym_RBRACE] = ACTIONS(5206), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5208), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1806] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2469), - [anon_sym_RBRACE] = ACTIONS(5188), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5210), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1807] = { - [sym__concat] = ACTIONS(2022), - [sym_variable_name] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PIPE_AMP] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), - [sym__special_characters] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(3089), - [sym_raw_string] = ACTIONS(2022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_BQUOTE] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2022), - [anon_sym_GT_LPAREN] = ACTIONS(2022), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3089), - [sym_word] = ACTIONS(2024), - }, - [1808] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5212), - }, - [1809] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1810] = { - [sym__concat] = ACTIONS(2030), - [sym_variable_name] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(2030), - [anon_sym_AMP_AMP] = ACTIONS(2030), - [anon_sym_PIPE_PIPE] = ACTIONS(2030), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(2030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3095), - [sym_word] = ACTIONS(2032), - }, - [1811] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5216), - }, - [1812] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5188), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1813] = { - [sym__concat] = ACTIONS(2190), - [sym_variable_name] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), - [anon_sym_BQUOTE] = ACTIONS(2190), - [anon_sym_LT_LPAREN] = ACTIONS(2190), - [anon_sym_GT_LPAREN] = ACTIONS(2190), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3099), - [sym_word] = ACTIONS(2192), - }, - [1814] = { - [sym__concat] = ACTIONS(2396), - [sym_variable_name] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_PIPE_AMP] = ACTIONS(2396), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [sym__special_characters] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(3101), - [sym_raw_string] = ACTIONS(2396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_LT_LPAREN] = ACTIONS(2396), - [anon_sym_GT_LPAREN] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3101), - [sym_word] = ACTIONS(2398), - }, - [1815] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), - [sym_word] = ACTIONS(1888), - }, - [1816] = { - [aux_sym_concatenation_repeat1] = STATE(1816), - [sym__concat] = ACTIONS(5218), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3056), - [sym_word] = ACTIONS(1888), - }, - [1817] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_PIPE_AMP] = ACTIONS(1923), - [anon_sym_AMP_AMP] = ACTIONS(1923), - [anon_sym_PIPE_PIPE] = ACTIONS(1923), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(1923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), - [anon_sym_BQUOTE] = ACTIONS(1923), - [anon_sym_LT_LPAREN] = ACTIONS(1923), - [anon_sym_GT_LPAREN] = ACTIONS(1923), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3061), - [sym_word] = ACTIONS(1925), - }, - [1818] = { - [sym_concatenation] = STATE(2476), - [sym_string] = STATE(2475), - [sym_simple_expansion] = STATE(2475), - [sym_string_expansion] = STATE(2475), - [sym_expansion] = STATE(2475), - [sym_command_substitution] = STATE(2475), - [sym_process_substitution] = STATE(2475), - [anon_sym_RBRACE] = ACTIONS(5221), - [sym__special_characters] = ACTIONS(5223), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(5225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5227), - }, - [1819] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1968), - [anon_sym_PIPE_PIPE] = ACTIONS(1968), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1968), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3071), - [sym_word] = ACTIONS(1970), - }, - [1820] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5229), - }, - [1821] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5231), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1822] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(5233), - [sym_comment] = ACTIONS(56), - }, - [1823] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2482), - [anon_sym_RBRACE] = ACTIONS(5235), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5237), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1824] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2485), - [anon_sym_RBRACE] = ACTIONS(5239), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5241), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1825] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2487), - [anon_sym_RBRACE] = ACTIONS(5221), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5243), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1826] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PIPE_AMP] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), - [sym__special_characters] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(3089), - [sym_raw_string] = ACTIONS(2022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_BQUOTE] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2022), - [anon_sym_GT_LPAREN] = ACTIONS(2022), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3089), - [sym_word] = ACTIONS(2024), - }, - [1827] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5245), - }, - [1828] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5247), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1829] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(2030), - [anon_sym_AMP_AMP] = ACTIONS(2030), - [anon_sym_PIPE_PIPE] = ACTIONS(2030), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(2030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3095), - [sym_word] = ACTIONS(2032), - }, - [1830] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5249), - }, - [1831] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5221), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1832] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), - [anon_sym_BQUOTE] = ACTIONS(2190), - [anon_sym_LT_LPAREN] = ACTIONS(2190), - [anon_sym_GT_LPAREN] = ACTIONS(2190), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3099), - [sym_word] = ACTIONS(2192), - }, - [1833] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_PIPE_AMP] = ACTIONS(2396), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [sym__special_characters] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(3101), - [sym_raw_string] = ACTIONS(2396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_LT_LPAREN] = ACTIONS(2396), - [anon_sym_GT_LPAREN] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3101), - [sym_word] = ACTIONS(2398), - }, - [1834] = { - [sym_file_descriptor] = ACTIONS(3283), - [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(4602), - [anon_sym_PIPE_AMP] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [anon_sym_EQ_TILDE] = ACTIONS(4602), - [anon_sym_EQ_EQ] = ACTIONS(4602), - [anon_sym_LT] = ACTIONS(4602), - [anon_sym_GT] = ACTIONS(4602), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_AMP_GT] = ACTIONS(4602), - [anon_sym_AMP_GT_GT] = ACTIONS(3283), - [anon_sym_LT_AMP] = ACTIONS(3283), - [anon_sym_GT_AMP] = ACTIONS(3283), - [anon_sym_LT_LT] = ACTIONS(4602), - [anon_sym_LT_LT_DASH] = ACTIONS(3283), - [anon_sym_LT_LT_LT] = ACTIONS(3283), - [sym__special_characters] = ACTIONS(4602), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(4602), - [sym_raw_string] = ACTIONS(3283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), - [anon_sym_BQUOTE] = ACTIONS(3283), - [anon_sym_LT_LPAREN] = ACTIONS(3283), - [anon_sym_GT_LPAREN] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3285), - }, - [1835] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5251), - [sym_comment] = ACTIONS(56), - }, - [1836] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5253), - [sym_comment] = ACTIONS(56), - }, - [1837] = { - [anon_sym_RBRACE] = ACTIONS(5253), - [sym_comment] = ACTIONS(56), - }, - [1838] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2494), - [anon_sym_RBRACE] = ACTIONS(5255), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1839] = { - [sym_file_descriptor] = ACTIONS(3347), - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_PIPE_AMP] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [anon_sym_EQ_TILDE] = ACTIONS(4610), - [anon_sym_EQ_EQ] = ACTIONS(4610), - [anon_sym_LT] = ACTIONS(4610), - [anon_sym_GT] = ACTIONS(4610), - [anon_sym_GT_GT] = ACTIONS(3347), - [anon_sym_AMP_GT] = ACTIONS(4610), - [anon_sym_AMP_GT_GT] = ACTIONS(3347), - [anon_sym_LT_AMP] = ACTIONS(3347), - [anon_sym_GT_AMP] = ACTIONS(3347), - [anon_sym_LT_LT] = ACTIONS(4610), - [anon_sym_LT_LT_DASH] = ACTIONS(3347), - [anon_sym_LT_LT_LT] = ACTIONS(3347), - [sym__special_characters] = ACTIONS(4610), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(3347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), - [anon_sym_BQUOTE] = ACTIONS(3347), - [anon_sym_LT_LPAREN] = ACTIONS(3347), - [anon_sym_GT_LPAREN] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3349), - }, - [1840] = { - [sym_concatenation] = STATE(2497), - [sym_string] = STATE(2496), - [sym_simple_expansion] = STATE(2496), - [sym_string_expansion] = STATE(2496), - [sym_expansion] = STATE(2496), - [sym_command_substitution] = STATE(2496), - [sym_process_substitution] = STATE(2496), - [anon_sym_RBRACE] = ACTIONS(5253), - [sym__special_characters] = ACTIONS(5257), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(5259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5261), - }, - [1841] = { - [sym_file_descriptor] = ACTIONS(3392), - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(4618), - [anon_sym_PIPE_AMP] = ACTIONS(3392), - [anon_sym_AMP_AMP] = ACTIONS(3392), - [anon_sym_PIPE_PIPE] = ACTIONS(3392), - [anon_sym_EQ_TILDE] = ACTIONS(4618), - [anon_sym_EQ_EQ] = ACTIONS(4618), - [anon_sym_LT] = ACTIONS(4618), - [anon_sym_GT] = ACTIONS(4618), - [anon_sym_GT_GT] = ACTIONS(3392), - [anon_sym_AMP_GT] = ACTIONS(4618), - [anon_sym_AMP_GT_GT] = ACTIONS(3392), - [anon_sym_LT_AMP] = ACTIONS(3392), - [anon_sym_GT_AMP] = ACTIONS(3392), - [anon_sym_LT_LT] = ACTIONS(4618), - [anon_sym_LT_LT_DASH] = ACTIONS(3392), - [anon_sym_LT_LT_LT] = ACTIONS(3392), - [sym__special_characters] = ACTIONS(4618), - [anon_sym_DQUOTE] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(4618), - [sym_raw_string] = ACTIONS(3392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), - [anon_sym_BQUOTE] = ACTIONS(3392), - [anon_sym_LT_LPAREN] = ACTIONS(3392), - [anon_sym_GT_LPAREN] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3394), - }, - [1842] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5263), - }, - [1843] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5265), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1844] = { - [sym_file_descriptor] = ACTIONS(3400), - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(4624), - [anon_sym_PIPE_AMP] = ACTIONS(3400), - [anon_sym_AMP_AMP] = ACTIONS(3400), - [anon_sym_PIPE_PIPE] = ACTIONS(3400), - [anon_sym_EQ_TILDE] = ACTIONS(4624), - [anon_sym_EQ_EQ] = ACTIONS(4624), - [anon_sym_LT] = ACTIONS(4624), - [anon_sym_GT] = ACTIONS(4624), - [anon_sym_GT_GT] = ACTIONS(3400), - [anon_sym_AMP_GT] = ACTIONS(4624), - [anon_sym_AMP_GT_GT] = ACTIONS(3400), - [anon_sym_LT_AMP] = ACTIONS(3400), - [anon_sym_GT_AMP] = ACTIONS(3400), - [anon_sym_LT_LT] = ACTIONS(4624), - [anon_sym_LT_LT_DASH] = ACTIONS(3400), - [anon_sym_LT_LT_LT] = ACTIONS(3400), - [sym__special_characters] = ACTIONS(4624), - [anon_sym_DQUOTE] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(4624), - [sym_raw_string] = ACTIONS(3400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), - [anon_sym_BQUOTE] = ACTIONS(3400), - [anon_sym_LT_LPAREN] = ACTIONS(3400), - [anon_sym_GT_LPAREN] = ACTIONS(3400), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3402), - }, - [1845] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5267), - }, - [1846] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5269), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1847] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5271), - }, - [1848] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5253), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1849] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2504), - [anon_sym_RBRACE] = ACTIONS(5273), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1850] = { - [sym_file_descriptor] = ACTIONS(3412), - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(4634), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [anon_sym_EQ_TILDE] = ACTIONS(4634), - [anon_sym_EQ_EQ] = ACTIONS(4634), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), - [anon_sym_GT_GT] = ACTIONS(3412), - [anon_sym_AMP_GT] = ACTIONS(4634), - [anon_sym_AMP_GT_GT] = ACTIONS(3412), - [anon_sym_LT_AMP] = ACTIONS(3412), - [anon_sym_GT_AMP] = ACTIONS(3412), - [anon_sym_LT_LT] = ACTIONS(4634), - [anon_sym_LT_LT_DASH] = ACTIONS(3412), - [anon_sym_LT_LT_LT] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(4634), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(4634), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3414), - }, - [1851] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2506), - [anon_sym_RBRACE] = ACTIONS(5275), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1852] = { - [sym_file_redirect] = STATE(2405), - [sym_file_descriptor] = ACTIONS(3792), - [anon_sym_PIPE] = ACTIONS(4983), - [anon_sym_PIPE_AMP] = ACTIONS(4985), - [anon_sym_AMP_AMP] = ACTIONS(4985), - [anon_sym_PIPE_PIPE] = ACTIONS(4985), - [anon_sym_LT] = ACTIONS(3794), - [anon_sym_GT] = ACTIONS(3794), - [anon_sym_GT_GT] = ACTIONS(3796), - [anon_sym_AMP_GT] = ACTIONS(3794), - [anon_sym_AMP_GT_GT] = ACTIONS(3796), - [anon_sym_LT_AMP] = ACTIONS(3796), - [anon_sym_GT_AMP] = ACTIONS(3796), - [anon_sym_BQUOTE] = ACTIONS(4985), - [sym_comment] = ACTIONS(56), - }, - [1853] = { - [aux_sym_concatenation_repeat1] = STATE(1856), - [sym_file_descriptor] = ACTIONS(1239), - [sym__concat] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(1241), - [anon_sym_PIPE_AMP] = ACTIONS(1239), - [anon_sym_AMP_AMP] = ACTIONS(1239), - [anon_sym_PIPE_PIPE] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1241), - [anon_sym_GT] = ACTIONS(1241), - [anon_sym_GT_GT] = ACTIONS(1239), - [anon_sym_AMP_GT] = ACTIONS(1241), - [anon_sym_AMP_GT_GT] = ACTIONS(1239), - [anon_sym_LT_AMP] = ACTIONS(1239), - [anon_sym_GT_AMP] = ACTIONS(1239), - [anon_sym_LT_LT] = ACTIONS(1241), - [anon_sym_LT_LT_DASH] = ACTIONS(1239), - [anon_sym_LT_LT_LT] = ACTIONS(1239), - [anon_sym_BQUOTE] = ACTIONS(1239), - [sym_comment] = ACTIONS(56), - }, - [1854] = { - [aux_sym_concatenation_repeat1] = STATE(1856), - [sym_file_descriptor] = ACTIONS(1243), - [sym__concat] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_PIPE_AMP] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1243), - [anon_sym_PIPE_PIPE] = ACTIONS(1243), - [anon_sym_LT] = ACTIONS(1245), - [anon_sym_GT] = ACTIONS(1245), - [anon_sym_GT_GT] = ACTIONS(1243), - [anon_sym_AMP_GT] = ACTIONS(1245), - [anon_sym_AMP_GT_GT] = ACTIONS(1243), - [anon_sym_LT_AMP] = ACTIONS(1243), - [anon_sym_GT_AMP] = ACTIONS(1243), - [anon_sym_LT_LT] = ACTIONS(1245), - [anon_sym_LT_LT_DASH] = ACTIONS(1243), - [anon_sym_LT_LT_LT] = ACTIONS(1243), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_comment] = ACTIONS(56), - }, - [1855] = { - [sym_string] = STATE(2507), - [sym_simple_expansion] = STATE(2507), - [sym_string_expansion] = STATE(2507), - [sym_expansion] = STATE(2507), - [sym_command_substitution] = STATE(2507), - [sym_process_substitution] = STATE(2507), - [sym__special_characters] = ACTIONS(5277), - [anon_sym_DQUOTE] = ACTIONS(2374), - [anon_sym_DOLLAR] = ACTIONS(2376), - [sym_raw_string] = ACTIONS(5279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2382), - [anon_sym_BQUOTE] = ACTIONS(2384), - [anon_sym_LT_LPAREN] = ACTIONS(2386), - [anon_sym_GT_LPAREN] = ACTIONS(2386), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5277), - }, - [1856] = { - [aux_sym_concatenation_repeat1] = STATE(2508), - [sym_file_descriptor] = ACTIONS(788), - [sym__concat] = ACTIONS(3968), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_PIPE_AMP] = ACTIONS(788), - [anon_sym_AMP_AMP] = ACTIONS(788), - [anon_sym_PIPE_PIPE] = ACTIONS(788), - [anon_sym_LT] = ACTIONS(1567), - [anon_sym_GT] = ACTIONS(1567), - [anon_sym_GT_GT] = ACTIONS(788), - [anon_sym_AMP_GT] = ACTIONS(1567), - [anon_sym_AMP_GT_GT] = ACTIONS(788), - [anon_sym_LT_AMP] = ACTIONS(788), - [anon_sym_GT_AMP] = ACTIONS(788), - [anon_sym_LT_LT] = ACTIONS(1567), - [anon_sym_LT_LT_DASH] = ACTIONS(788), - [anon_sym_LT_LT_LT] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [sym_comment] = ACTIONS(56), - }, - [1857] = { - [sym_file_descriptor] = ACTIONS(792), - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_LT] = ACTIONS(1569), - [anon_sym_GT] = ACTIONS(1569), - [anon_sym_GT_GT] = ACTIONS(792), - [anon_sym_AMP_GT] = ACTIONS(1569), - [anon_sym_AMP_GT_GT] = ACTIONS(792), - [anon_sym_LT_AMP] = ACTIONS(792), - [anon_sym_GT_AMP] = ACTIONS(792), - [anon_sym_LT_LT] = ACTIONS(1569), - [anon_sym_LT_LT_DASH] = ACTIONS(792), - [anon_sym_LT_LT_LT] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [sym_comment] = ACTIONS(56), - }, - [1858] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(5281), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [1859] = { - [sym_file_descriptor] = ACTIONS(824), - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_PIPE_AMP] = ACTIONS(824), - [anon_sym_AMP_AMP] = ACTIONS(824), - [anon_sym_PIPE_PIPE] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(1573), - [anon_sym_GT] = ACTIONS(1573), - [anon_sym_GT_GT] = ACTIONS(824), - [anon_sym_AMP_GT] = ACTIONS(1573), - [anon_sym_AMP_GT_GT] = ACTIONS(824), - [anon_sym_LT_AMP] = ACTIONS(824), - [anon_sym_GT_AMP] = ACTIONS(824), - [anon_sym_LT_LT] = ACTIONS(1573), - [anon_sym_LT_LT_DASH] = ACTIONS(824), - [anon_sym_LT_LT_LT] = ACTIONS(824), - [anon_sym_BQUOTE] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - }, - [1860] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [anon_sym_LT] = ACTIONS(1575), - [anon_sym_GT] = ACTIONS(1575), - [anon_sym_GT_GT] = ACTIONS(828), - [anon_sym_AMP_GT] = ACTIONS(1575), - [anon_sym_AMP_GT_GT] = ACTIONS(828), - [anon_sym_LT_AMP] = ACTIONS(828), - [anon_sym_GT_AMP] = ACTIONS(828), - [anon_sym_LT_LT] = ACTIONS(1575), - [anon_sym_LT_LT_DASH] = ACTIONS(828), - [anon_sym_LT_LT_LT] = ACTIONS(828), - [anon_sym_BQUOTE] = ACTIONS(828), - [sym_comment] = ACTIONS(56), - }, - [1861] = { - [sym_file_descriptor] = ACTIONS(832), - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_LT] = ACTIONS(1577), - [anon_sym_GT] = ACTIONS(1577), - [anon_sym_GT_GT] = ACTIONS(832), - [anon_sym_AMP_GT] = ACTIONS(1577), - [anon_sym_AMP_GT_GT] = ACTIONS(832), - [anon_sym_LT_AMP] = ACTIONS(832), - [anon_sym_GT_AMP] = ACTIONS(832), - [anon_sym_LT_LT] = ACTIONS(1577), - [anon_sym_LT_LT_DASH] = ACTIONS(832), - [anon_sym_LT_LT_LT] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [sym_comment] = ACTIONS(56), - }, - [1862] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(5283), - [sym_comment] = ACTIONS(56), - }, - [1863] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2513), - [anon_sym_RBRACE] = ACTIONS(5285), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5287), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1864] = { - [sym_subscript] = STATE(2517), - [sym_variable_name] = ACTIONS(5289), - [anon_sym_DOLLAR] = ACTIONS(5291), - [anon_sym_DASH] = ACTIONS(5291), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5293), - [anon_sym_STAR] = ACTIONS(5291), - [anon_sym_AT] = ACTIONS(5291), - [anon_sym_QMARK] = ACTIONS(5291), - [anon_sym_0] = ACTIONS(5295), - [anon_sym__] = ACTIONS(5295), - }, - [1865] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2520), - [anon_sym_RBRACE] = ACTIONS(5297), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5299), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1866] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2523), - [anon_sym_RBRACE] = ACTIONS(5301), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5303), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1867] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5305), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [1868] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5305), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1869] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(5305), - [sym_comment] = ACTIONS(56), - }, - [1870] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(5305), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1871] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5307), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [1872] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5307), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [1873] = { - [sym_file_redirect] = STATE(539), - [sym_heredoc_redirect] = STATE(539), - [sym_herestring_redirect] = STATE(539), - [aux_sym_while_statement_repeat1] = STATE(1192), - [sym_file_descriptor] = ACTIONS(1076), - [anon_sym_PIPE] = ACTIONS(5127), - [anon_sym_PIPE_AMP] = ACTIONS(5129), - [anon_sym_AMP_AMP] = ACTIONS(5129), - [anon_sym_PIPE_PIPE] = ACTIONS(5129), - [anon_sym_LT] = ACTIONS(1080), - [anon_sym_GT] = ACTIONS(1080), - [anon_sym_GT_GT] = ACTIONS(1082), - [anon_sym_AMP_GT] = ACTIONS(1080), - [anon_sym_AMP_GT_GT] = ACTIONS(1082), - [anon_sym_LT_AMP] = ACTIONS(1082), - [anon_sym_GT_AMP] = ACTIONS(1082), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_LT_LT_DASH] = ACTIONS(994), - [anon_sym_LT_LT_LT] = ACTIONS(1084), - [anon_sym_BQUOTE] = ACTIONS(5129), - [sym_comment] = ACTIONS(56), - }, - [1874] = { - [anon_sym_esac] = ACTIONS(4388), - [anon_sym_PIPE] = ACTIONS(4388), - [anon_sym_RPAREN] = ACTIONS(4388), - [anon_sym_SEMI_SEMI] = ACTIONS(4388), - [anon_sym_PIPE_AMP] = ACTIONS(4388), - [anon_sym_AMP_AMP] = ACTIONS(4388), - [anon_sym_PIPE_PIPE] = ACTIONS(4388), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4388), - [anon_sym_LF] = ACTIONS(4388), - [anon_sym_AMP] = ACTIONS(4388), - }, - [1875] = { - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1888), - [anon_sym_LT_LT_LT] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [1876] = { - [aux_sym_concatenation_repeat1] = STATE(1876), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(5309), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1888), - [anon_sym_LT_LT_LT] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [1877] = { - [sym_file_descriptor] = ACTIONS(1923), - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1925), - [anon_sym_GT_GT] = ACTIONS(1925), - [anon_sym_AMP_GT] = ACTIONS(1925), - [anon_sym_AMP_GT_GT] = ACTIONS(1925), - [anon_sym_LT_AMP] = ACTIONS(1925), - [anon_sym_GT_AMP] = ACTIONS(1925), - [anon_sym_LT_LT] = ACTIONS(1925), - [anon_sym_LT_LT_DASH] = ACTIONS(1925), - [anon_sym_LT_LT_LT] = ACTIONS(1925), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - }, - [1878] = { - [sym_concatenation] = STATE(2529), - [sym_string] = STATE(2528), - [sym_simple_expansion] = STATE(2528), - [sym_string_expansion] = STATE(2528), - [sym_expansion] = STATE(2528), - [sym_command_substitution] = STATE(2528), - [sym_process_substitution] = STATE(2528), - [anon_sym_RBRACE] = ACTIONS(5312), - [sym__special_characters] = ACTIONS(5314), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(5316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5318), - }, - [1879] = { - [sym_file_descriptor] = ACTIONS(1968), - [sym__concat] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_AMP_GT] = ACTIONS(1970), - [anon_sym_AMP_GT_GT] = ACTIONS(1970), - [anon_sym_LT_AMP] = ACTIONS(1970), - [anon_sym_GT_AMP] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_LT_LT_DASH] = ACTIONS(1970), - [anon_sym_LT_LT_LT] = ACTIONS(1970), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - }, - [1880] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5320), - }, - [1881] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5322), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1882] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(5324), - [sym_comment] = ACTIONS(56), - }, - [1883] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2535), - [anon_sym_RBRACE] = ACTIONS(5326), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5328), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1884] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2538), - [anon_sym_RBRACE] = ACTIONS(5330), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5332), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1885] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2540), - [anon_sym_RBRACE] = ACTIONS(5312), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5334), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1886] = { - [sym_file_descriptor] = ACTIONS(2022), - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym_AMP_GT] = ACTIONS(2024), - [anon_sym_AMP_GT_GT] = ACTIONS(2024), - [anon_sym_LT_AMP] = ACTIONS(2024), - [anon_sym_GT_AMP] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_LT_LT_DASH] = ACTIONS(2024), - [anon_sym_LT_LT_LT] = ACTIONS(2024), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - }, - [1887] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5336), - }, - [1888] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5338), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1889] = { - [sym_file_descriptor] = ACTIONS(2030), - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2032), - [anon_sym_GT] = ACTIONS(2032), - [anon_sym_GT_GT] = ACTIONS(2032), - [anon_sym_AMP_GT] = ACTIONS(2032), - [anon_sym_AMP_GT_GT] = ACTIONS(2032), - [anon_sym_LT_AMP] = ACTIONS(2032), - [anon_sym_GT_AMP] = ACTIONS(2032), - [anon_sym_LT_LT] = ACTIONS(2032), - [anon_sym_LT_LT_DASH] = ACTIONS(2032), - [anon_sym_LT_LT_LT] = ACTIONS(2032), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), - }, - [1890] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5340), - }, - [1891] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5312), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1892] = { - [sym_file_descriptor] = ACTIONS(2190), - [sym__concat] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_AMP_GT] = ACTIONS(2192), - [anon_sym_AMP_GT_GT] = ACTIONS(2192), - [anon_sym_LT_AMP] = ACTIONS(2192), - [anon_sym_GT_AMP] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_LT_LT_DASH] = ACTIONS(2192), - [anon_sym_LT_LT_LT] = ACTIONS(2192), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), - }, - [1893] = { - [sym_file_descriptor] = ACTIONS(2396), - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_GT] = ACTIONS(2398), - [anon_sym_GT_GT] = ACTIONS(2398), - [anon_sym_AMP_GT] = ACTIONS(2398), - [anon_sym_AMP_GT_GT] = ACTIONS(2398), - [anon_sym_LT_AMP] = ACTIONS(2398), - [anon_sym_GT_AMP] = ACTIONS(2398), - [anon_sym_LT_LT] = ACTIONS(2398), - [anon_sym_LT_LT_DASH] = ACTIONS(2398), - [anon_sym_LT_LT_LT] = ACTIONS(2398), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - }, - [1894] = { - [sym__heredoc_middle] = ACTIONS(824), - [sym__heredoc_end] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(1573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - }, - [1895] = { - [sym__heredoc_middle] = ACTIONS(832), - [sym__heredoc_end] = ACTIONS(832), - [anon_sym_DOLLAR] = ACTIONS(1577), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), - [sym_comment] = ACTIONS(56), - }, - [1896] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(5342), - [sym_comment] = ACTIONS(56), - }, - [1897] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2547), - [anon_sym_RBRACE] = ACTIONS(5344), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5346), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1898] = { - [sym_subscript] = STATE(2551), - [sym_variable_name] = ACTIONS(5348), - [anon_sym_DOLLAR] = ACTIONS(5350), - [anon_sym_DASH] = ACTIONS(5350), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5352), - [anon_sym_STAR] = ACTIONS(5350), - [anon_sym_AT] = ACTIONS(5350), - [anon_sym_QMARK] = ACTIONS(5350), - [anon_sym_0] = ACTIONS(5354), - [anon_sym__] = ACTIONS(5354), - }, - [1899] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2554), - [anon_sym_RBRACE] = ACTIONS(5356), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5358), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1900] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2557), - [anon_sym_RBRACE] = ACTIONS(5360), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5362), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1901] = { - [sym_file_descriptor] = ACTIONS(5364), - [anon_sym_esac] = ACTIONS(5366), - [anon_sym_PIPE] = ACTIONS(5366), - [anon_sym_RPAREN] = ACTIONS(5366), - [anon_sym_SEMI_SEMI] = ACTIONS(5366), - [anon_sym_PIPE_AMP] = ACTIONS(5366), - [anon_sym_AMP_AMP] = ACTIONS(5366), - [anon_sym_PIPE_PIPE] = ACTIONS(5366), - [anon_sym_LT] = ACTIONS(5366), - [anon_sym_GT] = ACTIONS(5366), - [anon_sym_GT_GT] = ACTIONS(5366), - [anon_sym_AMP_GT] = ACTIONS(5366), - [anon_sym_AMP_GT_GT] = ACTIONS(5366), - [anon_sym_LT_AMP] = ACTIONS(5366), - [anon_sym_GT_AMP] = ACTIONS(5366), - [anon_sym_LT_LT] = ACTIONS(5366), - [anon_sym_LT_LT_DASH] = ACTIONS(5366), - [anon_sym_LT_LT_LT] = ACTIONS(5366), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5366), - [anon_sym_LF] = ACTIONS(5366), - [anon_sym_AMP] = ACTIONS(5366), - }, - [1902] = { - [sym_simple_expansion] = STATE(1218), - [sym_expansion] = STATE(1218), - [aux_sym_heredoc_repeat1] = STATE(1902), - [sym__heredoc_middle] = ACTIONS(5368), - [sym__heredoc_end] = ACTIONS(5371), - [anon_sym_DOLLAR] = ACTIONS(5373), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5376), - [sym_comment] = ACTIONS(56), - }, - [1903] = { - [anon_sym_EQ] = ACTIONS(5379), - [anon_sym_PLUS_EQ] = ACTIONS(5379), - [sym_comment] = ACTIONS(56), - }, - [1904] = { - [anon_sym_EQ] = ACTIONS(5381), - [anon_sym_PLUS_EQ] = ACTIONS(5381), - [sym_comment] = ACTIONS(56), - }, - [1905] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_RBRACK] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - }, - [1906] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5383), - [sym_comment] = ACTIONS(56), - }, - [1907] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5385), - [sym_comment] = ACTIONS(56), - }, - [1908] = { - [anon_sym_RBRACE] = ACTIONS(5385), - [sym_comment] = ACTIONS(56), - }, - [1909] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2561), - [anon_sym_RBRACE] = ACTIONS(5387), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1910] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_RBRACK] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), - }, - [1911] = { - [sym_concatenation] = STATE(2564), - [sym_string] = STATE(2563), - [sym_simple_expansion] = STATE(2563), - [sym_string_expansion] = STATE(2563), - [sym_expansion] = STATE(2563), - [sym_command_substitution] = STATE(2563), - [sym_process_substitution] = STATE(2563), - [anon_sym_RBRACE] = ACTIONS(5385), - [sym__special_characters] = ACTIONS(5389), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(5391), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5393), - }, - [1912] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_RBRACK] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), - }, - [1913] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5395), - }, - [1914] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5397), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1915] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_RBRACK] = ACTIONS(3400), - [sym_comment] = ACTIONS(56), - }, - [1916] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5399), - }, - [1917] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5401), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1918] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5403), - }, - [1919] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5385), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1920] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2571), - [anon_sym_RBRACE] = ACTIONS(5405), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1921] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_RBRACK] = ACTIONS(3412), - [sym_comment] = ACTIONS(56), - }, - [1922] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2573), - [anon_sym_RBRACE] = ACTIONS(5407), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1923] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3056), - }, - [1924] = { - [aux_sym_concatenation_repeat1] = STATE(1924), - [sym__concat] = ACTIONS(5409), - [anon_sym_RPAREN] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3056), - }, - [1925] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_RPAREN] = ACTIONS(1923), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(1923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), - [anon_sym_BQUOTE] = ACTIONS(1923), - [anon_sym_LT_LPAREN] = ACTIONS(1923), - [anon_sym_GT_LPAREN] = ACTIONS(1923), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3061), - }, - [1926] = { - [sym_concatenation] = STATE(2577), - [sym_string] = STATE(2576), - [sym_simple_expansion] = STATE(2576), - [sym_string_expansion] = STATE(2576), - [sym_expansion] = STATE(2576), - [sym_command_substitution] = STATE(2576), - [sym_process_substitution] = STATE(2576), - [anon_sym_RBRACE] = ACTIONS(5412), - [sym__special_characters] = ACTIONS(5414), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(5416), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5418), - }, - [1927] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_RPAREN] = ACTIONS(1968), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1968), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3071), - }, - [1928] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5420), - }, - [1929] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5422), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1930] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(5424), - [sym_comment] = ACTIONS(56), - }, - [1931] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2583), - [anon_sym_RBRACE] = ACTIONS(5426), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5428), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1932] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2586), - [anon_sym_RBRACE] = ACTIONS(5430), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5432), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1933] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2588), - [anon_sym_RBRACE] = ACTIONS(5412), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5434), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1934] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_RPAREN] = ACTIONS(2022), - [sym__special_characters] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(3089), - [sym_raw_string] = ACTIONS(2022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_BQUOTE] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2022), - [anon_sym_GT_LPAREN] = ACTIONS(2022), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3089), - }, - [1935] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5436), - }, - [1936] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5438), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1937] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_RPAREN] = ACTIONS(2030), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(2030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3095), - }, - [1938] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5440), - }, - [1939] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5412), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1940] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(2190), - [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), - [anon_sym_BQUOTE] = ACTIONS(2190), - [anon_sym_LT_LPAREN] = ACTIONS(2190), - [anon_sym_GT_LPAREN] = ACTIONS(2190), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3099), - }, - [1941] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_RPAREN] = ACTIONS(2396), - [sym__special_characters] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(3101), - [sym_raw_string] = ACTIONS(2396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_LT_LPAREN] = ACTIONS(2396), - [anon_sym_GT_LPAREN] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3101), - }, - [1942] = { - [sym_file_descriptor] = ACTIONS(3283), - [sym__concat] = ACTIONS(3283), - [sym_variable_name] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_GT] = ACTIONS(3285), - [anon_sym_GT_GT] = ACTIONS(3285), - [anon_sym_AMP_GT] = ACTIONS(3285), - [anon_sym_AMP_GT_GT] = ACTIONS(3285), - [anon_sym_LT_AMP] = ACTIONS(3285), - [anon_sym_GT_AMP] = ACTIONS(3285), - [sym__special_characters] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_DOLLAR] = ACTIONS(3285), - [sym_raw_string] = ACTIONS(3285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), - [anon_sym_BQUOTE] = ACTIONS(3285), - [anon_sym_LT_LPAREN] = ACTIONS(3285), - [anon_sym_GT_LPAREN] = ACTIONS(3285), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - }, - [1943] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5442), - [sym_comment] = ACTIONS(56), - }, - [1944] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5444), - [sym_comment] = ACTIONS(56), - }, - [1945] = { - [anon_sym_RBRACE] = ACTIONS(5444), - [sym_comment] = ACTIONS(56), - }, - [1946] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2595), - [anon_sym_RBRACE] = ACTIONS(5446), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1947] = { - [sym_file_descriptor] = ACTIONS(3347), - [sym__concat] = ACTIONS(3347), - [sym_variable_name] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_GT] = ACTIONS(3349), - [anon_sym_GT_GT] = ACTIONS(3349), - [anon_sym_AMP_GT] = ACTIONS(3349), - [anon_sym_AMP_GT_GT] = ACTIONS(3349), - [anon_sym_LT_AMP] = ACTIONS(3349), - [anon_sym_GT_AMP] = ACTIONS(3349), - [sym__special_characters] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3349), - [sym_raw_string] = ACTIONS(3349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), - [anon_sym_BQUOTE] = ACTIONS(3349), - [anon_sym_LT_LPAREN] = ACTIONS(3349), - [anon_sym_GT_LPAREN] = ACTIONS(3349), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - }, - [1948] = { - [sym_concatenation] = STATE(2598), - [sym_string] = STATE(2597), - [sym_simple_expansion] = STATE(2597), - [sym_string_expansion] = STATE(2597), - [sym_expansion] = STATE(2597), - [sym_command_substitution] = STATE(2597), - [sym_process_substitution] = STATE(2597), - [anon_sym_RBRACE] = ACTIONS(5444), - [sym__special_characters] = ACTIONS(5448), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(5450), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5452), - }, - [1949] = { - [sym_file_descriptor] = ACTIONS(3392), - [sym__concat] = ACTIONS(3392), - [sym_variable_name] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [anon_sym_LT] = ACTIONS(3394), - [anon_sym_GT] = ACTIONS(3394), - [anon_sym_GT_GT] = ACTIONS(3394), - [anon_sym_AMP_GT] = ACTIONS(3394), - [anon_sym_AMP_GT_GT] = ACTIONS(3394), - [anon_sym_LT_AMP] = ACTIONS(3394), - [anon_sym_GT_AMP] = ACTIONS(3394), - [sym__special_characters] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_DOLLAR] = ACTIONS(3394), - [sym_raw_string] = ACTIONS(3394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), - [anon_sym_BQUOTE] = ACTIONS(3394), - [anon_sym_LT_LPAREN] = ACTIONS(3394), - [anon_sym_GT_LPAREN] = ACTIONS(3394), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3394), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), - }, - [1950] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5454), - }, - [1951] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5456), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1952] = { - [sym_file_descriptor] = ACTIONS(3400), - [sym__concat] = ACTIONS(3400), - [sym_variable_name] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), + [1743] = { + [sym_file_descriptor] = ACTIONS(3402), + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_RPAREN] = ACTIONS(3402), [anon_sym_PIPE_AMP] = ACTIONS(3402), [anon_sym_AMP_AMP] = ACTIONS(3402), [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(3402), - [anon_sym_GT] = ACTIONS(3402), + [anon_sym_EQ_TILDE] = ACTIONS(4630), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_AMP_GT] = ACTIONS(3402), + [anon_sym_AMP_GT] = ACTIONS(4630), [anon_sym_AMP_GT_GT] = ACTIONS(3402), [anon_sym_LT_AMP] = ACTIONS(3402), [anon_sym_GT_AMP] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(3402), + [anon_sym_LT_LT] = ACTIONS(4630), + [anon_sym_LT_LT_DASH] = ACTIONS(3402), + [anon_sym_LT_LT_LT] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(4630), [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(4630), [sym_raw_string] = ACTIONS(3402), [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), [anon_sym_BQUOTE] = ACTIONS(3402), [anon_sym_LT_LPAREN] = ACTIONS(3402), [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3402), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), - }, - [1953] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5458), - }, - [1954] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5460), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1955] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5462), - }, - [1956] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5444), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1957] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2605), - [anon_sym_RBRACE] = ACTIONS(5464), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1958] = { - [sym_file_descriptor] = ACTIONS(3412), - [sym__concat] = ACTIONS(3412), - [sym_variable_name] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [anon_sym_LT] = ACTIONS(3414), - [anon_sym_GT] = ACTIONS(3414), - [anon_sym_GT_GT] = ACTIONS(3414), - [anon_sym_AMP_GT] = ACTIONS(3414), - [anon_sym_AMP_GT_GT] = ACTIONS(3414), - [anon_sym_LT_AMP] = ACTIONS(3414), - [anon_sym_GT_AMP] = ACTIONS(3414), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_DOLLAR] = ACTIONS(3414), - [sym_raw_string] = ACTIONS(3414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), - [anon_sym_BQUOTE] = ACTIONS(3414), - [anon_sym_LT_LPAREN] = ACTIONS(3414), - [anon_sym_GT_LPAREN] = ACTIONS(3414), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), - }, - [1959] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2607), - [anon_sym_RBRACE] = ACTIONS(5466), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1960] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [1961] = { - [aux_sym_concatenation_repeat1] = STATE(1961), - [sym__concat] = ACTIONS(5468), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [1962] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [sym__special_characters] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [sym_raw_string] = ACTIONS(1925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), - [anon_sym_BQUOTE] = ACTIONS(1925), - [anon_sym_LT_LPAREN] = ACTIONS(1925), - [anon_sym_GT_LPAREN] = ACTIONS(1925), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - }, - [1963] = { - [sym_concatenation] = STATE(2611), - [sym_string] = STATE(2610), - [sym_simple_expansion] = STATE(2610), - [sym_string_expansion] = STATE(2610), - [sym_expansion] = STATE(2610), - [sym_command_substitution] = STATE(2610), - [sym_process_substitution] = STATE(2610), - [anon_sym_RBRACE] = ACTIONS(5471), - [sym__special_characters] = ACTIONS(5473), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(5475), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5477), + [sym_word] = ACTIONS(3404), }, - [1964] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [sym__special_characters] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [sym_raw_string] = ACTIONS(1970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [anon_sym_GT_LPAREN] = ACTIONS(1970), + [1744] = { [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), + [sym_regex_without_right_brace] = ACTIONS(5095), }, - [1965] = { + [1745] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5097), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5479), + [sym_word] = ACTIONS(866), }, - [1966] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5481), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [1746] = { + [sym_file_descriptor] = ACTIONS(3410), + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(4636), + [anon_sym_RPAREN] = ACTIONS(3410), + [anon_sym_PIPE_AMP] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [anon_sym_EQ_TILDE] = ACTIONS(4636), + [anon_sym_EQ_EQ] = ACTIONS(4636), + [anon_sym_LT] = ACTIONS(4636), + [anon_sym_GT] = ACTIONS(4636), + [anon_sym_GT_GT] = ACTIONS(3410), + [anon_sym_AMP_GT] = ACTIONS(4636), + [anon_sym_AMP_GT_GT] = ACTIONS(3410), + [anon_sym_LT_AMP] = ACTIONS(3410), + [anon_sym_GT_AMP] = ACTIONS(3410), + [anon_sym_LT_LT] = ACTIONS(4636), + [anon_sym_LT_LT_DASH] = ACTIONS(3410), + [anon_sym_LT_LT_LT] = ACTIONS(3410), + [sym__special_characters] = ACTIONS(4636), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_DOLLAR] = ACTIONS(4636), + [sym_raw_string] = ACTIONS(3410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), + [anon_sym_BQUOTE] = ACTIONS(3410), + [anon_sym_LT_LPAREN] = ACTIONS(3410), + [anon_sym_GT_LPAREN] = ACTIONS(3410), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3412), + }, + [1747] = { [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(5099), }, - [1967] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(5483), + [1748] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5101), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1749] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5103), + }, + [1750] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5085), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1751] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2412), + [anon_sym_RBRACE] = ACTIONS(5105), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1752] = { + [sym_file_descriptor] = ACTIONS(3422), + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_PIPE_AMP] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_EQ_TILDE] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_GT_GT] = ACTIONS(3422), + [anon_sym_AMP_GT] = ACTIONS(4646), + [anon_sym_AMP_GT_GT] = ACTIONS(3422), + [anon_sym_LT_AMP] = ACTIONS(3422), + [anon_sym_GT_AMP] = ACTIONS(3422), + [anon_sym_LT_LT] = ACTIONS(4646), + [anon_sym_LT_LT_DASH] = ACTIONS(3422), + [anon_sym_LT_LT_LT] = ACTIONS(3422), + [sym__special_characters] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_DOLLAR] = ACTIONS(4646), + [sym_raw_string] = ACTIONS(3422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), + [anon_sym_BQUOTE] = ACTIONS(3422), + [anon_sym_LT_LPAREN] = ACTIONS(3422), + [anon_sym_GT_LPAREN] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3424), + }, + [1753] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2414), + [anon_sym_RBRACE] = ACTIONS(5107), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1754] = { + [sym_file_redirect] = STATE(2415), + [sym_file_descriptor] = ACTIONS(3478), + [anon_sym_PIPE] = ACTIONS(5001), + [anon_sym_RPAREN] = ACTIONS(5003), + [anon_sym_PIPE_AMP] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(3484), + [anon_sym_GT] = ACTIONS(3484), + [anon_sym_GT_GT] = ACTIONS(3486), + [anon_sym_AMP_GT] = ACTIONS(3484), + [anon_sym_AMP_GT_GT] = ACTIONS(3486), + [anon_sym_LT_AMP] = ACTIONS(3486), + [anon_sym_GT_AMP] = ACTIONS(3486), [sym_comment] = ACTIONS(56), }, - [1968] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2617), - [anon_sym_RBRACE] = ACTIONS(5485), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5487), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1969] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2620), - [anon_sym_RBRACE] = ACTIONS(5489), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5491), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1970] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2622), - [anon_sym_RBRACE] = ACTIONS(5471), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5493), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1971] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [sym__special_characters] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_DOLLAR] = ACTIONS(2024), - [sym_raw_string] = ACTIONS(2024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2024), - [anon_sym_LT_LPAREN] = ACTIONS(2024), - [anon_sym_GT_LPAREN] = ACTIONS(2024), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - }, - [1972] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5495), - }, - [1973] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5497), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1974] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [sym__special_characters] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2032), - [sym_raw_string] = ACTIONS(2032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), - [anon_sym_BQUOTE] = ACTIONS(2032), - [anon_sym_LT_LPAREN] = ACTIONS(2032), - [anon_sym_GT_LPAREN] = ACTIONS(2032), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), - }, - [1975] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5499), - }, - [1976] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5471), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [1977] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [sym__special_characters] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [sym_raw_string] = ACTIONS(2192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), - [anon_sym_BQUOTE] = ACTIONS(2192), - [anon_sym_LT_LPAREN] = ACTIONS(2192), - [anon_sym_GT_LPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), - }, - [1978] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [sym__special_characters] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), - [anon_sym_BQUOTE] = ACTIONS(2398), - [anon_sym_LT_LPAREN] = ACTIONS(2398), - [anon_sym_GT_LPAREN] = ACTIONS(2398), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - }, - [1979] = { - [sym__terminated_statement] = STATE(691), - [sym_for_statement] = STATE(692), - [sym_while_statement] = STATE(692), - [sym_if_statement] = STATE(692), - [sym_case_statement] = STATE(692), - [sym_function_definition] = STATE(692), - [sym_subshell] = STATE(692), - [sym_pipeline] = STATE(692), - [sym_list] = STATE(692), - [sym_command] = STATE(692), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(692), - [sym_variable_assignment] = STATE(693), - [sym_declaration_command] = STATE(692), - [sym_unset_command] = STATE(692), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2627), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(5501), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [1980] = { - [anon_sym_esac] = ACTIONS(5503), - [anon_sym_PIPE] = ACTIONS(5503), - [anon_sym_RPAREN] = ACTIONS(5503), - [anon_sym_SEMI_SEMI] = ACTIONS(5503), - [anon_sym_PIPE_AMP] = ACTIONS(5503), - [anon_sym_AMP_AMP] = ACTIONS(5503), - [anon_sym_PIPE_PIPE] = ACTIONS(5503), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5503), - [anon_sym_LF] = ACTIONS(5503), - [anon_sym_AMP] = ACTIONS(5503), - }, - [1981] = { - [sym__terminated_statement] = STATE(699), - [sym_for_statement] = STATE(700), - [sym_while_statement] = STATE(700), - [sym_if_statement] = STATE(700), - [sym_case_statement] = STATE(700), - [sym_function_definition] = STATE(700), - [sym_subshell] = STATE(700), - [sym_pipeline] = STATE(700), - [sym_list] = STATE(700), - [sym_command] = STATE(700), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(700), - [sym_variable_assignment] = STATE(703), - [sym_declaration_command] = STATE(700), - [sym_unset_command] = STATE(700), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(2628), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(5505), - [anon_sym_elif] = ACTIONS(5505), - [anon_sym_else] = ACTIONS(5505), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [1982] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_fi] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(1102), - [sym_raw_string] = ACTIONS(1100), - [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_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1104), - }, - [1983] = { - [sym__terminated_statement] = STATE(1313), - [sym_for_statement] = STATE(1314), - [sym_while_statement] = STATE(1314), - [sym_if_statement] = STATE(1314), - [sym_case_statement] = STATE(1314), - [sym_function_definition] = STATE(1314), - [sym_subshell] = STATE(1314), - [sym_pipeline] = STATE(1314), - [sym_list] = STATE(1314), - [sym_command] = STATE(1314), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(1314), - [sym_variable_assignment] = STATE(1315), - [sym_declaration_command] = STATE(1314), - [sym_unset_command] = STATE(1314), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1983), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1150), - [sym_variable_name] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_fi] = ACTIONS(4299), - [anon_sym_case] = ACTIONS(1167), - [anon_sym_function] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_typeset] = ACTIONS(1182), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_local] = ACTIONS(1182), - [anon_sym_unset] = ACTIONS(1185), - [anon_sym_unsetenv] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1191), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1191), - [anon_sym_LT_AMP] = ACTIONS(1191), - [anon_sym_GT_AMP] = ACTIONS(1191), - [sym__special_characters] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_raw_string] = ACTIONS(1203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), - [anon_sym_BQUOTE] = ACTIONS(1212), - [anon_sym_LT_LPAREN] = ACTIONS(1215), - [anon_sym_GT_LPAREN] = ACTIONS(1215), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1218), - }, - [1984] = { - [anon_sym_esac] = ACTIONS(5507), - [anon_sym_PIPE] = ACTIONS(5507), - [anon_sym_RPAREN] = ACTIONS(5507), - [anon_sym_SEMI_SEMI] = ACTIONS(5507), - [anon_sym_PIPE_AMP] = ACTIONS(5507), - [anon_sym_AMP_AMP] = ACTIONS(5507), - [anon_sym_PIPE_PIPE] = ACTIONS(5507), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5507), - [anon_sym_LF] = ACTIONS(5507), - [anon_sym_AMP] = ACTIONS(5507), - }, - [1985] = { - [anon_sym_fi] = ACTIONS(5509), + [1755] = { + [aux_sym_concatenation_repeat1] = STATE(1759), + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(3692), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_PIPE_AMP] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1241), + [anon_sym_PIPE_PIPE] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_AMP_GT] = ACTIONS(1243), + [anon_sym_AMP_GT_GT] = ACTIONS(1241), + [anon_sym_LT_AMP] = ACTIONS(1241), + [anon_sym_GT_AMP] = ACTIONS(1241), + [anon_sym_LT_LT] = ACTIONS(1243), + [anon_sym_LT_LT_DASH] = ACTIONS(1241), + [anon_sym_LT_LT_LT] = ACTIONS(1241), [sym_comment] = ACTIONS(56), }, - [1986] = { - [sym_string] = STATE(2630), - [sym_simple_expansion] = STATE(2630), - [sym_string_expansion] = STATE(2630), - [sym_expansion] = STATE(2630), - [sym_command_substitution] = STATE(2630), - [sym_process_substitution] = STATE(2630), - [sym__special_characters] = ACTIONS(5511), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(5513), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5511), - }, - [1987] = { - [sym_concatenation] = STATE(2633), - [sym_string] = STATE(2632), - [sym_simple_expansion] = STATE(2632), - [sym_string_expansion] = STATE(2632), - [sym_expansion] = STATE(2632), - [sym_command_substitution] = STATE(2632), - [sym_process_substitution] = STATE(2632), - [sym__special_characters] = ACTIONS(5515), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(5517), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5519), - }, - [1988] = { - [sym__terminated_statement] = STATE(2651), - [sym_for_statement] = STATE(2652), - [sym_while_statement] = STATE(2652), - [sym_if_statement] = STATE(2652), - [sym_case_statement] = STATE(2652), - [sym_function_definition] = STATE(2652), - [sym_subshell] = STATE(2652), - [sym_pipeline] = STATE(2652), - [sym_list] = STATE(2652), - [sym_command] = STATE(2652), - [sym_command_name] = STATE(2653), - [sym_bracket_command] = STATE(2652), - [sym_variable_assignment] = STATE(2654), - [sym_declaration_command] = STATE(2652), - [sym_unset_command] = STATE(2652), - [sym_subscript] = STATE(2655), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2656), - [sym_string] = STATE(2645), - [sym_simple_expansion] = STATE(2645), - [sym_string_expansion] = STATE(2645), - [sym_expansion] = STATE(2645), - [sym_command_substitution] = STATE(2645), - [sym_process_substitution] = STATE(2645), - [aux_sym_program_repeat1] = STATE(2657), - [aux_sym_command_repeat1] = STATE(2658), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5521), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5523), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(5525), - [anon_sym_SEMI_SEMI] = ACTIONS(5527), - [anon_sym_function] = ACTIONS(5529), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), - [anon_sym_declare] = ACTIONS(5535), - [anon_sym_typeset] = ACTIONS(5535), - [anon_sym_export] = ACTIONS(5535), - [anon_sym_readonly] = ACTIONS(5535), - [anon_sym_local] = ACTIONS(5535), - [anon_sym_unset] = ACTIONS(5537), - [anon_sym_unsetenv] = ACTIONS(5537), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5539), - [anon_sym_DQUOTE] = ACTIONS(5541), - [anon_sym_DOLLAR] = ACTIONS(5543), - [sym_raw_string] = ACTIONS(5545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), - [anon_sym_BQUOTE] = ACTIONS(5551), - [anon_sym_LT_LPAREN] = ACTIONS(5553), - [anon_sym_GT_LPAREN] = ACTIONS(5553), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5555), - }, - [1989] = { - [aux_sym_case_item_repeat1] = STATE(2660), - [anon_sym_PIPE] = ACTIONS(4320), - [anon_sym_RPAREN] = ACTIONS(5557), + [1756] = { + [aux_sym_concatenation_repeat1] = STATE(1759), + [sym_file_descriptor] = ACTIONS(1245), + [sym__concat] = ACTIONS(3692), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_PIPE_AMP] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_AMP_GT] = ACTIONS(1247), + [anon_sym_AMP_GT_GT] = ACTIONS(1245), + [anon_sym_LT_AMP] = ACTIONS(1245), + [anon_sym_GT_AMP] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1247), + [anon_sym_LT_LT_DASH] = ACTIONS(1245), + [anon_sym_LT_LT_LT] = ACTIONS(1245), [sym_comment] = ACTIONS(56), }, - [1990] = { - [aux_sym_concatenation_repeat1] = STATE(2661), - [sym__concat] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(788), - [anon_sym_RPAREN] = ACTIONS(788), + [1757] = { + [sym_file_descriptor] = ACTIONS(1245), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_PIPE_AMP] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_AMP_GT] = ACTIONS(1247), + [anon_sym_AMP_GT_GT] = ACTIONS(1245), + [anon_sym_LT_AMP] = ACTIONS(1245), + [anon_sym_GT_AMP] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1247), + [anon_sym_LT_LT_DASH] = ACTIONS(1245), + [anon_sym_LT_LT_LT] = ACTIONS(1245), + [anon_sym_BQUOTE] = ACTIONS(1245), [sym_comment] = ACTIONS(56), }, - [1991] = { - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(792), - [anon_sym_RPAREN] = ACTIONS(792), + [1758] = { + [sym_string] = STATE(2416), + [sym_simple_expansion] = STATE(2416), + [sym_string_expansion] = STATE(2416), + [sym_expansion] = STATE(2416), + [sym_command_substitution] = STATE(2416), + [sym_process_substitution] = STATE(2416), + [sym__special_characters] = ACTIONS(5109), + [anon_sym_DQUOTE] = ACTIONS(2224), + [anon_sym_DOLLAR] = ACTIONS(2226), + [sym_raw_string] = ACTIONS(5111), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2230), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2232), + [anon_sym_BQUOTE] = ACTIONS(2234), + [anon_sym_LT_LPAREN] = ACTIONS(2236), + [anon_sym_GT_LPAREN] = ACTIONS(2236), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5109), + }, + [1759] = { + [aux_sym_concatenation_repeat1] = STATE(2417), + [sym_file_descriptor] = ACTIONS(790), + [sym__concat] = ACTIONS(3692), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(1571), + [anon_sym_GT] = ACTIONS(1571), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(1571), + [anon_sym_AMP_GT_GT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(790), + [anon_sym_GT_AMP] = ACTIONS(790), + [anon_sym_LT_LT] = ACTIONS(1571), + [anon_sym_LT_LT_DASH] = ACTIONS(790), + [anon_sym_LT_LT_LT] = ACTIONS(790), [sym_comment] = ACTIONS(56), }, - [1992] = { + [1760] = { + [sym_file_descriptor] = ACTIONS(794), + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(794), + [anon_sym_LT_AMP] = ACTIONS(794), + [anon_sym_GT_AMP] = ACTIONS(794), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_LT_LT_DASH] = ACTIONS(794), + [anon_sym_LT_LT_LT] = ACTIONS(794), + [sym_comment] = ACTIONS(56), + }, + [1761] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(5559), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(5113), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -57056,70 +52629,4357 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [1993] = { - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_RPAREN] = ACTIONS(824), + [1762] = { + [sym_file_descriptor] = ACTIONS(826), + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(1577), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(1577), + [anon_sym_LT_LT_DASH] = ACTIONS(826), + [anon_sym_LT_LT_LT] = ACTIONS(826), [sym_comment] = ACTIONS(56), }, - [1994] = { - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(828), - [anon_sym_RPAREN] = ACTIONS(828), + [1763] = { + [sym_file_descriptor] = ACTIONS(830), + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(1579), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [anon_sym_LT_LT] = ACTIONS(1579), + [anon_sym_LT_LT_DASH] = ACTIONS(830), + [anon_sym_LT_LT_LT] = ACTIONS(830), [sym_comment] = ACTIONS(56), }, - [1995] = { - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(832), - [anon_sym_RPAREN] = ACTIONS(832), + [1764] = { + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(1581), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_LT_LT_DASH] = ACTIONS(834), + [anon_sym_LT_LT_LT] = ACTIONS(834), [sym_comment] = ACTIONS(56), }, - [1996] = { - [sym__terminated_statement] = STATE(2651), - [sym_for_statement] = STATE(2664), - [sym_while_statement] = STATE(2664), - [sym_if_statement] = STATE(2664), - [sym_case_statement] = STATE(2664), - [sym_function_definition] = STATE(2664), - [sym_subshell] = STATE(2664), - [sym_pipeline] = STATE(2664), - [sym_list] = STATE(2664), - [sym_command] = STATE(2664), - [sym_command_name] = STATE(2653), - [sym_bracket_command] = STATE(2664), - [sym_variable_assignment] = STATE(2665), - [sym_declaration_command] = STATE(2664), - [sym_unset_command] = STATE(2664), - [sym_subscript] = STATE(2655), + [1765] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(5115), + [sym_comment] = ACTIONS(56), + }, + [1766] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2422), + [anon_sym_RBRACE] = ACTIONS(5117), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5119), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1767] = { + [sym_subscript] = STATE(2426), + [sym_variable_name] = ACTIONS(5121), + [anon_sym_DOLLAR] = ACTIONS(5123), + [anon_sym_DASH] = ACTIONS(5123), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5125), + [anon_sym_STAR] = ACTIONS(5123), + [anon_sym_AT] = ACTIONS(5123), + [anon_sym_QMARK] = ACTIONS(5123), + [anon_sym_0] = ACTIONS(5127), + [anon_sym__] = ACTIONS(5127), + }, + [1768] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2429), + [anon_sym_RBRACE] = ACTIONS(5129), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5131), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1769] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2432), + [anon_sym_RBRACE] = ACTIONS(5133), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5135), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1770] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5137), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [1771] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5137), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1772] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(5137), + [sym_comment] = ACTIONS(56), + }, + [1773] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(5137), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1774] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5139), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [1775] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5139), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1776] = { + [sym_file_descriptor] = ACTIONS(4084), + [anon_sym_PIPE] = ACTIONS(5141), + [anon_sym_RPAREN] = ACTIONS(4084), + [anon_sym_PIPE_AMP] = ACTIONS(4084), + [anon_sym_AMP_AMP] = ACTIONS(4084), + [anon_sym_PIPE_PIPE] = ACTIONS(4084), + [anon_sym_LT] = ACTIONS(5141), + [anon_sym_GT] = ACTIONS(5141), + [anon_sym_GT_GT] = ACTIONS(4084), + [anon_sym_AMP_GT] = ACTIONS(5141), + [anon_sym_AMP_GT_GT] = ACTIONS(4084), + [anon_sym_LT_AMP] = ACTIONS(4084), + [anon_sym_GT_AMP] = ACTIONS(4084), + [anon_sym_LT_LT] = ACTIONS(5141), + [anon_sym_LT_LT_DASH] = ACTIONS(4084), + [anon_sym_LT_LT_LT] = ACTIONS(4084), + [anon_sym_BQUOTE] = ACTIONS(4084), + [sym_comment] = ACTIONS(56), + }, + [1777] = { + [sym_simple_expansion] = STATE(1222), + [sym_expansion] = STATE(1222), + [aux_sym_heredoc_repeat1] = STATE(1910), + [sym__heredoc_middle] = ACTIONS(2446), + [sym__heredoc_end] = ACTIONS(5143), + [anon_sym_DOLLAR] = ACTIONS(2450), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2452), + [sym_comment] = ACTIONS(56), + }, + [1778] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [aux_sym_while_statement_repeat1] = STATE(1105), + [sym_file_descriptor] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(5145), + [anon_sym_RPAREN] = ACTIONS(5147), + [anon_sym_PIPE_AMP] = ACTIONS(5147), + [anon_sym_AMP_AMP] = ACTIONS(5147), + [anon_sym_PIPE_PIPE] = ACTIONS(5147), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [anon_sym_GT_GT] = ACTIONS(992), + [anon_sym_AMP_GT] = ACTIONS(990), + [anon_sym_AMP_GT_GT] = ACTIONS(992), + [anon_sym_LT_AMP] = ACTIONS(992), + [anon_sym_GT_AMP] = ACTIONS(992), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(998), + [sym_comment] = ACTIONS(56), + }, + [1779] = { + [sym_string] = STATE(2436), + [sym_simple_expansion] = STATE(2436), + [sym_string_expansion] = STATE(2436), + [sym_expansion] = STATE(2436), + [sym_command_substitution] = STATE(2436), + [sym_process_substitution] = STATE(2436), + [sym__special_characters] = ACTIONS(5149), + [anon_sym_DQUOTE] = ACTIONS(2258), + [anon_sym_DOLLAR] = ACTIONS(2260), + [sym_raw_string] = ACTIONS(5151), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2264), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2266), + [anon_sym_BQUOTE] = ACTIONS(2268), + [anon_sym_LT_LPAREN] = ACTIONS(2270), + [anon_sym_GT_LPAREN] = ACTIONS(2270), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5149), + }, + [1780] = { + [aux_sym_concatenation_repeat1] = STATE(2437), + [sym_file_descriptor] = ACTIONS(790), + [sym__concat] = ACTIONS(3780), + [sym_variable_name] = ACTIONS(790), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(1571), + [anon_sym_GT] = ACTIONS(1571), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(1571), + [anon_sym_AMP_GT_GT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(790), + [anon_sym_GT_AMP] = ACTIONS(790), + [sym__special_characters] = ACTIONS(1571), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_DOLLAR] = ACTIONS(1571), + [sym_raw_string] = ACTIONS(790), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [anon_sym_LT_LPAREN] = ACTIONS(790), + [anon_sym_GT_LPAREN] = ACTIONS(790), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1571), + }, + [1781] = { + [sym_file_descriptor] = ACTIONS(794), + [sym__concat] = ACTIONS(794), + [sym_variable_name] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(794), + [anon_sym_LT_AMP] = ACTIONS(794), + [anon_sym_GT_AMP] = ACTIONS(794), + [sym__special_characters] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(794), + [anon_sym_DOLLAR] = ACTIONS(1573), + [sym_raw_string] = ACTIONS(794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [anon_sym_LT_LPAREN] = ACTIONS(794), + [anon_sym_GT_LPAREN] = ACTIONS(794), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1573), + }, + [1782] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(5153), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1783] = { + [sym_file_descriptor] = ACTIONS(826), + [sym__concat] = ACTIONS(826), + [sym_variable_name] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(1577), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [sym__special_characters] = ACTIONS(1577), + [anon_sym_DQUOTE] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(1577), + [sym_raw_string] = ACTIONS(826), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [anon_sym_LT_LPAREN] = ACTIONS(826), + [anon_sym_GT_LPAREN] = ACTIONS(826), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1577), + }, + [1784] = { + [sym_file_descriptor] = ACTIONS(830), + [sym__concat] = ACTIONS(830), + [sym_variable_name] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(1579), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [sym__special_characters] = ACTIONS(1579), + [anon_sym_DQUOTE] = ACTIONS(830), + [anon_sym_DOLLAR] = ACTIONS(1579), + [sym_raw_string] = ACTIONS(830), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [anon_sym_LT_LPAREN] = ACTIONS(830), + [anon_sym_GT_LPAREN] = ACTIONS(830), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1579), + }, + [1785] = { + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [sym_variable_name] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(1581), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [sym__special_characters] = ACTIONS(1581), + [anon_sym_DQUOTE] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1581), + [sym_raw_string] = ACTIONS(834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [anon_sym_LT_LPAREN] = ACTIONS(834), + [anon_sym_GT_LPAREN] = ACTIONS(834), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1581), + }, + [1786] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(5155), + [sym_comment] = ACTIONS(56), + }, + [1787] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2442), + [anon_sym_RBRACE] = ACTIONS(5157), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5159), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1788] = { + [sym_subscript] = STATE(2446), + [sym_variable_name] = ACTIONS(5161), + [anon_sym_DOLLAR] = ACTIONS(5163), + [anon_sym_DASH] = ACTIONS(5163), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5165), + [anon_sym_STAR] = ACTIONS(5163), + [anon_sym_AT] = ACTIONS(5163), + [anon_sym_QMARK] = ACTIONS(5163), + [anon_sym_0] = ACTIONS(5167), + [anon_sym__] = ACTIONS(5167), + }, + [1789] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2449), + [anon_sym_RBRACE] = ACTIONS(5169), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5171), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1790] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2452), + [anon_sym_RBRACE] = ACTIONS(5173), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5175), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1791] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5177), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [1792] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5177), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1793] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(5177), + [sym_comment] = ACTIONS(56), + }, + [1794] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(5177), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1795] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5179), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [1796] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5179), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1797] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [aux_sym_while_statement_repeat1] = STATE(1196), + [sym_file_descriptor] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(4955), + [anon_sym_PIPE_AMP] = ACTIONS(4957), + [anon_sym_AMP_AMP] = ACTIONS(4957), + [anon_sym_PIPE_PIPE] = ACTIONS(4957), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1084), + [anon_sym_LT_AMP] = ACTIONS(1084), + [anon_sym_GT_AMP] = ACTIONS(1084), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_BQUOTE] = ACTIONS(4957), + [sym_comment] = ACTIONS(56), + }, + [1798] = { + [sym_compound_statement] = STATE(2455), + [anon_sym_LBRACE] = ACTIONS(2082), + [sym_comment] = ACTIONS(56), + }, + [1799] = { + [anon_sym_LT] = ACTIONS(5181), + [anon_sym_GT] = ACTIONS(5181), + [anon_sym_GT_GT] = ACTIONS(5183), + [anon_sym_AMP_GT] = ACTIONS(5181), + [anon_sym_AMP_GT_GT] = ACTIONS(5183), + [anon_sym_LT_AMP] = ACTIONS(5183), + [anon_sym_GT_AMP] = ACTIONS(5183), + [sym_comment] = ACTIONS(56), + }, + [1800] = { + [sym_concatenation] = STATE(2359), + [sym_string] = STATE(2460), + [sym_simple_expansion] = STATE(2460), + [sym_string_expansion] = STATE(2460), + [sym_expansion] = STATE(2460), + [sym_command_substitution] = STATE(2460), + [sym_process_substitution] = STATE(2460), + [sym__special_characters] = ACTIONS(5185), + [anon_sym_DQUOTE] = ACTIONS(5187), + [anon_sym_DOLLAR] = ACTIONS(5189), + [sym_raw_string] = ACTIONS(5191), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5195), + [anon_sym_BQUOTE] = ACTIONS(5197), + [anon_sym_LT_LPAREN] = ACTIONS(5199), + [anon_sym_GT_LPAREN] = ACTIONS(5199), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5201), + }, + [1801] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [aux_sym_while_statement_repeat1] = STATE(1196), + [sym_file_descriptor] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(5011), + [anon_sym_PIPE_AMP] = ACTIONS(5013), + [anon_sym_AMP_AMP] = ACTIONS(5013), + [anon_sym_PIPE_PIPE] = ACTIONS(5013), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1084), + [anon_sym_LT_AMP] = ACTIONS(1084), + [anon_sym_GT_AMP] = ACTIONS(1084), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_BQUOTE] = ACTIONS(5013), + [sym_comment] = ACTIONS(56), + }, + [1802] = { + [aux_sym_concatenation_repeat1] = STATE(1123), + [sym__concat] = ACTIONS(2280), + [sym_variable_name] = ACTIONS(1303), + [anon_sym_PIPE] = ACTIONS(3434), + [anon_sym_PIPE_AMP] = ACTIONS(1303), + [anon_sym_AMP_AMP] = ACTIONS(1303), + [anon_sym_PIPE_PIPE] = ACTIONS(1303), + [sym__special_characters] = ACTIONS(3434), + [anon_sym_DQUOTE] = ACTIONS(1303), + [anon_sym_DOLLAR] = ACTIONS(3434), + [sym_raw_string] = ACTIONS(1303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1303), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1303), + [anon_sym_BQUOTE] = ACTIONS(1303), + [anon_sym_LT_LPAREN] = ACTIONS(1303), + [anon_sym_GT_LPAREN] = ACTIONS(1303), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3434), + [sym_word] = ACTIONS(1307), + }, + [1803] = { + [aux_sym_concatenation_repeat1] = STATE(1123), + [sym__concat] = ACTIONS(2280), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_PIPE] = ACTIONS(3428), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_AMP_AMP] = ACTIONS(1279), + [anon_sym_PIPE_PIPE] = ACTIONS(1279), + [sym__special_characters] = ACTIONS(3428), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(3428), + [sym_raw_string] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3428), + [sym_word] = ACTIONS(1281), + }, + [1804] = { + [sym__concat] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3066), + [sym_word] = ACTIONS(1892), + }, + [1805] = { + [aux_sym_concatenation_repeat1] = STATE(1805), + [sym__concat] = ACTIONS(5203), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3066), + [sym_word] = ACTIONS(1892), + }, + [1806] = { + [sym__concat] = ACTIONS(1927), + [sym_variable_name] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3071), + [sym_word] = ACTIONS(1929), + }, + [1807] = { + [sym_concatenation] = STATE(2468), + [sym_string] = STATE(2467), + [sym_simple_expansion] = STATE(2467), + [sym_string_expansion] = STATE(2467), + [sym_expansion] = STATE(2467), + [sym_command_substitution] = STATE(2467), + [sym_process_substitution] = STATE(2467), + [anon_sym_RBRACE] = ACTIONS(5206), + [sym__special_characters] = ACTIONS(5208), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(5210), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5212), + }, + [1808] = { + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(3081), + [anon_sym_PIPE_AMP] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_PIPE_PIPE] = ACTIONS(1972), + [sym__special_characters] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(3081), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [anon_sym_LT_LPAREN] = ACTIONS(1972), + [anon_sym_GT_LPAREN] = ACTIONS(1972), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3081), + [sym_word] = ACTIONS(1974), + }, + [1809] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5214), + }, + [1810] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5216), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1811] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(5218), + [sym_comment] = ACTIONS(56), + }, + [1812] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2474), + [anon_sym_RBRACE] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5222), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1813] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2477), + [anon_sym_RBRACE] = ACTIONS(5224), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5226), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1814] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2479), + [anon_sym_RBRACE] = ACTIONS(5206), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5228), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1815] = { + [sym__concat] = ACTIONS(2026), + [sym_variable_name] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_PIPE_AMP] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [sym__special_characters] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2026), + [anon_sym_GT_LPAREN] = ACTIONS(2026), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3099), + [sym_word] = ACTIONS(2028), + }, + [1816] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5230), + }, + [1817] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5232), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1818] = { + [sym__concat] = ACTIONS(2034), + [sym_variable_name] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PIPE_AMP] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_PIPE_PIPE] = ACTIONS(2034), + [sym__special_characters] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(3105), + [sym_raw_string] = ACTIONS(2034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), + [anon_sym_BQUOTE] = ACTIONS(2034), + [anon_sym_LT_LPAREN] = ACTIONS(2034), + [anon_sym_GT_LPAREN] = ACTIONS(2034), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3105), + [sym_word] = ACTIONS(2036), + }, + [1819] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5234), + }, + [1820] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5206), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1821] = { + [sym__concat] = ACTIONS(2196), + [sym_variable_name] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(3109), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [sym__special_characters] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(3109), + [sym_raw_string] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3109), + [sym_word] = ACTIONS(2198), + }, + [1822] = { + [sym__concat] = ACTIONS(2402), + [sym_variable_name] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_PIPE_AMP] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [sym__special_characters] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(3111), + [sym_raw_string] = ACTIONS(2402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), + [anon_sym_BQUOTE] = ACTIONS(2402), + [anon_sym_LT_LPAREN] = ACTIONS(2402), + [anon_sym_GT_LPAREN] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3111), + [sym_word] = ACTIONS(2404), + }, + [1823] = { + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3066), + [sym_word] = ACTIONS(1892), + }, + [1824] = { + [aux_sym_concatenation_repeat1] = STATE(1824), + [sym__concat] = ACTIONS(5236), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3066), + [sym_word] = ACTIONS(1892), + }, + [1825] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3071), + [sym_word] = ACTIONS(1929), + }, + [1826] = { + [sym_concatenation] = STATE(2486), + [sym_string] = STATE(2485), + [sym_simple_expansion] = STATE(2485), + [sym_string_expansion] = STATE(2485), + [sym_expansion] = STATE(2485), + [sym_command_substitution] = STATE(2485), + [sym_process_substitution] = STATE(2485), + [anon_sym_RBRACE] = ACTIONS(5239), + [sym__special_characters] = ACTIONS(5241), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(5243), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5245), + }, + [1827] = { + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(3081), + [anon_sym_PIPE_AMP] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_PIPE_PIPE] = ACTIONS(1972), + [sym__special_characters] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(3081), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [anon_sym_LT_LPAREN] = ACTIONS(1972), + [anon_sym_GT_LPAREN] = ACTIONS(1972), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3081), + [sym_word] = ACTIONS(1974), + }, + [1828] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5247), + }, + [1829] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5249), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1830] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(5251), + [sym_comment] = ACTIONS(56), + }, + [1831] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2492), + [anon_sym_RBRACE] = ACTIONS(5253), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5255), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1832] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2495), + [anon_sym_RBRACE] = ACTIONS(5257), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5259), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1833] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2497), + [anon_sym_RBRACE] = ACTIONS(5239), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5261), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1834] = { + [sym__concat] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_PIPE_AMP] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [sym__special_characters] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2026), + [anon_sym_GT_LPAREN] = ACTIONS(2026), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3099), + [sym_word] = ACTIONS(2028), + }, + [1835] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5263), + }, + [1836] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5265), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1837] = { + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PIPE_AMP] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_PIPE_PIPE] = ACTIONS(2034), + [sym__special_characters] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(3105), + [sym_raw_string] = ACTIONS(2034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), + [anon_sym_BQUOTE] = ACTIONS(2034), + [anon_sym_LT_LPAREN] = ACTIONS(2034), + [anon_sym_GT_LPAREN] = ACTIONS(2034), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3105), + [sym_word] = ACTIONS(2036), + }, + [1838] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5267), + }, + [1839] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5239), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1840] = { + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(3109), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [sym__special_characters] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(3109), + [sym_raw_string] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3109), + [sym_word] = ACTIONS(2198), + }, + [1841] = { + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_PIPE_AMP] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [sym__special_characters] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(3111), + [sym_raw_string] = ACTIONS(2402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), + [anon_sym_BQUOTE] = ACTIONS(2402), + [anon_sym_LT_LPAREN] = ACTIONS(2402), + [anon_sym_GT_LPAREN] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3111), + [sym_word] = ACTIONS(2404), + }, + [1842] = { + [sym_file_descriptor] = ACTIONS(3293), + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_PIPE_AMP] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [anon_sym_EQ_TILDE] = ACTIONS(4614), + [anon_sym_EQ_EQ] = ACTIONS(4614), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_GT_GT] = ACTIONS(3293), + [anon_sym_AMP_GT] = ACTIONS(4614), + [anon_sym_AMP_GT_GT] = ACTIONS(3293), + [anon_sym_LT_AMP] = ACTIONS(3293), + [anon_sym_GT_AMP] = ACTIONS(3293), + [anon_sym_LT_LT] = ACTIONS(4614), + [anon_sym_LT_LT_DASH] = ACTIONS(3293), + [anon_sym_LT_LT_LT] = ACTIONS(3293), + [sym__special_characters] = ACTIONS(4614), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4614), + [sym_raw_string] = ACTIONS(3293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3293), + [anon_sym_LT_LPAREN] = ACTIONS(3293), + [anon_sym_GT_LPAREN] = ACTIONS(3293), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3295), + }, + [1843] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5269), + [sym_comment] = ACTIONS(56), + }, + [1844] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5271), + [sym_comment] = ACTIONS(56), + }, + [1845] = { + [anon_sym_RBRACE] = ACTIONS(5271), + [sym_comment] = ACTIONS(56), + }, + [1846] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2504), + [anon_sym_RBRACE] = ACTIONS(5273), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1847] = { + [sym_file_descriptor] = ACTIONS(3357), + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(4622), + [anon_sym_PIPE_AMP] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [anon_sym_EQ_TILDE] = ACTIONS(4622), + [anon_sym_EQ_EQ] = ACTIONS(4622), + [anon_sym_LT] = ACTIONS(4622), + [anon_sym_GT] = ACTIONS(4622), + [anon_sym_GT_GT] = ACTIONS(3357), + [anon_sym_AMP_GT] = ACTIONS(4622), + [anon_sym_AMP_GT_GT] = ACTIONS(3357), + [anon_sym_LT_AMP] = ACTIONS(3357), + [anon_sym_GT_AMP] = ACTIONS(3357), + [anon_sym_LT_LT] = ACTIONS(4622), + [anon_sym_LT_LT_DASH] = ACTIONS(3357), + [anon_sym_LT_LT_LT] = ACTIONS(3357), + [sym__special_characters] = ACTIONS(4622), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(4622), + [sym_raw_string] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3357), + [anon_sym_LT_LPAREN] = ACTIONS(3357), + [anon_sym_GT_LPAREN] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3359), + }, + [1848] = { + [sym_concatenation] = STATE(2507), + [sym_string] = STATE(2506), + [sym_simple_expansion] = STATE(2506), + [sym_string_expansion] = STATE(2506), + [sym_expansion] = STATE(2506), + [sym_command_substitution] = STATE(2506), + [sym_process_substitution] = STATE(2506), + [anon_sym_RBRACE] = ACTIONS(5271), + [sym__special_characters] = ACTIONS(5275), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(5277), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5279), + }, + [1849] = { + [sym_file_descriptor] = ACTIONS(3402), + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_EQ_TILDE] = ACTIONS(4630), + [anon_sym_EQ_EQ] = ACTIONS(4630), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_GT] = ACTIONS(4630), + [anon_sym_AMP_GT_GT] = ACTIONS(3402), + [anon_sym_LT_AMP] = ACTIONS(3402), + [anon_sym_GT_AMP] = ACTIONS(3402), + [anon_sym_LT_LT] = ACTIONS(4630), + [anon_sym_LT_LT_DASH] = ACTIONS(3402), + [anon_sym_LT_LT_LT] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(4630), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3404), + }, + [1850] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5281), + }, + [1851] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5283), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1852] = { + [sym_file_descriptor] = ACTIONS(3410), + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(4636), + [anon_sym_PIPE_AMP] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [anon_sym_EQ_TILDE] = ACTIONS(4636), + [anon_sym_EQ_EQ] = ACTIONS(4636), + [anon_sym_LT] = ACTIONS(4636), + [anon_sym_GT] = ACTIONS(4636), + [anon_sym_GT_GT] = ACTIONS(3410), + [anon_sym_AMP_GT] = ACTIONS(4636), + [anon_sym_AMP_GT_GT] = ACTIONS(3410), + [anon_sym_LT_AMP] = ACTIONS(3410), + [anon_sym_GT_AMP] = ACTIONS(3410), + [anon_sym_LT_LT] = ACTIONS(4636), + [anon_sym_LT_LT_DASH] = ACTIONS(3410), + [anon_sym_LT_LT_LT] = ACTIONS(3410), + [sym__special_characters] = ACTIONS(4636), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_DOLLAR] = ACTIONS(4636), + [sym_raw_string] = ACTIONS(3410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), + [anon_sym_BQUOTE] = ACTIONS(3410), + [anon_sym_LT_LPAREN] = ACTIONS(3410), + [anon_sym_GT_LPAREN] = ACTIONS(3410), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3412), + }, + [1853] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5285), + }, + [1854] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5287), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1855] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5289), + }, + [1856] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5271), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1857] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2514), + [anon_sym_RBRACE] = ACTIONS(5291), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1858] = { + [sym_file_descriptor] = ACTIONS(3422), + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(4646), + [anon_sym_PIPE_AMP] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_EQ_TILDE] = ACTIONS(4646), + [anon_sym_EQ_EQ] = ACTIONS(4646), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_GT_GT] = ACTIONS(3422), + [anon_sym_AMP_GT] = ACTIONS(4646), + [anon_sym_AMP_GT_GT] = ACTIONS(3422), + [anon_sym_LT_AMP] = ACTIONS(3422), + [anon_sym_GT_AMP] = ACTIONS(3422), + [anon_sym_LT_LT] = ACTIONS(4646), + [anon_sym_LT_LT_DASH] = ACTIONS(3422), + [anon_sym_LT_LT_LT] = ACTIONS(3422), + [sym__special_characters] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_DOLLAR] = ACTIONS(4646), + [sym_raw_string] = ACTIONS(3422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), + [anon_sym_BQUOTE] = ACTIONS(3422), + [anon_sym_LT_LPAREN] = ACTIONS(3422), + [anon_sym_GT_LPAREN] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3424), + }, + [1859] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2516), + [anon_sym_RBRACE] = ACTIONS(5293), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1860] = { + [sym_file_redirect] = STATE(2415), + [sym_file_descriptor] = ACTIONS(3804), + [anon_sym_PIPE] = ACTIONS(5001), + [anon_sym_PIPE_AMP] = ACTIONS(5003), + [anon_sym_AMP_AMP] = ACTIONS(5003), + [anon_sym_PIPE_PIPE] = ACTIONS(5003), + [anon_sym_LT] = ACTIONS(3806), + [anon_sym_GT] = ACTIONS(3806), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_AMP_GT] = ACTIONS(3806), + [anon_sym_AMP_GT_GT] = ACTIONS(3808), + [anon_sym_LT_AMP] = ACTIONS(3808), + [anon_sym_GT_AMP] = ACTIONS(3808), + [anon_sym_BQUOTE] = ACTIONS(5003), + [sym_comment] = ACTIONS(56), + }, + [1861] = { + [aux_sym_concatenation_repeat1] = STATE(1864), + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(3980), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1241), + [anon_sym_PIPE_PIPE] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1243), + [anon_sym_GT] = ACTIONS(1243), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_AMP_GT] = ACTIONS(1243), + [anon_sym_AMP_GT_GT] = ACTIONS(1241), + [anon_sym_LT_AMP] = ACTIONS(1241), + [anon_sym_GT_AMP] = ACTIONS(1241), + [anon_sym_LT_LT] = ACTIONS(1243), + [anon_sym_LT_LT_DASH] = ACTIONS(1241), + [anon_sym_LT_LT_LT] = ACTIONS(1241), + [anon_sym_BQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(56), + }, + [1862] = { + [aux_sym_concatenation_repeat1] = STATE(1864), + [sym_file_descriptor] = ACTIONS(1245), + [sym__concat] = ACTIONS(3980), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_PIPE_AMP] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_LT] = ACTIONS(1247), + [anon_sym_GT] = ACTIONS(1247), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_AMP_GT] = ACTIONS(1247), + [anon_sym_AMP_GT_GT] = ACTIONS(1245), + [anon_sym_LT_AMP] = ACTIONS(1245), + [anon_sym_GT_AMP] = ACTIONS(1245), + [anon_sym_LT_LT] = ACTIONS(1247), + [anon_sym_LT_LT_DASH] = ACTIONS(1245), + [anon_sym_LT_LT_LT] = ACTIONS(1245), + [anon_sym_BQUOTE] = ACTIONS(1245), + [sym_comment] = ACTIONS(56), + }, + [1863] = { + [sym_string] = STATE(2517), + [sym_simple_expansion] = STATE(2517), + [sym_string_expansion] = STATE(2517), + [sym_expansion] = STATE(2517), + [sym_command_substitution] = STATE(2517), + [sym_process_substitution] = STATE(2517), + [sym__special_characters] = ACTIONS(5295), + [anon_sym_DQUOTE] = ACTIONS(2380), + [anon_sym_DOLLAR] = ACTIONS(2382), + [sym_raw_string] = ACTIONS(5297), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2388), + [anon_sym_BQUOTE] = ACTIONS(2390), + [anon_sym_LT_LPAREN] = ACTIONS(2392), + [anon_sym_GT_LPAREN] = ACTIONS(2392), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5295), + }, + [1864] = { + [aux_sym_concatenation_repeat1] = STATE(2518), + [sym_file_descriptor] = ACTIONS(790), + [sym__concat] = ACTIONS(3980), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_LT] = ACTIONS(1571), + [anon_sym_GT] = ACTIONS(1571), + [anon_sym_GT_GT] = ACTIONS(790), + [anon_sym_AMP_GT] = ACTIONS(1571), + [anon_sym_AMP_GT_GT] = ACTIONS(790), + [anon_sym_LT_AMP] = ACTIONS(790), + [anon_sym_GT_AMP] = ACTIONS(790), + [anon_sym_LT_LT] = ACTIONS(1571), + [anon_sym_LT_LT_DASH] = ACTIONS(790), + [anon_sym_LT_LT_LT] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [sym_comment] = ACTIONS(56), + }, + [1865] = { + [sym_file_descriptor] = ACTIONS(794), + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_LT] = ACTIONS(1573), + [anon_sym_GT] = ACTIONS(1573), + [anon_sym_GT_GT] = ACTIONS(794), + [anon_sym_AMP_GT] = ACTIONS(1573), + [anon_sym_AMP_GT_GT] = ACTIONS(794), + [anon_sym_LT_AMP] = ACTIONS(794), + [anon_sym_GT_AMP] = ACTIONS(794), + [anon_sym_LT_LT] = ACTIONS(1573), + [anon_sym_LT_LT_DASH] = ACTIONS(794), + [anon_sym_LT_LT_LT] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [sym_comment] = ACTIONS(56), + }, + [1866] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(5299), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [1867] = { + [sym_file_descriptor] = ACTIONS(826), + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_LT] = ACTIONS(1577), + [anon_sym_GT] = ACTIONS(1577), + [anon_sym_GT_GT] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(1577), + [anon_sym_AMP_GT_GT] = ACTIONS(826), + [anon_sym_LT_AMP] = ACTIONS(826), + [anon_sym_GT_AMP] = ACTIONS(826), + [anon_sym_LT_LT] = ACTIONS(1577), + [anon_sym_LT_LT_DASH] = ACTIONS(826), + [anon_sym_LT_LT_LT] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), + [sym_comment] = ACTIONS(56), + }, + [1868] = { + [sym_file_descriptor] = ACTIONS(830), + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_LT] = ACTIONS(1579), + [anon_sym_GT] = ACTIONS(1579), + [anon_sym_GT_GT] = ACTIONS(830), + [anon_sym_AMP_GT] = ACTIONS(1579), + [anon_sym_AMP_GT_GT] = ACTIONS(830), + [anon_sym_LT_AMP] = ACTIONS(830), + [anon_sym_GT_AMP] = ACTIONS(830), + [anon_sym_LT_LT] = ACTIONS(1579), + [anon_sym_LT_LT_DASH] = ACTIONS(830), + [anon_sym_LT_LT_LT] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), + [sym_comment] = ACTIONS(56), + }, + [1869] = { + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_LT] = ACTIONS(1581), + [anon_sym_GT] = ACTIONS(1581), + [anon_sym_GT_GT] = ACTIONS(834), + [anon_sym_AMP_GT] = ACTIONS(1581), + [anon_sym_AMP_GT_GT] = ACTIONS(834), + [anon_sym_LT_AMP] = ACTIONS(834), + [anon_sym_GT_AMP] = ACTIONS(834), + [anon_sym_LT_LT] = ACTIONS(1581), + [anon_sym_LT_LT_DASH] = ACTIONS(834), + [anon_sym_LT_LT_LT] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), + [sym_comment] = ACTIONS(56), + }, + [1870] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(5301), + [sym_comment] = ACTIONS(56), + }, + [1871] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2523), + [anon_sym_RBRACE] = ACTIONS(5303), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5305), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1872] = { + [sym_subscript] = STATE(2527), + [sym_variable_name] = ACTIONS(5307), + [anon_sym_DOLLAR] = ACTIONS(5309), + [anon_sym_DASH] = ACTIONS(5309), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5311), + [anon_sym_STAR] = ACTIONS(5309), + [anon_sym_AT] = ACTIONS(5309), + [anon_sym_QMARK] = ACTIONS(5309), + [anon_sym_0] = ACTIONS(5313), + [anon_sym__] = ACTIONS(5313), + }, + [1873] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2530), + [anon_sym_RBRACE] = ACTIONS(5315), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5317), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1874] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2533), + [anon_sym_RBRACE] = ACTIONS(5319), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5321), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1875] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5323), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [1876] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5323), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1877] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(5323), + [sym_comment] = ACTIONS(56), + }, + [1878] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(5323), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1879] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5325), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [1880] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5325), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [1881] = { + [sym_file_redirect] = STATE(540), + [sym_heredoc_redirect] = STATE(540), + [sym_herestring_redirect] = STATE(540), + [aux_sym_while_statement_repeat1] = STATE(1196), + [sym_file_descriptor] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(5145), + [anon_sym_PIPE_AMP] = ACTIONS(5147), + [anon_sym_AMP_AMP] = ACTIONS(5147), + [anon_sym_PIPE_PIPE] = ACTIONS(5147), + [anon_sym_LT] = ACTIONS(1082), + [anon_sym_GT] = ACTIONS(1082), + [anon_sym_GT_GT] = ACTIONS(1084), + [anon_sym_AMP_GT] = ACTIONS(1082), + [anon_sym_AMP_GT_GT] = ACTIONS(1084), + [anon_sym_LT_AMP] = ACTIONS(1084), + [anon_sym_GT_AMP] = ACTIONS(1084), + [anon_sym_LT_LT] = ACTIONS(994), + [anon_sym_LT_LT_DASH] = ACTIONS(996), + [anon_sym_LT_LT_LT] = ACTIONS(1086), + [anon_sym_BQUOTE] = ACTIONS(5147), + [sym_comment] = ACTIONS(56), + }, + [1882] = { + [anon_sym_esac] = ACTIONS(4400), + [anon_sym_PIPE] = ACTIONS(4400), + [anon_sym_RPAREN] = ACTIONS(4400), + [anon_sym_SEMI_SEMI] = ACTIONS(4400), + [anon_sym_PIPE_AMP] = ACTIONS(4400), + [anon_sym_AMP_AMP] = ACTIONS(4400), + [anon_sym_PIPE_PIPE] = ACTIONS(4400), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4400), + [anon_sym_LF] = ACTIONS(4400), + [anon_sym_AMP] = ACTIONS(4400), + }, + [1883] = { + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1892), + [anon_sym_LT_LT_LT] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [1884] = { + [aux_sym_concatenation_repeat1] = STATE(1884), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(5327), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1892), + [anon_sym_LT_LT_LT] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [1885] = { + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1929), + [anon_sym_AMP_GT] = ACTIONS(1929), + [anon_sym_AMP_GT_GT] = ACTIONS(1929), + [anon_sym_LT_AMP] = ACTIONS(1929), + [anon_sym_GT_AMP] = ACTIONS(1929), + [anon_sym_LT_LT] = ACTIONS(1929), + [anon_sym_LT_LT_DASH] = ACTIONS(1929), + [anon_sym_LT_LT_LT] = ACTIONS(1929), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), + }, + [1886] = { + [sym_concatenation] = STATE(2539), + [sym_string] = STATE(2538), + [sym_simple_expansion] = STATE(2538), + [sym_string_expansion] = STATE(2538), + [sym_expansion] = STATE(2538), + [sym_command_substitution] = STATE(2538), + [sym_process_substitution] = STATE(2538), + [anon_sym_RBRACE] = ACTIONS(5330), + [sym__special_characters] = ACTIONS(5332), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(5334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5336), + }, + [1887] = { + [sym_file_descriptor] = ACTIONS(1972), + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_GT] = ACTIONS(1974), + [anon_sym_GT_GT] = ACTIONS(1974), + [anon_sym_AMP_GT] = ACTIONS(1974), + [anon_sym_AMP_GT_GT] = ACTIONS(1974), + [anon_sym_LT_AMP] = ACTIONS(1974), + [anon_sym_GT_AMP] = ACTIONS(1974), + [anon_sym_LT_LT] = ACTIONS(1974), + [anon_sym_LT_LT_DASH] = ACTIONS(1974), + [anon_sym_LT_LT_LT] = ACTIONS(1974), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + }, + [1888] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5338), + }, + [1889] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5340), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1890] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(5342), + [sym_comment] = ACTIONS(56), + }, + [1891] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2545), + [anon_sym_RBRACE] = ACTIONS(5344), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5346), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1892] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2548), + [anon_sym_RBRACE] = ACTIONS(5348), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5350), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1893] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2550), + [anon_sym_RBRACE] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5352), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1894] = { + [sym_file_descriptor] = ACTIONS(2026), + [sym__concat] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_GT_GT] = ACTIONS(2028), + [anon_sym_AMP_GT] = ACTIONS(2028), + [anon_sym_AMP_GT_GT] = ACTIONS(2028), + [anon_sym_LT_AMP] = ACTIONS(2028), + [anon_sym_GT_AMP] = ACTIONS(2028), + [anon_sym_LT_LT] = ACTIONS(2028), + [anon_sym_LT_LT_DASH] = ACTIONS(2028), + [anon_sym_LT_LT_LT] = ACTIONS(2028), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + }, + [1895] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5354), + }, + [1896] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5356), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1897] = { + [sym_file_descriptor] = ACTIONS(2034), + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_GT] = ACTIONS(2036), + [anon_sym_GT_GT] = ACTIONS(2036), + [anon_sym_AMP_GT] = ACTIONS(2036), + [anon_sym_AMP_GT_GT] = ACTIONS(2036), + [anon_sym_LT_AMP] = ACTIONS(2036), + [anon_sym_GT_AMP] = ACTIONS(2036), + [anon_sym_LT_LT] = ACTIONS(2036), + [anon_sym_LT_LT_DASH] = ACTIONS(2036), + [anon_sym_LT_LT_LT] = ACTIONS(2036), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + }, + [1898] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5358), + }, + [1899] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5330), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1900] = { + [sym_file_descriptor] = ACTIONS(2196), + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_GT] = ACTIONS(2198), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_AMP_GT] = ACTIONS(2198), + [anon_sym_AMP_GT_GT] = ACTIONS(2198), + [anon_sym_LT_AMP] = ACTIONS(2198), + [anon_sym_GT_AMP] = ACTIONS(2198), + [anon_sym_LT_LT] = ACTIONS(2198), + [anon_sym_LT_LT_DASH] = ACTIONS(2198), + [anon_sym_LT_LT_LT] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + }, + [1901] = { + [sym_file_descriptor] = ACTIONS(2402), + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_AMP_GT] = ACTIONS(2404), + [anon_sym_AMP_GT_GT] = ACTIONS(2404), + [anon_sym_LT_AMP] = ACTIONS(2404), + [anon_sym_GT_AMP] = ACTIONS(2404), + [anon_sym_LT_LT] = ACTIONS(2404), + [anon_sym_LT_LT_DASH] = ACTIONS(2404), + [anon_sym_LT_LT_LT] = ACTIONS(2404), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + }, + [1902] = { + [sym__heredoc_middle] = ACTIONS(826), + [sym__heredoc_end] = ACTIONS(826), + [anon_sym_DOLLAR] = ACTIONS(1577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), + [sym_comment] = ACTIONS(56), + }, + [1903] = { + [sym__heredoc_middle] = ACTIONS(834), + [sym__heredoc_end] = ACTIONS(834), + [anon_sym_DOLLAR] = ACTIONS(1581), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), + [sym_comment] = ACTIONS(56), + }, + [1904] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(5360), + [sym_comment] = ACTIONS(56), + }, + [1905] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2557), + [anon_sym_RBRACE] = ACTIONS(5362), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5364), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1906] = { + [sym_subscript] = STATE(2561), + [sym_variable_name] = ACTIONS(5366), + [anon_sym_DOLLAR] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5370), + [anon_sym_STAR] = ACTIONS(5368), + [anon_sym_AT] = ACTIONS(5368), + [anon_sym_QMARK] = ACTIONS(5368), + [anon_sym_0] = ACTIONS(5372), + [anon_sym__] = ACTIONS(5372), + }, + [1907] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2564), + [anon_sym_RBRACE] = ACTIONS(5374), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5376), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1908] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2567), + [anon_sym_RBRACE] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5380), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1909] = { + [sym_file_descriptor] = ACTIONS(5382), + [anon_sym_esac] = ACTIONS(5384), + [anon_sym_PIPE] = ACTIONS(5384), + [anon_sym_RPAREN] = ACTIONS(5384), + [anon_sym_SEMI_SEMI] = ACTIONS(5384), + [anon_sym_PIPE_AMP] = ACTIONS(5384), + [anon_sym_AMP_AMP] = ACTIONS(5384), + [anon_sym_PIPE_PIPE] = ACTIONS(5384), + [anon_sym_LT] = ACTIONS(5384), + [anon_sym_GT] = ACTIONS(5384), + [anon_sym_GT_GT] = ACTIONS(5384), + [anon_sym_AMP_GT] = ACTIONS(5384), + [anon_sym_AMP_GT_GT] = ACTIONS(5384), + [anon_sym_LT_AMP] = ACTIONS(5384), + [anon_sym_GT_AMP] = ACTIONS(5384), + [anon_sym_LT_LT] = ACTIONS(5384), + [anon_sym_LT_LT_DASH] = ACTIONS(5384), + [anon_sym_LT_LT_LT] = ACTIONS(5384), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5384), + [anon_sym_LF] = ACTIONS(5384), + [anon_sym_AMP] = ACTIONS(5384), + }, + [1910] = { + [sym_simple_expansion] = STATE(1222), + [sym_expansion] = STATE(1222), + [aux_sym_heredoc_repeat1] = STATE(1910), + [sym__heredoc_middle] = ACTIONS(5386), + [sym__heredoc_end] = ACTIONS(5389), + [anon_sym_DOLLAR] = ACTIONS(5391), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5394), + [sym_comment] = ACTIONS(56), + }, + [1911] = { + [anon_sym_EQ] = ACTIONS(5397), + [anon_sym_PLUS_EQ] = ACTIONS(5397), + [sym_comment] = ACTIONS(56), + }, + [1912] = { + [anon_sym_EQ] = ACTIONS(5399), + [anon_sym_PLUS_EQ] = ACTIONS(5399), + [sym_comment] = ACTIONS(56), + }, + [1913] = { + [sym__concat] = ACTIONS(3293), + [anon_sym_RBRACK] = ACTIONS(3293), + [sym_comment] = ACTIONS(56), + }, + [1914] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5401), + [sym_comment] = ACTIONS(56), + }, + [1915] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5403), + [sym_comment] = ACTIONS(56), + }, + [1916] = { + [anon_sym_RBRACE] = ACTIONS(5403), + [sym_comment] = ACTIONS(56), + }, + [1917] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2571), + [anon_sym_RBRACE] = ACTIONS(5405), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1918] = { + [sym__concat] = ACTIONS(3357), + [anon_sym_RBRACK] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), + }, + [1919] = { + [sym_concatenation] = STATE(2574), + [sym_string] = STATE(2573), + [sym_simple_expansion] = STATE(2573), + [sym_string_expansion] = STATE(2573), + [sym_expansion] = STATE(2573), + [sym_command_substitution] = STATE(2573), + [sym_process_substitution] = STATE(2573), + [anon_sym_RBRACE] = ACTIONS(5403), + [sym__special_characters] = ACTIONS(5407), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(5409), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5411), + }, + [1920] = { + [sym__concat] = ACTIONS(3402), + [anon_sym_RBRACK] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), + }, + [1921] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5413), + }, + [1922] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5415), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1923] = { + [sym__concat] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3410), + [sym_comment] = ACTIONS(56), + }, + [1924] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5417), + }, + [1925] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5419), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1926] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5421), + }, + [1927] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5403), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1928] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2581), + [anon_sym_RBRACE] = ACTIONS(5423), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1929] = { + [sym__concat] = ACTIONS(3422), + [anon_sym_RBRACK] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + }, + [1930] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2583), + [anon_sym_RBRACE] = ACTIONS(5425), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1931] = { + [sym__concat] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3066), + }, + [1932] = { + [aux_sym_concatenation_repeat1] = STATE(1932), + [sym__concat] = ACTIONS(5427), + [anon_sym_RPAREN] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3066), + }, + [1933] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_RPAREN] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3071), + }, + [1934] = { + [sym_concatenation] = STATE(2587), + [sym_string] = STATE(2586), + [sym_simple_expansion] = STATE(2586), + [sym_string_expansion] = STATE(2586), + [sym_expansion] = STATE(2586), + [sym_command_substitution] = STATE(2586), + [sym_process_substitution] = STATE(2586), + [anon_sym_RBRACE] = ACTIONS(5430), + [sym__special_characters] = ACTIONS(5432), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(5434), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5436), + }, + [1935] = { + [sym__concat] = ACTIONS(1972), + [anon_sym_RPAREN] = ACTIONS(1972), + [sym__special_characters] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(3081), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [anon_sym_LT_LPAREN] = ACTIONS(1972), + [anon_sym_GT_LPAREN] = ACTIONS(1972), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3081), + }, + [1936] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5438), + }, + [1937] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5440), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1938] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(5442), + [sym_comment] = ACTIONS(56), + }, + [1939] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2593), + [anon_sym_RBRACE] = ACTIONS(5444), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5446), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1940] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2596), + [anon_sym_RBRACE] = ACTIONS(5448), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5450), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1941] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2598), + [anon_sym_RBRACE] = ACTIONS(5430), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5452), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1942] = { + [sym__concat] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2026), + [sym__special_characters] = ACTIONS(3099), + [anon_sym_DQUOTE] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(3099), + [sym_raw_string] = ACTIONS(2026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2026), + [anon_sym_GT_LPAREN] = ACTIONS(2026), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3099), + }, + [1943] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5454), + }, + [1944] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5456), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1945] = { + [sym__concat] = ACTIONS(2034), + [anon_sym_RPAREN] = ACTIONS(2034), + [sym__special_characters] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(3105), + [sym_raw_string] = ACTIONS(2034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), + [anon_sym_BQUOTE] = ACTIONS(2034), + [anon_sym_LT_LPAREN] = ACTIONS(2034), + [anon_sym_GT_LPAREN] = ACTIONS(2034), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3105), + }, + [1946] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5458), + }, + [1947] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5430), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1948] = { + [sym__concat] = ACTIONS(2196), + [anon_sym_RPAREN] = ACTIONS(2196), + [sym__special_characters] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(3109), + [sym_raw_string] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3109), + }, + [1949] = { + [sym__concat] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2402), + [sym__special_characters] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(3111), + [sym_raw_string] = ACTIONS(2402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), + [anon_sym_BQUOTE] = ACTIONS(2402), + [anon_sym_LT_LPAREN] = ACTIONS(2402), + [anon_sym_GT_LPAREN] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3111), + }, + [1950] = { + [sym_file_descriptor] = ACTIONS(3293), + [sym__concat] = ACTIONS(3293), + [sym_variable_name] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_GT] = ACTIONS(3295), + [anon_sym_GT_GT] = ACTIONS(3295), + [anon_sym_AMP_GT] = ACTIONS(3295), + [anon_sym_AMP_GT_GT] = ACTIONS(3295), + [anon_sym_LT_AMP] = ACTIONS(3295), + [anon_sym_GT_AMP] = ACTIONS(3295), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), + [anon_sym_BQUOTE] = ACTIONS(3295), + [anon_sym_LT_LPAREN] = ACTIONS(3295), + [anon_sym_GT_LPAREN] = ACTIONS(3295), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + }, + [1951] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5460), + [sym_comment] = ACTIONS(56), + }, + [1952] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5462), + [sym_comment] = ACTIONS(56), + }, + [1953] = { + [anon_sym_RBRACE] = ACTIONS(5462), + [sym_comment] = ACTIONS(56), + }, + [1954] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2605), + [anon_sym_RBRACE] = ACTIONS(5464), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1955] = { + [sym_file_descriptor] = ACTIONS(3357), + [sym__concat] = ACTIONS(3357), + [sym_variable_name] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_AMP_GT] = ACTIONS(3359), + [anon_sym_AMP_GT_GT] = ACTIONS(3359), + [anon_sym_LT_AMP] = ACTIONS(3359), + [anon_sym_GT_AMP] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), + }, + [1956] = { + [sym_concatenation] = STATE(2608), + [sym_string] = STATE(2607), + [sym_simple_expansion] = STATE(2607), + [sym_string_expansion] = STATE(2607), + [sym_expansion] = STATE(2607), + [sym_command_substitution] = STATE(2607), + [sym_process_substitution] = STATE(2607), + [anon_sym_RBRACE] = ACTIONS(5462), + [sym__special_characters] = ACTIONS(5466), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(5468), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5470), + }, + [1957] = { + [sym_file_descriptor] = ACTIONS(3402), + [sym__concat] = ACTIONS(3402), + [sym_variable_name] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_GT] = ACTIONS(3404), + [anon_sym_GT_GT] = ACTIONS(3404), + [anon_sym_AMP_GT] = ACTIONS(3404), + [anon_sym_AMP_GT_GT] = ACTIONS(3404), + [anon_sym_LT_AMP] = ACTIONS(3404), + [anon_sym_GT_AMP] = ACTIONS(3404), + [sym__special_characters] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_DOLLAR] = ACTIONS(3404), + [sym_raw_string] = ACTIONS(3404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), + [anon_sym_BQUOTE] = ACTIONS(3404), + [anon_sym_LT_LPAREN] = ACTIONS(3404), + [anon_sym_GT_LPAREN] = ACTIONS(3404), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), + }, + [1958] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5472), + }, + [1959] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5474), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1960] = { + [sym_file_descriptor] = ACTIONS(3410), + [sym__concat] = ACTIONS(3410), + [sym_variable_name] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_GT] = ACTIONS(3412), + [anon_sym_AMP_GT_GT] = ACTIONS(3412), + [anon_sym_LT_AMP] = ACTIONS(3412), + [anon_sym_GT_AMP] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(3412), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), + }, + [1961] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5476), + }, + [1962] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5478), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1963] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5480), + }, + [1964] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5462), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1965] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2615), + [anon_sym_RBRACE] = ACTIONS(5482), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1966] = { + [sym_file_descriptor] = ACTIONS(3422), + [sym__concat] = ACTIONS(3422), + [sym_variable_name] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(3424), + [anon_sym_AMP_GT] = ACTIONS(3424), + [anon_sym_AMP_GT_GT] = ACTIONS(3424), + [anon_sym_LT_AMP] = ACTIONS(3424), + [anon_sym_GT_AMP] = ACTIONS(3424), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(3424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), + [anon_sym_BQUOTE] = ACTIONS(3424), + [anon_sym_LT_LPAREN] = ACTIONS(3424), + [anon_sym_GT_LPAREN] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), + }, + [1967] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2617), + [anon_sym_RBRACE] = ACTIONS(5484), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1968] = { + [sym__concat] = ACTIONS(1890), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [1969] = { + [aux_sym_concatenation_repeat1] = STATE(1969), + [sym__concat] = ACTIONS(5486), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [1970] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), + [anon_sym_BQUOTE] = ACTIONS(1929), + [anon_sym_LT_LPAREN] = ACTIONS(1929), + [anon_sym_GT_LPAREN] = ACTIONS(1929), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), + }, + [1971] = { + [sym_concatenation] = STATE(2621), + [sym_string] = STATE(2620), + [sym_simple_expansion] = STATE(2620), + [sym_string_expansion] = STATE(2620), + [sym_expansion] = STATE(2620), + [sym_command_substitution] = STATE(2620), + [sym_process_substitution] = STATE(2620), + [anon_sym_RBRACE] = ACTIONS(5489), + [sym__special_characters] = ACTIONS(5491), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(5493), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5495), + }, + [1972] = { + [sym__concat] = ACTIONS(1972), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [sym__special_characters] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1974), + [sym_raw_string] = ACTIONS(1974), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [anon_sym_BQUOTE] = ACTIONS(1974), + [anon_sym_LT_LPAREN] = ACTIONS(1974), + [anon_sym_GT_LPAREN] = ACTIONS(1974), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + }, + [1973] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5497), + }, + [1974] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5499), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1975] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(5501), + [sym_comment] = ACTIONS(56), + }, + [1976] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2627), + [anon_sym_RBRACE] = ACTIONS(5503), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5505), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1977] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2630), + [anon_sym_RBRACE] = ACTIONS(5507), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5509), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1978] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2632), + [anon_sym_RBRACE] = ACTIONS(5489), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5511), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1979] = { + [sym__concat] = ACTIONS(2026), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym_raw_string] = ACTIONS(2028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(2028), + [anon_sym_LT_LPAREN] = ACTIONS(2028), + [anon_sym_GT_LPAREN] = ACTIONS(2028), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + }, + [1980] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5513), + }, + [1981] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5515), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1982] = { + [sym__concat] = ACTIONS(2034), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [anon_sym_LT_LPAREN] = ACTIONS(2036), + [anon_sym_GT_LPAREN] = ACTIONS(2036), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + }, + [1983] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5517), + }, + [1984] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5489), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [1985] = { + [sym__concat] = ACTIONS(2196), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [sym__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + }, + [1986] = { + [sym__concat] = ACTIONS(2402), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [sym__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(2404), + [sym_raw_string] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2404), + [anon_sym_LT_LPAREN] = ACTIONS(2404), + [anon_sym_GT_LPAREN] = ACTIONS(2404), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + }, + [1987] = { + [anon_sym_esac] = ACTIONS(5519), + [anon_sym_PIPE] = ACTIONS(5519), + [anon_sym_RPAREN] = ACTIONS(5519), + [anon_sym_SEMI_SEMI] = ACTIONS(5519), + [anon_sym_PIPE_AMP] = ACTIONS(5519), + [anon_sym_AMP_AMP] = ACTIONS(5519), + [anon_sym_PIPE_PIPE] = ACTIONS(5519), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5519), + [anon_sym_LF] = ACTIONS(5519), + [anon_sym_AMP] = ACTIONS(5519), + }, + [1988] = { + [anon_sym_esac] = ACTIONS(4309), + [anon_sym_PIPE] = ACTIONS(4309), + [anon_sym_RPAREN] = ACTIONS(4309), + [anon_sym_SEMI_SEMI] = ACTIONS(4309), + [anon_sym_PIPE_AMP] = ACTIONS(4309), + [anon_sym_AMP_AMP] = ACTIONS(4309), + [anon_sym_PIPE_PIPE] = ACTIONS(4309), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4309), + [anon_sym_LF] = ACTIONS(4309), + [anon_sym_AMP] = ACTIONS(4309), + }, + [1989] = { + [sym__terminated_statement] = STATE(702), + [sym_for_statement] = STATE(703), + [sym_while_statement] = STATE(703), + [sym_if_statement] = STATE(703), + [sym_case_statement] = STATE(703), + [sym_function_definition] = STATE(703), + [sym_subshell] = STATE(703), + [sym_pipeline] = STATE(703), + [sym_list] = STATE(703), + [sym_command] = STATE(703), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(703), + [sym_variable_assignment] = STATE(706), + [sym_declaration_command] = STATE(703), + [sym_unset_command] = STATE(703), + [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2656), - [sym_string] = STATE(2645), - [sym_simple_expansion] = STATE(2645), - [sym_string_expansion] = STATE(2645), - [sym_expansion] = STATE(2645), - [sym_command_substitution] = STATE(2645), - [sym_process_substitution] = STATE(2645), - [aux_sym_program_repeat1] = STATE(2666), - [aux_sym_command_repeat1] = STATE(2658), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(2636), + [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5521), + [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5523), + [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), + [anon_sym_fi] = ACTIONS(5521), + [anon_sym_elif] = ACTIONS(5521), + [anon_sym_else] = ACTIONS(5521), [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(5561), - [anon_sym_SEMI_SEMI] = ACTIONS(5563), - [anon_sym_function] = ACTIONS(5529), + [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), - [anon_sym_declare] = ACTIONS(5535), - [anon_sym_typeset] = ACTIONS(5535), - [anon_sym_export] = ACTIONS(5535), - [anon_sym_readonly] = ACTIONS(5535), - [anon_sym_local] = ACTIONS(5535), - [anon_sym_unset] = ACTIONS(5537), - [anon_sym_unsetenv] = ACTIONS(5537), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -57127,217 +56987,486 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5539), - [anon_sym_DQUOTE] = ACTIONS(5541), - [anon_sym_DOLLAR] = ACTIONS(5543), - [sym_raw_string] = ACTIONS(5545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), - [anon_sym_BQUOTE] = ACTIONS(5551), - [anon_sym_LT_LPAREN] = ACTIONS(5553), - [anon_sym_GT_LPAREN] = ACTIONS(5553), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5555), + [sym_word] = ACTIONS(58), + }, + [1990] = { + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_fi] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1104), + [sym_raw_string] = ACTIONS(1102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), + [anon_sym_BQUOTE] = ACTIONS(1102), + [anon_sym_LT_LPAREN] = ACTIONS(1102), + [anon_sym_GT_LPAREN] = ACTIONS(1102), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1106), + }, + [1991] = { + [sym__terminated_statement] = STATE(1319), + [sym_for_statement] = STATE(1320), + [sym_while_statement] = STATE(1320), + [sym_if_statement] = STATE(1320), + [sym_case_statement] = STATE(1320), + [sym_function_definition] = STATE(1320), + [sym_subshell] = STATE(1320), + [sym_pipeline] = STATE(1320), + [sym_list] = STATE(1320), + [sym_command] = STATE(1320), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(1320), + [sym_variable_assignment] = STATE(1321), + [sym_declaration_command] = STATE(1320), + [sym_unset_command] = STATE(1320), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1991), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_fi] = ACTIONS(4311), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_function] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1184), + [anon_sym_typeset] = ACTIONS(1184), + [anon_sym_export] = ACTIONS(1184), + [anon_sym_readonly] = ACTIONS(1184), + [anon_sym_local] = ACTIONS(1184), + [anon_sym_unset] = ACTIONS(1187), + [anon_sym_unsetenv] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_AMP_GT] = ACTIONS(1190), + [anon_sym_AMP_GT_GT] = ACTIONS(1193), + [anon_sym_LT_AMP] = ACTIONS(1193), + [anon_sym_GT_AMP] = ACTIONS(1193), + [sym__special_characters] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(1202), + [sym_raw_string] = ACTIONS(1205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(1214), + [anon_sym_LT_LPAREN] = ACTIONS(1217), + [anon_sym_GT_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1220), + }, + [1992] = { + [anon_sym_esac] = ACTIONS(5523), + [anon_sym_PIPE] = ACTIONS(5523), + [anon_sym_RPAREN] = ACTIONS(5523), + [anon_sym_SEMI_SEMI] = ACTIONS(5523), + [anon_sym_PIPE_AMP] = ACTIONS(5523), + [anon_sym_AMP_AMP] = ACTIONS(5523), + [anon_sym_PIPE_PIPE] = ACTIONS(5523), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5523), + [anon_sym_LF] = ACTIONS(5523), + [anon_sym_AMP] = ACTIONS(5523), + }, + [1993] = { + [anon_sym_fi] = ACTIONS(5525), + [sym_comment] = ACTIONS(56), + }, + [1994] = { + [sym_string] = STATE(2638), + [sym_simple_expansion] = STATE(2638), + [sym_string_expansion] = STATE(2638), + [sym_expansion] = STATE(2638), + [sym_command_substitution] = STATE(2638), + [sym_process_substitution] = STATE(2638), + [sym__special_characters] = ACTIONS(5527), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(5529), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5527), + }, + [1995] = { + [sym_concatenation] = STATE(2641), + [sym_string] = STATE(2640), + [sym_simple_expansion] = STATE(2640), + [sym_string_expansion] = STATE(2640), + [sym_expansion] = STATE(2640), + [sym_command_substitution] = STATE(2640), + [sym_process_substitution] = STATE(2640), + [sym__special_characters] = ACTIONS(5531), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(5533), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5535), + }, + [1996] = { + [sym__terminated_statement] = STATE(2659), + [sym_for_statement] = STATE(2660), + [sym_while_statement] = STATE(2660), + [sym_if_statement] = STATE(2660), + [sym_case_statement] = STATE(2660), + [sym_function_definition] = STATE(2660), + [sym_subshell] = STATE(2660), + [sym_pipeline] = STATE(2660), + [sym_list] = STATE(2660), + [sym_command] = STATE(2660), + [sym_command_name] = STATE(2661), + [sym_bracket_command] = STATE(2660), + [sym_variable_assignment] = STATE(2662), + [sym_declaration_command] = STATE(2660), + [sym_unset_command] = STATE(2660), + [sym_subscript] = STATE(2663), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(2664), + [sym_string] = STATE(2653), + [sym_simple_expansion] = STATE(2653), + [sym_string_expansion] = STATE(2653), + [sym_expansion] = STATE(2653), + [sym_command_substitution] = STATE(2653), + [sym_process_substitution] = STATE(2653), + [aux_sym_program_repeat1] = STATE(2665), + [aux_sym_command_repeat1] = STATE(2666), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(5537), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(5539), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_esac] = ACTIONS(5541), + [anon_sym_SEMI_SEMI] = ACTIONS(5543), + [anon_sym_function] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(5547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), + [anon_sym_declare] = ACTIONS(5551), + [anon_sym_typeset] = ACTIONS(5551), + [anon_sym_export] = ACTIONS(5551), + [anon_sym_readonly] = ACTIONS(5551), + [anon_sym_local] = ACTIONS(5551), + [anon_sym_unset] = ACTIONS(5553), + [anon_sym_unsetenv] = ACTIONS(5553), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(5555), + [anon_sym_DQUOTE] = ACTIONS(5557), + [anon_sym_DOLLAR] = ACTIONS(5559), + [sym_raw_string] = ACTIONS(5561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), + [anon_sym_BQUOTE] = ACTIONS(5567), + [anon_sym_LT_LPAREN] = ACTIONS(5569), + [anon_sym_GT_LPAREN] = ACTIONS(5569), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5571), }, [1997] = { - [aux_sym_case_item_repeat1] = STATE(2660), - [anon_sym_PIPE] = ACTIONS(4320), - [anon_sym_RPAREN] = ACTIONS(5565), + [aux_sym_case_item_repeat1] = STATE(2668), + [anon_sym_PIPE] = ACTIONS(4332), + [anon_sym_RPAREN] = ACTIONS(5573), [sym_comment] = ACTIONS(56), }, [1998] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(5567), + [aux_sym_concatenation_repeat1] = STATE(2669), + [sym__concat] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(790), + [anon_sym_RPAREN] = ACTIONS(790), [sym_comment] = ACTIONS(56), }, [1999] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2671), - [anon_sym_RBRACE] = ACTIONS(5569), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5571), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(794), + [anon_sym_RPAREN] = ACTIONS(794), + [sym_comment] = ACTIONS(56), }, [2000] = { - [sym_subscript] = STATE(2675), - [sym_variable_name] = ACTIONS(5573), - [anon_sym_DOLLAR] = ACTIONS(5575), - [anon_sym_DASH] = ACTIONS(5575), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5577), - [anon_sym_STAR] = ACTIONS(5575), - [anon_sym_AT] = ACTIONS(5575), - [anon_sym_QMARK] = ACTIONS(5575), - [anon_sym_0] = ACTIONS(5579), - [anon_sym__] = ACTIONS(5579), + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(5575), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), }, [2001] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2678), - [anon_sym_RBRACE] = ACTIONS(5581), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5583), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(826), + [anon_sym_RPAREN] = ACTIONS(826), + [sym_comment] = ACTIONS(56), }, [2002] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2681), - [anon_sym_RBRACE] = ACTIONS(5585), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5587), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(830), + [anon_sym_RPAREN] = ACTIONS(830), + [sym_comment] = ACTIONS(56), }, [2003] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5589), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(834), + [anon_sym_RPAREN] = ACTIONS(834), [sym_comment] = ACTIONS(56), }, [2004] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5589), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym__terminated_statement] = STATE(2659), + [sym_for_statement] = STATE(2672), + [sym_while_statement] = STATE(2672), + [sym_if_statement] = STATE(2672), + [sym_case_statement] = STATE(2672), + [sym_function_definition] = STATE(2672), + [sym_subshell] = STATE(2672), + [sym_pipeline] = STATE(2672), + [sym_list] = STATE(2672), + [sym_command] = STATE(2672), + [sym_command_name] = STATE(2661), + [sym_bracket_command] = STATE(2672), + [sym_variable_assignment] = STATE(2673), + [sym_declaration_command] = STATE(2672), + [sym_unset_command] = STATE(2672), + [sym_subscript] = STATE(2663), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(2664), + [sym_string] = STATE(2653), + [sym_simple_expansion] = STATE(2653), + [sym_string_expansion] = STATE(2653), + [sym_expansion] = STATE(2653), + [sym_command_substitution] = STATE(2653), + [sym_process_substitution] = STATE(2653), + [aux_sym_program_repeat1] = STATE(2674), + [aux_sym_command_repeat1] = STATE(2666), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(5537), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(5539), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_esac] = ACTIONS(5577), + [anon_sym_SEMI_SEMI] = ACTIONS(5579), + [anon_sym_function] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(5547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), + [anon_sym_declare] = ACTIONS(5551), + [anon_sym_typeset] = ACTIONS(5551), + [anon_sym_export] = ACTIONS(5551), + [anon_sym_readonly] = ACTIONS(5551), + [anon_sym_local] = ACTIONS(5551), + [anon_sym_unset] = ACTIONS(5553), + [anon_sym_unsetenv] = ACTIONS(5553), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(5555), + [anon_sym_DQUOTE] = ACTIONS(5557), + [anon_sym_DOLLAR] = ACTIONS(5559), + [sym_raw_string] = ACTIONS(5561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), + [anon_sym_BQUOTE] = ACTIONS(5567), + [anon_sym_LT_LPAREN] = ACTIONS(5569), + [anon_sym_GT_LPAREN] = ACTIONS(5569), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [sym_word] = ACTIONS(5571), }, [2005] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(5589), + [aux_sym_case_item_repeat1] = STATE(2668), + [anon_sym_PIPE] = ACTIONS(4332), + [anon_sym_RPAREN] = ACTIONS(5581), [sym_comment] = ACTIONS(56), }, [2006] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(5589), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(5583), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [2007] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5591), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2679), + [anon_sym_RBRACE] = ACTIONS(5585), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5587), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2008] = { + [sym_subscript] = STATE(2683), + [sym_variable_name] = ACTIONS(5589), + [anon_sym_DOLLAR] = ACTIONS(5591), + [anon_sym_DASH] = ACTIONS(5591), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5593), + [anon_sym_STAR] = ACTIONS(5591), + [anon_sym_AT] = ACTIONS(5591), + [anon_sym_QMARK] = ACTIONS(5591), + [anon_sym_0] = ACTIONS(5595), + [anon_sym__] = ACTIONS(5595), + }, + [2009] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2686), + [anon_sym_RBRACE] = ACTIONS(5597), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5599), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2010] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2689), + [anon_sym_RBRACE] = ACTIONS(5601), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5603), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2011] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5605), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [2012] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5591), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5605), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -57357,236 +57486,222 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [2009] = { - [anon_sym_esac] = ACTIONS(5593), - [anon_sym_PIPE] = ACTIONS(5593), - [anon_sym_RPAREN] = ACTIONS(5593), - [anon_sym_SEMI_SEMI] = ACTIONS(5593), - [anon_sym_PIPE_AMP] = ACTIONS(5593), - [anon_sym_AMP_AMP] = ACTIONS(5593), - [anon_sym_PIPE_PIPE] = ACTIONS(5593), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5593), - [anon_sym_LF] = ACTIONS(5593), - [anon_sym_AMP] = ACTIONS(5593), - }, - [2010] = { - [anon_sym_esac] = ACTIONS(5595), - [sym_comment] = ACTIONS(56), - }, - [2011] = { - [sym_case_item] = STATE(1332), - [sym_concatenation] = STATE(2687), - [sym_string] = STATE(2686), - [sym_simple_expansion] = STATE(2686), - [sym_string_expansion] = STATE(2686), - [sym_expansion] = STATE(2686), - [sym_command_substitution] = STATE(2686), - [sym_process_substitution] = STATE(2686), - [aux_sym_case_statement_repeat1] = STATE(2011), - [sym__special_characters] = ACTIONS(5597), - [anon_sym_DQUOTE] = ACTIONS(5600), - [anon_sym_DOLLAR] = ACTIONS(5603), - [sym_raw_string] = ACTIONS(5606), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5609), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5612), - [anon_sym_BQUOTE] = ACTIONS(5615), - [anon_sym_LT_LPAREN] = ACTIONS(5618), - [anon_sym_GT_LPAREN] = ACTIONS(5618), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5621), - }, - [2012] = { - [anon_sym_esac] = ACTIONS(5624), - [anon_sym_PIPE] = ACTIONS(5624), - [anon_sym_RPAREN] = ACTIONS(5624), - [anon_sym_SEMI_SEMI] = ACTIONS(5624), - [anon_sym_PIPE_AMP] = ACTIONS(5624), - [anon_sym_AMP_AMP] = ACTIONS(5624), - [anon_sym_PIPE_PIPE] = ACTIONS(5624), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5624), - [anon_sym_LF] = ACTIONS(5624), - [anon_sym_AMP] = ACTIONS(5624), - }, [2013] = { - [sym_case_item] = STATE(1332), - [sym_last_case_item] = STATE(2688), - [sym_concatenation] = STATE(1334), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_string_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [aux_sym_case_statement_repeat1] = STATE(2011), - [sym__special_characters] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(5605), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4352), }, [2014] = { - [anon_sym_esac] = ACTIONS(5626), - [anon_sym_PIPE] = ACTIONS(5626), - [anon_sym_RPAREN] = ACTIONS(5626), - [anon_sym_SEMI_SEMI] = ACTIONS(5626), - [anon_sym_PIPE_AMP] = ACTIONS(5626), - [anon_sym_AMP_AMP] = ACTIONS(5626), - [anon_sym_PIPE_PIPE] = ACTIONS(5626), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5626), - [anon_sym_LF] = ACTIONS(5626), - [anon_sym_AMP] = ACTIONS(5626), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(5605), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [2015] = { - [anon_sym_esac] = ACTIONS(5628), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5607), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, [2016] = { - [anon_sym_esac] = ACTIONS(5630), - [anon_sym_PIPE] = ACTIONS(5630), - [anon_sym_RPAREN] = ACTIONS(5630), - [anon_sym_SEMI_SEMI] = ACTIONS(5630), - [anon_sym_PIPE_AMP] = ACTIONS(5630), - [anon_sym_AMP_AMP] = ACTIONS(5630), - [anon_sym_PIPE_PIPE] = ACTIONS(5630), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5630), - [anon_sym_LF] = ACTIONS(5630), - [anon_sym_AMP] = ACTIONS(5630), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5607), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [2017] = { - [sym_case_item] = STATE(1332), - [sym_last_case_item] = STATE(2690), - [sym_concatenation] = STATE(1334), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_string_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [aux_sym_case_statement_repeat1] = STATE(2011), - [sym__special_characters] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4352), + [anon_sym_esac] = ACTIONS(5609), + [anon_sym_PIPE] = ACTIONS(5609), + [anon_sym_RPAREN] = ACTIONS(5609), + [anon_sym_SEMI_SEMI] = ACTIONS(5609), + [anon_sym_PIPE_AMP] = ACTIONS(5609), + [anon_sym_AMP_AMP] = ACTIONS(5609), + [anon_sym_PIPE_PIPE] = ACTIONS(5609), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5609), + [anon_sym_LF] = ACTIONS(5609), + [anon_sym_AMP] = ACTIONS(5609), }, [2018] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_in] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - }, - [2019] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_in] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), - }, - [2020] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_in] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), - }, - [2021] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5632), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2022] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5634), + [anon_sym_esac] = ACTIONS(5611), [sym_comment] = ACTIONS(56), }, + [2019] = { + [sym_case_item] = STATE(1338), + [sym_concatenation] = STATE(2695), + [sym_string] = STATE(2694), + [sym_simple_expansion] = STATE(2694), + [sym_string_expansion] = STATE(2694), + [sym_expansion] = STATE(2694), + [sym_command_substitution] = STATE(2694), + [sym_process_substitution] = STATE(2694), + [aux_sym_case_statement_repeat1] = STATE(2019), + [sym__special_characters] = ACTIONS(5613), + [anon_sym_DQUOTE] = ACTIONS(5616), + [anon_sym_DOLLAR] = ACTIONS(5619), + [sym_raw_string] = ACTIONS(5622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5628), + [anon_sym_BQUOTE] = ACTIONS(5631), + [anon_sym_LT_LPAREN] = ACTIONS(5634), + [anon_sym_GT_LPAREN] = ACTIONS(5634), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5637), + }, + [2020] = { + [anon_sym_esac] = ACTIONS(5640), + [anon_sym_PIPE] = ACTIONS(5640), + [anon_sym_RPAREN] = ACTIONS(5640), + [anon_sym_SEMI_SEMI] = ACTIONS(5640), + [anon_sym_PIPE_AMP] = ACTIONS(5640), + [anon_sym_AMP_AMP] = ACTIONS(5640), + [anon_sym_PIPE_PIPE] = ACTIONS(5640), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5640), + [anon_sym_LF] = ACTIONS(5640), + [anon_sym_AMP] = ACTIONS(5640), + }, + [2021] = { + [sym_case_item] = STATE(1338), + [sym_last_case_item] = STATE(2696), + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(1333), + [sym_simple_expansion] = STATE(1333), + [sym_string_expansion] = STATE(1333), + [sym_expansion] = STATE(1333), + [sym_command_substitution] = STATE(1333), + [sym_process_substitution] = STATE(1333), + [aux_sym_case_statement_repeat1] = STATE(2019), + [sym__special_characters] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(2713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4364), + }, + [2022] = { + [anon_sym_esac] = ACTIONS(5642), + [anon_sym_PIPE] = ACTIONS(5642), + [anon_sym_RPAREN] = ACTIONS(5642), + [anon_sym_SEMI_SEMI] = ACTIONS(5642), + [anon_sym_PIPE_AMP] = ACTIONS(5642), + [anon_sym_AMP_AMP] = ACTIONS(5642), + [anon_sym_PIPE_PIPE] = ACTIONS(5642), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5642), + [anon_sym_LF] = ACTIONS(5642), + [anon_sym_AMP] = ACTIONS(5642), + }, [2023] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5636), + [anon_sym_esac] = ACTIONS(5644), [sym_comment] = ACTIONS(56), }, [2024] = { - [anon_sym_RBRACE] = ACTIONS(5636), - [sym_comment] = ACTIONS(56), + [anon_sym_esac] = ACTIONS(5646), + [anon_sym_PIPE] = ACTIONS(5646), + [anon_sym_RPAREN] = ACTIONS(5646), + [anon_sym_SEMI_SEMI] = ACTIONS(5646), + [anon_sym_PIPE_AMP] = ACTIONS(5646), + [anon_sym_AMP_AMP] = ACTIONS(5646), + [anon_sym_PIPE_PIPE] = ACTIONS(5646), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5646), + [anon_sym_LF] = ACTIONS(5646), + [anon_sym_AMP] = ACTIONS(5646), }, [2025] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2695), - [anon_sym_RBRACE] = ACTIONS(5638), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_case_item] = STATE(1338), + [sym_last_case_item] = STATE(2698), + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(1333), + [sym_simple_expansion] = STATE(1333), + [sym_string_expansion] = STATE(1333), + [sym_expansion] = STATE(1333), + [sym_command_substitution] = STATE(1333), + [sym_process_substitution] = STATE(1333), + [aux_sym_case_statement_repeat1] = STATE(2019), + [sym__special_characters] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(2713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4364), }, [2026] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_in] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), + }, + [2027] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_in] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), + }, + [2028] = { [sym__concat] = ACTIONS(4871), [anon_sym_in] = ACTIONS(4873), [anon_sym_SEMI_SEMI] = ACTIONS(4873), @@ -57595,74 +57710,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4873), [anon_sym_AMP] = ACTIONS(4873), }, - [2027] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2697), - [anon_sym_RBRACE] = ACTIONS(5640), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2028] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_in] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), - }, [2029] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2699), - [anon_sym_RBRACE] = ACTIONS(5642), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5648), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2030] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5650), + [sym_comment] = ACTIONS(56), + }, + [2031] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5652), + [sym_comment] = ACTIONS(56), + }, + [2032] = { + [anon_sym_RBRACE] = ACTIONS(5652), + [sym_comment] = ACTIONS(56), + }, + [2033] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2703), + [anon_sym_RBRACE] = ACTIONS(5654), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2034] = { [sym__concat] = ACTIONS(4883), [anon_sym_in] = ACTIONS(4885), [anon_sym_SEMI_SEMI] = ACTIONS(4885), @@ -57671,36 +57793,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4885), [anon_sym_AMP] = ACTIONS(4885), }, - [2031] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5644), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2035] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2705), + [anon_sym_RBRACE] = ACTIONS(5656), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2032] = { + [2036] = { [sym__concat] = ACTIONS(4889), [anon_sym_in] = ACTIONS(4891), [anon_sym_SEMI_SEMI] = ACTIONS(4891), @@ -57709,137 +57831,213 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4891), [anon_sym_AMP] = ACTIONS(4891), }, - [2033] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5646), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2034] = { - [anon_sym_esac] = ACTIONS(5648), - [anon_sym_PIPE] = ACTIONS(5648), - [anon_sym_RPAREN] = ACTIONS(5648), - [anon_sym_SEMI_SEMI] = ACTIONS(5648), - [anon_sym_PIPE_AMP] = ACTIONS(5648), - [anon_sym_AMP_AMP] = ACTIONS(5648), - [anon_sym_PIPE_PIPE] = ACTIONS(5648), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(5648), - [anon_sym_LF] = ACTIONS(5648), - [anon_sym_AMP] = ACTIONS(5648), - }, - [2035] = { - [aux_sym_concatenation_repeat1] = STATE(2039), - [sym__concat] = ACTIONS(4400), - [anon_sym_PIPE] = ACTIONS(4032), - [anon_sym_SEMI_SEMI] = ACTIONS(4032), - [anon_sym_PIPE_AMP] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_PIPE_PIPE] = ACTIONS(4032), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym_LF] = ACTIONS(4032), - [anon_sym_AMP] = ACTIONS(4032), - }, - [2036] = { - [aux_sym_concatenation_repeat1] = STATE(2039), - [sym__concat] = ACTIONS(4400), - [anon_sym_PIPE] = ACTIONS(4034), - [anon_sym_SEMI_SEMI] = ACTIONS(4034), - [anon_sym_PIPE_AMP] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_PIPE_PIPE] = ACTIONS(4034), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4034), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4034), - }, [2037] = { - [anon_sym_esac] = ACTIONS(4034), - [anon_sym_PIPE] = ACTIONS(4034), - [anon_sym_RPAREN] = ACTIONS(4034), - [anon_sym_SEMI_SEMI] = ACTIONS(4034), - [anon_sym_PIPE_AMP] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2707), + [anon_sym_RBRACE] = ACTIONS(5658), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4034), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4034), + [sym_word] = ACTIONS(866), }, [2038] = { - [sym_string] = STATE(2702), - [sym_simple_expansion] = STATE(2702), - [sym_string_expansion] = STATE(2702), - [sym_expansion] = STATE(2702), - [sym_command_substitution] = STATE(2702), - [sym_process_substitution] = STATE(2702), - [sym__special_characters] = ACTIONS(5650), - [anon_sym_DQUOTE] = ACTIONS(2768), - [anon_sym_DOLLAR] = ACTIONS(2770), - [sym_raw_string] = ACTIONS(5652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2776), - [anon_sym_BQUOTE] = ACTIONS(2778), - [anon_sym_LT_LPAREN] = ACTIONS(2780), - [anon_sym_GT_LPAREN] = ACTIONS(2780), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5650), + [sym__concat] = ACTIONS(4895), + [anon_sym_in] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), }, [2039] = { - [aux_sym_concatenation_repeat1] = STATE(2703), - [sym__concat] = ACTIONS(4400), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5660), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), + [sym_word] = ACTIONS(866), }, [2040] = { - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), + [sym__concat] = ACTIONS(4901), + [anon_sym_in] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), }, [2041] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5662), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2042] = { + [anon_sym_esac] = ACTIONS(5664), + [anon_sym_PIPE] = ACTIONS(5664), + [anon_sym_RPAREN] = ACTIONS(5664), + [anon_sym_SEMI_SEMI] = ACTIONS(5664), + [anon_sym_PIPE_AMP] = ACTIONS(5664), + [anon_sym_AMP_AMP] = ACTIONS(5664), + [anon_sym_PIPE_PIPE] = ACTIONS(5664), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(5664), + [anon_sym_LF] = ACTIONS(5664), + [anon_sym_AMP] = ACTIONS(5664), + }, + [2043] = { + [aux_sym_concatenation_repeat1] = STATE(2047), + [sym__concat] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [anon_sym_PIPE_AMP] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4044), + }, + [2044] = { + [aux_sym_concatenation_repeat1] = STATE(2047), + [sym__concat] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(4046), + [anon_sym_SEMI_SEMI] = ACTIONS(4046), + [anon_sym_PIPE_AMP] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_LF] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4046), + }, + [2045] = { + [anon_sym_esac] = ACTIONS(4046), + [anon_sym_PIPE] = ACTIONS(4046), + [anon_sym_RPAREN] = ACTIONS(4046), + [anon_sym_SEMI_SEMI] = ACTIONS(4046), + [anon_sym_PIPE_AMP] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_LF] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4046), + }, + [2046] = { + [sym_string] = STATE(2710), + [sym_simple_expansion] = STATE(2710), + [sym_string_expansion] = STATE(2710), + [sym_expansion] = STATE(2710), + [sym_command_substitution] = STATE(2710), + [sym_process_substitution] = STATE(2710), + [sym__special_characters] = ACTIONS(5666), + [anon_sym_DQUOTE] = ACTIONS(2778), + [anon_sym_DOLLAR] = ACTIONS(2780), + [sym_raw_string] = ACTIONS(5668), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2786), + [anon_sym_BQUOTE] = ACTIONS(2788), + [anon_sym_LT_LPAREN] = ACTIONS(2790), + [anon_sym_GT_LPAREN] = ACTIONS(2790), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5666), + }, + [2047] = { + [aux_sym_concatenation_repeat1] = STATE(2711), + [sym__concat] = ACTIONS(4412), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), + }, + [2048] = { + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + }, + [2049] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(5654), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(5670), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -57847,235 +58045,166 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [2042] = { - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), - }, - [2043] = { - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = 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(182), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), - }, - [2044] = { - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - }, - [2045] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(5656), - [sym_comment] = ACTIONS(56), - }, - [2046] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2708), - [anon_sym_RBRACE] = ACTIONS(5658), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5660), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2047] = { - [sym_subscript] = STATE(2712), - [sym_variable_name] = ACTIONS(5662), - [anon_sym_DOLLAR] = ACTIONS(5664), - [anon_sym_DASH] = ACTIONS(5664), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5666), - [anon_sym_STAR] = ACTIONS(5664), - [anon_sym_AT] = ACTIONS(5664), - [anon_sym_QMARK] = ACTIONS(5664), - [anon_sym_0] = ACTIONS(5668), - [anon_sym__] = ACTIONS(5668), - }, - [2048] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2715), - [anon_sym_RBRACE] = ACTIONS(5670), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5672), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2049] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2718), - [anon_sym_RBRACE] = ACTIONS(5674), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5676), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [2050] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5678), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), }, [2051] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5678), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), }, [2052] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(5678), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), }, [2053] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(5678), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(5672), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [2054] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5680), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2716), + [anon_sym_RBRACE] = ACTIONS(5674), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5676), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2055] = { + [sym_subscript] = STATE(2720), + [sym_variable_name] = ACTIONS(5678), + [anon_sym_DOLLAR] = ACTIONS(5680), + [anon_sym_DASH] = ACTIONS(5680), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5682), + [anon_sym_STAR] = ACTIONS(5680), + [anon_sym_AT] = ACTIONS(5680), + [anon_sym_QMARK] = ACTIONS(5680), + [anon_sym_0] = ACTIONS(5684), + [anon_sym__] = ACTIONS(5684), + }, + [2056] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2723), + [anon_sym_RBRACE] = ACTIONS(5686), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5688), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2057] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2726), + [anon_sym_RBRACE] = ACTIONS(5690), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5692), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2058] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5694), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [2059] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(5680), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5694), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -58095,539 +58224,608 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [2056] = { - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [2057] = { - [aux_sym_concatenation_repeat1] = STATE(2057), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(5682), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [2058] = { - [sym_file_descriptor] = ACTIONS(1923), - [sym__concat] = ACTIONS(1923), - [sym_variable_name] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1925), - [anon_sym_GT_GT] = ACTIONS(1925), - [anon_sym_AMP_GT] = ACTIONS(1925), - [anon_sym_AMP_GT_GT] = ACTIONS(1925), - [anon_sym_LT_AMP] = ACTIONS(1925), - [anon_sym_GT_AMP] = ACTIONS(1925), - [sym__special_characters] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [sym_raw_string] = ACTIONS(1925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), - [anon_sym_BQUOTE] = ACTIONS(1925), - [anon_sym_LT_LPAREN] = ACTIONS(1925), - [anon_sym_GT_LPAREN] = ACTIONS(1925), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - }, - [2059] = { - [sym_concatenation] = STATE(2724), - [sym_string] = STATE(2723), - [sym_simple_expansion] = STATE(2723), - [sym_string_expansion] = STATE(2723), - [sym_expansion] = STATE(2723), - [sym_command_substitution] = STATE(2723), - [sym_process_substitution] = STATE(2723), - [anon_sym_RBRACE] = ACTIONS(5685), - [sym__special_characters] = ACTIONS(5687), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(5689), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5691), - }, [2060] = { - [sym_file_descriptor] = ACTIONS(1968), - [sym__concat] = ACTIONS(1968), - [sym_variable_name] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_RPAREN] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_AMP_GT] = ACTIONS(1970), - [anon_sym_AMP_GT_GT] = ACTIONS(1970), - [anon_sym_LT_AMP] = ACTIONS(1970), - [anon_sym_GT_AMP] = ACTIONS(1970), - [sym__special_characters] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [sym_raw_string] = ACTIONS(1970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(5694), + [sym_comment] = ACTIONS(56), }, [2061] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5693), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(5694), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [2062] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5695), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2063] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(5697), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5696), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, + [2063] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(5696), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, [2064] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2730), - [anon_sym_RBRACE] = ACTIONS(5699), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5701), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [2065] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2733), - [anon_sym_RBRACE] = ACTIONS(5703), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5705), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [aux_sym_concatenation_repeat1] = STATE(2065), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(5698), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [2066] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2735), - [anon_sym_RBRACE] = ACTIONS(5685), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5707), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [sym_variable_name] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1929), + [anon_sym_AMP_GT] = ACTIONS(1929), + [anon_sym_AMP_GT_GT] = ACTIONS(1929), + [anon_sym_LT_AMP] = ACTIONS(1929), + [anon_sym_GT_AMP] = ACTIONS(1929), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), + [anon_sym_BQUOTE] = ACTIONS(1929), + [anon_sym_LT_LPAREN] = ACTIONS(1929), + [anon_sym_GT_LPAREN] = ACTIONS(1929), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), }, [2067] = { - [sym_file_descriptor] = ACTIONS(2022), - [sym__concat] = ACTIONS(2022), - [sym_variable_name] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym_AMP_GT] = ACTIONS(2024), - [anon_sym_AMP_GT_GT] = ACTIONS(2024), - [anon_sym_LT_AMP] = ACTIONS(2024), - [anon_sym_GT_AMP] = ACTIONS(2024), - [sym__special_characters] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_DOLLAR] = ACTIONS(2024), - [sym_raw_string] = ACTIONS(2024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2024), - [anon_sym_LT_LPAREN] = ACTIONS(2024), - [anon_sym_GT_LPAREN] = ACTIONS(2024), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), + [sym_concatenation] = STATE(2732), + [sym_string] = STATE(2731), + [sym_simple_expansion] = STATE(2731), + [sym_string_expansion] = STATE(2731), + [sym_expansion] = STATE(2731), + [sym_command_substitution] = STATE(2731), + [sym_process_substitution] = STATE(2731), + [anon_sym_RBRACE] = ACTIONS(5701), + [sym__special_characters] = ACTIONS(5703), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(5705), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5707), }, [2068] = { + [sym_file_descriptor] = ACTIONS(1972), + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_RPAREN] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_GT] = ACTIONS(1974), + [anon_sym_GT_GT] = ACTIONS(1974), + [anon_sym_AMP_GT] = ACTIONS(1974), + [anon_sym_AMP_GT_GT] = ACTIONS(1974), + [anon_sym_LT_AMP] = ACTIONS(1974), + [anon_sym_GT_AMP] = ACTIONS(1974), + [sym__special_characters] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1974), + [sym_raw_string] = ACTIONS(1974), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [anon_sym_BQUOTE] = ACTIONS(1974), + [anon_sym_LT_LPAREN] = ACTIONS(1974), + [anon_sym_GT_LPAREN] = ACTIONS(1974), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + }, + [2069] = { [sym_comment] = ACTIONS(182), [sym_regex_without_right_brace] = ACTIONS(5709), }, - [2069] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5711), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [2070] = { - [sym_file_descriptor] = ACTIONS(2030), - [sym__concat] = ACTIONS(2030), - [sym_variable_name] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_RPAREN] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2032), - [anon_sym_GT] = ACTIONS(2032), - [anon_sym_GT_GT] = ACTIONS(2032), - [anon_sym_AMP_GT] = ACTIONS(2032), - [anon_sym_AMP_GT_GT] = ACTIONS(2032), - [anon_sym_LT_AMP] = ACTIONS(2032), - [anon_sym_GT_AMP] = ACTIONS(2032), - [sym__special_characters] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2032), - [sym_raw_string] = ACTIONS(2032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), - [anon_sym_BQUOTE] = ACTIONS(2032), - [anon_sym_LT_LPAREN] = ACTIONS(2032), - [anon_sym_GT_LPAREN] = ACTIONS(2032), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5711), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), + [sym_word] = ACTIONS(866), }, [2071] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5713), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(5713), + [sym_comment] = ACTIONS(56), }, [2072] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5685), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2738), + [anon_sym_RBRACE] = ACTIONS(5715), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5717), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2073] = { - [sym_file_descriptor] = ACTIONS(2190), - [sym__concat] = ACTIONS(2190), - [sym_variable_name] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_RPAREN] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_AMP_GT] = ACTIONS(2192), - [anon_sym_AMP_GT_GT] = ACTIONS(2192), - [anon_sym_LT_AMP] = ACTIONS(2192), - [anon_sym_GT_AMP] = ACTIONS(2192), - [sym__special_characters] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [sym_raw_string] = ACTIONS(2192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), - [anon_sym_BQUOTE] = ACTIONS(2192), - [anon_sym_LT_LPAREN] = ACTIONS(2192), - [anon_sym_GT_LPAREN] = ACTIONS(2192), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2741), + [anon_sym_RBRACE] = ACTIONS(5719), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5721), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), + [sym_word] = ACTIONS(866), }, [2074] = { - [sym_file_descriptor] = ACTIONS(2396), - [sym__concat] = ACTIONS(2396), - [sym_variable_name] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_RPAREN] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_GT] = ACTIONS(2398), - [anon_sym_GT_GT] = ACTIONS(2398), - [anon_sym_AMP_GT] = ACTIONS(2398), - [anon_sym_AMP_GT_GT] = ACTIONS(2398), - [anon_sym_LT_AMP] = ACTIONS(2398), - [anon_sym_GT_AMP] = ACTIONS(2398), - [sym__special_characters] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), - [anon_sym_BQUOTE] = ACTIONS(2398), - [anon_sym_LT_LPAREN] = ACTIONS(2398), - [anon_sym_GT_LPAREN] = ACTIONS(2398), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2743), + [anon_sym_RBRACE] = ACTIONS(5701), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5723), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), + [sym_word] = ACTIONS(866), }, [2075] = { - [sym_file_redirect] = STATE(2034), - [sym_file_descriptor] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(4388), - [anon_sym_RPAREN] = ACTIONS(4388), - [anon_sym_SEMI_SEMI] = ACTIONS(4388), - [anon_sym_PIPE_AMP] = ACTIONS(4388), - [anon_sym_AMP_AMP] = ACTIONS(4388), - [anon_sym_PIPE_PIPE] = ACTIONS(4388), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_GT] = ACTIONS(2812), - [anon_sym_AMP_GT_GT] = ACTIONS(2812), - [anon_sym_LT_AMP] = ACTIONS(2812), - [anon_sym_GT_AMP] = ACTIONS(2812), + [sym_file_descriptor] = ACTIONS(2026), + [sym__concat] = ACTIONS(2026), + [sym_variable_name] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_GT_GT] = ACTIONS(2028), + [anon_sym_AMP_GT] = ACTIONS(2028), + [anon_sym_AMP_GT_GT] = ACTIONS(2028), + [anon_sym_LT_AMP] = ACTIONS(2028), + [anon_sym_GT_AMP] = ACTIONS(2028), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym_raw_string] = ACTIONS(2028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(2028), + [anon_sym_LT_LPAREN] = ACTIONS(2028), + [anon_sym_GT_LPAREN] = ACTIONS(2028), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4388), - [anon_sym_LF] = ACTIONS(4388), - [anon_sym_AMP] = ACTIONS(4388), + [sym_word] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), }, [2076] = { - [sym_concatenation] = STATE(2037), - [sym_string] = STATE(2740), - [sym_simple_expansion] = STATE(2740), - [sym_string_expansion] = STATE(2740), - [sym_expansion] = STATE(2740), - [sym_command_substitution] = STATE(2740), - [sym_process_substitution] = STATE(2740), - [sym__special_characters] = ACTIONS(5715), - [anon_sym_DQUOTE] = ACTIONS(4460), - [anon_sym_DOLLAR] = ACTIONS(4462), - [sym_raw_string] = ACTIONS(5717), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4468), - [anon_sym_BQUOTE] = ACTIONS(4470), - [anon_sym_LT_LPAREN] = ACTIONS(4472), - [anon_sym_GT_LPAREN] = ACTIONS(4472), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5719), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5725), }, [2077] = { - [aux_sym_concatenation_repeat1] = STATE(2742), - [sym__concat] = ACTIONS(5721), - [anon_sym_PIPE] = ACTIONS(2412), - [anon_sym_RPAREN] = ACTIONS(2412), - [anon_sym_SEMI_SEMI] = ACTIONS(2412), - [anon_sym_PIPE_AMP] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5727), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_LF] = ACTIONS(2412), - [anon_sym_AMP] = ACTIONS(2412), + [sym_word] = ACTIONS(866), }, [2078] = { + [sym_file_descriptor] = ACTIONS(2034), + [sym__concat] = ACTIONS(2034), + [sym_variable_name] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_GT] = ACTIONS(2036), + [anon_sym_GT_GT] = ACTIONS(2036), + [anon_sym_AMP_GT] = ACTIONS(2036), + [anon_sym_AMP_GT_GT] = ACTIONS(2036), + [anon_sym_LT_AMP] = ACTIONS(2036), + [anon_sym_GT_AMP] = ACTIONS(2036), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [anon_sym_LT_LPAREN] = ACTIONS(2036), + [anon_sym_GT_LPAREN] = ACTIONS(2036), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + }, + [2079] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5729), + }, + [2080] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5701), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2081] = { + [sym_file_descriptor] = ACTIONS(2196), + [sym__concat] = ACTIONS(2196), + [sym_variable_name] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_GT] = ACTIONS(2198), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_AMP_GT] = ACTIONS(2198), + [anon_sym_AMP_GT_GT] = ACTIONS(2198), + [anon_sym_LT_AMP] = ACTIONS(2198), + [anon_sym_GT_AMP] = ACTIONS(2198), + [sym__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + }, + [2082] = { + [sym_file_descriptor] = ACTIONS(2402), + [sym__concat] = ACTIONS(2402), + [sym_variable_name] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_RPAREN] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_AMP_GT] = ACTIONS(2404), + [anon_sym_AMP_GT_GT] = ACTIONS(2404), + [anon_sym_LT_AMP] = ACTIONS(2404), + [anon_sym_GT_AMP] = ACTIONS(2404), + [sym__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(2404), + [sym_raw_string] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2404), + [anon_sym_LT_LPAREN] = ACTIONS(2404), + [anon_sym_GT_LPAREN] = ACTIONS(2404), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + }, + [2083] = { + [sym_file_redirect] = STATE(2042), + [sym_file_descriptor] = ACTIONS(2820), + [anon_sym_PIPE] = ACTIONS(4400), + [anon_sym_RPAREN] = ACTIONS(4400), + [anon_sym_SEMI_SEMI] = ACTIONS(4400), + [anon_sym_PIPE_AMP] = ACTIONS(4400), + [anon_sym_AMP_AMP] = ACTIONS(4400), + [anon_sym_PIPE_PIPE] = ACTIONS(4400), + [anon_sym_LT] = ACTIONS(2822), + [anon_sym_GT] = ACTIONS(2822), + [anon_sym_GT_GT] = ACTIONS(2822), + [anon_sym_AMP_GT] = ACTIONS(2822), + [anon_sym_AMP_GT_GT] = ACTIONS(2822), + [anon_sym_LT_AMP] = ACTIONS(2822), + [anon_sym_GT_AMP] = ACTIONS(2822), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4400), + [anon_sym_LF] = ACTIONS(4400), + [anon_sym_AMP] = ACTIONS(4400), + }, + [2084] = { + [sym_concatenation] = STATE(2045), + [sym_string] = STATE(2748), + [sym_simple_expansion] = STATE(2748), + [sym_string_expansion] = STATE(2748), + [sym_expansion] = STATE(2748), + [sym_command_substitution] = STATE(2748), + [sym_process_substitution] = STATE(2748), + [sym__special_characters] = ACTIONS(5731), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(5733), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5735), + }, + [2085] = { + [aux_sym_concatenation_repeat1] = STATE(2750), + [sym__concat] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_RPAREN] = ACTIONS(2418), + [anon_sym_SEMI_SEMI] = ACTIONS(2418), + [anon_sym_PIPE_AMP] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LF] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + }, + [2086] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(2744), - [anon_sym_DQUOTE] = ACTIONS(5723), + [aux_sym_string_repeat1] = STATE(2752), + [anon_sym_DQUOTE] = ACTIONS(5739), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -58635,64 +58833,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [2079] = { - [sym_string] = STATE(2746), - [anon_sym_DQUOTE] = ACTIONS(4460), - [anon_sym_DOLLAR] = ACTIONS(5725), - [sym_raw_string] = ACTIONS(5727), - [anon_sym_POUND] = ACTIONS(5725), - [anon_sym_DASH] = ACTIONS(5725), + [2087] = { + [sym_string] = STATE(2754), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(5741), + [sym_raw_string] = ACTIONS(5743), + [anon_sym_POUND] = ACTIONS(5741), + [anon_sym_DASH] = ACTIONS(5741), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5729), - [anon_sym_STAR] = ACTIONS(5725), - [anon_sym_AT] = ACTIONS(5725), - [anon_sym_QMARK] = ACTIONS(5725), - [anon_sym_0] = ACTIONS(5731), - [anon_sym__] = ACTIONS(5731), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5745), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_AT] = ACTIONS(5741), + [anon_sym_QMARK] = ACTIONS(5741), + [anon_sym_0] = ACTIONS(5747), + [anon_sym__] = ACTIONS(5747), }, - [2080] = { - [aux_sym_concatenation_repeat1] = STATE(2742), - [sym__concat] = ACTIONS(5721), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_RPAREN] = ACTIONS(2424), - [anon_sym_SEMI_SEMI] = ACTIONS(2424), - [anon_sym_PIPE_AMP] = ACTIONS(2424), - [anon_sym_AMP_AMP] = ACTIONS(2424), - [anon_sym_PIPE_PIPE] = ACTIONS(2424), + [2088] = { + [aux_sym_concatenation_repeat1] = STATE(2750), + [sym__concat] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(2430), + [anon_sym_RPAREN] = ACTIONS(2430), + [anon_sym_SEMI_SEMI] = ACTIONS(2430), + [anon_sym_PIPE_AMP] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_PIPE_PIPE] = ACTIONS(2430), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_LF] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_LF] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), }, - [2081] = { - [sym_subscript] = STATE(2752), - [sym_variable_name] = ACTIONS(5733), - [anon_sym_DOLLAR] = ACTIONS(5735), - [anon_sym_POUND] = ACTIONS(5737), - [anon_sym_DASH] = ACTIONS(5735), + [2089] = { + [sym_subscript] = STATE(2760), + [sym_variable_name] = ACTIONS(5749), + [anon_sym_DOLLAR] = ACTIONS(5751), + [anon_sym_POUND] = ACTIONS(5753), + [anon_sym_DASH] = ACTIONS(5751), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5739), - [anon_sym_STAR] = ACTIONS(5735), - [anon_sym_AT] = ACTIONS(5735), - [anon_sym_QMARK] = ACTIONS(5735), - [anon_sym_0] = ACTIONS(5741), - [anon_sym__] = ACTIONS(5741), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5755), + [anon_sym_STAR] = ACTIONS(5751), + [anon_sym_AT] = ACTIONS(5751), + [anon_sym_QMARK] = ACTIONS(5751), + [anon_sym_0] = ACTIONS(5757), + [anon_sym__] = ACTIONS(5757), }, - [2082] = { - [sym_for_statement] = STATE(2753), - [sym_while_statement] = STATE(2753), - [sym_if_statement] = STATE(2753), - [sym_case_statement] = STATE(2753), - [sym_function_definition] = STATE(2753), - [sym_subshell] = STATE(2753), - [sym_pipeline] = STATE(2753), - [sym_list] = STATE(2753), - [sym_command] = STATE(2753), + [2090] = { + [sym_for_statement] = STATE(2761), + [sym_while_statement] = STATE(2761), + [sym_if_statement] = STATE(2761), + [sym_case_statement] = STATE(2761), + [sym_function_definition] = STATE(2761), + [sym_subshell] = STATE(2761), + [sym_pipeline] = STATE(2761), + [sym_list] = STATE(2761), + [sym_command] = STATE(2761), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(2753), - [sym_variable_assignment] = STATE(2754), - [sym_declaration_command] = STATE(2753), - [sym_unset_command] = STATE(2753), + [sym_bracket_command] = STATE(2761), + [sym_variable_assignment] = STATE(2762), + [sym_declaration_command] = STATE(2761), + [sym_unset_command] = STATE(2761), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -58739,21 +58937,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [2083] = { - [sym_for_statement] = STATE(2755), - [sym_while_statement] = STATE(2755), - [sym_if_statement] = STATE(2755), - [sym_case_statement] = STATE(2755), - [sym_function_definition] = STATE(2755), - [sym_subshell] = STATE(2755), - [sym_pipeline] = STATE(2755), - [sym_list] = STATE(2755), - [sym_command] = STATE(2755), + [2091] = { + [sym_for_statement] = STATE(2763), + [sym_while_statement] = STATE(2763), + [sym_if_statement] = STATE(2763), + [sym_case_statement] = STATE(2763), + [sym_function_definition] = STATE(2763), + [sym_subshell] = STATE(2763), + [sym_pipeline] = STATE(2763), + [sym_list] = STATE(2763), + [sym_command] = STATE(2763), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(2755), - [sym_variable_assignment] = STATE(2756), - [sym_declaration_command] = STATE(2755), - [sym_unset_command] = STATE(2755), + [sym_bracket_command] = STATE(2763), + [sym_variable_assignment] = STATE(2764), + [sym_declaration_command] = STATE(2763), + [sym_unset_command] = STATE(2763), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -58800,21 +58998,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [2084] = { - [sym_for_statement] = STATE(2757), - [sym_while_statement] = STATE(2757), - [sym_if_statement] = STATE(2757), - [sym_case_statement] = STATE(2757), - [sym_function_definition] = STATE(2757), - [sym_subshell] = STATE(2757), - [sym_pipeline] = STATE(2757), - [sym_list] = STATE(2757), - [sym_command] = STATE(2757), + [2092] = { + [sym_for_statement] = STATE(2765), + [sym_while_statement] = STATE(2765), + [sym_if_statement] = STATE(2765), + [sym_case_statement] = STATE(2765), + [sym_function_definition] = STATE(2765), + [sym_subshell] = STATE(2765), + [sym_pipeline] = STATE(2765), + [sym_list] = STATE(2765), + [sym_command] = STATE(2765), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(2757), - [sym_variable_assignment] = STATE(2758), - [sym_declaration_command] = STATE(2757), - [sym_unset_command] = STATE(2757), + [sym_bracket_command] = STATE(2765), + [sym_variable_assignment] = STATE(2766), + [sym_declaration_command] = STATE(2765), + [sym_unset_command] = STATE(2765), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -58861,880 +59059,770 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [2085] = { - [sym__concat] = ACTIONS(3283), - [sym_variable_name] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_RPAREN] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [sym__special_characters] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_DOLLAR] = ACTIONS(3285), - [sym_raw_string] = ACTIONS(3285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), - [anon_sym_BQUOTE] = ACTIONS(3285), - [anon_sym_LT_LPAREN] = ACTIONS(3285), - [anon_sym_GT_LPAREN] = ACTIONS(3285), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3285), - [sym_word] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - }, - [2086] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5743), - [sym_comment] = ACTIONS(56), - }, - [2087] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5745), - [sym_comment] = ACTIONS(56), - }, - [2088] = { - [anon_sym_RBRACE] = ACTIONS(5745), - [sym_comment] = ACTIONS(56), - }, - [2089] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2762), - [anon_sym_RBRACE] = ACTIONS(5747), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2090] = { - [sym__concat] = ACTIONS(3347), - [sym_variable_name] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [sym__special_characters] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3349), - [sym_raw_string] = ACTIONS(3349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), - [anon_sym_BQUOTE] = ACTIONS(3349), - [anon_sym_LT_LPAREN] = ACTIONS(3349), - [anon_sym_GT_LPAREN] = ACTIONS(3349), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3349), - [sym_word] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - }, - [2091] = { - [sym_concatenation] = STATE(2765), - [sym_string] = STATE(2764), - [sym_simple_expansion] = STATE(2764), - [sym_string_expansion] = STATE(2764), - [sym_expansion] = STATE(2764), - [sym_command_substitution] = STATE(2764), - [sym_process_substitution] = STATE(2764), - [anon_sym_RBRACE] = ACTIONS(5745), - [sym__special_characters] = ACTIONS(5749), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(5751), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5753), - }, - [2092] = { - [sym__concat] = ACTIONS(3392), - [sym_variable_name] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [sym__special_characters] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_DOLLAR] = ACTIONS(3394), - [sym_raw_string] = ACTIONS(3394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), - [anon_sym_BQUOTE] = ACTIONS(3394), - [anon_sym_LT_LPAREN] = ACTIONS(3394), - [anon_sym_GT_LPAREN] = ACTIONS(3394), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3394), - [sym_word] = ACTIONS(3394), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), - }, [2093] = { + [sym__concat] = ACTIONS(3293), + [sym_variable_name] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_RPAREN] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), + [anon_sym_BQUOTE] = ACTIONS(3295), + [anon_sym_LT_LPAREN] = ACTIONS(3295), + [anon_sym_GT_LPAREN] = ACTIONS(3295), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5755), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3295), + [sym_word] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), }, [2094] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5757), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5759), + [sym_comment] = ACTIONS(56), }, [2095] = { - [sym__concat] = ACTIONS(3400), - [sym_variable_name] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_RPAREN] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(3402), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3402), - [sym_word] = ACTIONS(3402), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5761), + [sym_comment] = ACTIONS(56), }, [2096] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5759), + [anon_sym_RBRACE] = ACTIONS(5761), + [sym_comment] = ACTIONS(56), }, [2097] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5761), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2770), + [anon_sym_RBRACE] = ACTIONS(5763), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2098] = { + [sym__concat] = ACTIONS(3357), + [sym_variable_name] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5763), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3359), + [sym_word] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), }, [2099] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5745), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(2773), + [sym_string] = STATE(2772), + [sym_simple_expansion] = STATE(2772), + [sym_string_expansion] = STATE(2772), + [sym_expansion] = STATE(2772), + [sym_command_substitution] = STATE(2772), + [sym_process_substitution] = STATE(2772), + [anon_sym_RBRACE] = ACTIONS(5761), + [sym__special_characters] = ACTIONS(5765), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(5767), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5769), }, [2100] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2772), - [anon_sym_RBRACE] = ACTIONS(5765), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3402), + [sym_variable_name] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_RPAREN] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [sym__special_characters] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_DOLLAR] = ACTIONS(3404), + [sym_raw_string] = ACTIONS(3404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), + [anon_sym_BQUOTE] = ACTIONS(3404), + [anon_sym_LT_LPAREN] = ACTIONS(3404), + [anon_sym_GT_LPAREN] = ACTIONS(3404), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3404), + [sym_word] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), }, [2101] = { - [sym__concat] = ACTIONS(3412), - [sym_variable_name] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_DOLLAR] = ACTIONS(3414), - [sym_raw_string] = ACTIONS(3414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), - [anon_sym_BQUOTE] = ACTIONS(3414), - [anon_sym_LT_LPAREN] = ACTIONS(3414), - [anon_sym_GT_LPAREN] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3414), - [sym_word] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), + [sym_regex_without_right_brace] = ACTIONS(5771), }, [2102] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2774), - [anon_sym_RBRACE] = ACTIONS(5767), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5773), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2103] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_RPAREN] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [sym__special_characters] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_DOLLAR] = ACTIONS(3285), - [sym_raw_string] = ACTIONS(3285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), - [anon_sym_BQUOTE] = ACTIONS(3285), - [anon_sym_LT_LPAREN] = ACTIONS(3285), - [anon_sym_GT_LPAREN] = ACTIONS(3285), + [sym__concat] = ACTIONS(3410), + [sym_variable_name] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(3412), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3285), - [sym_word] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3412), + [sym_word] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), }, [2104] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5769), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5775), }, [2105] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5771), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5777), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2106] = { - [anon_sym_RBRACE] = ACTIONS(5771), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5779), }, [2107] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2778), - [anon_sym_RBRACE] = ACTIONS(5773), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5761), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2108] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [sym__special_characters] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3349), - [sym_raw_string] = ACTIONS(3349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), - [anon_sym_BQUOTE] = ACTIONS(3349), - [anon_sym_LT_LPAREN] = ACTIONS(3349), - [anon_sym_GT_LPAREN] = ACTIONS(3349), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2780), + [anon_sym_RBRACE] = ACTIONS(5781), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3349), - [sym_word] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), + [sym_word] = ACTIONS(866), }, [2109] = { - [sym_concatenation] = STATE(2781), - [sym_string] = STATE(2780), - [sym_simple_expansion] = STATE(2780), - [sym_string_expansion] = STATE(2780), - [sym_expansion] = STATE(2780), - [sym_command_substitution] = STATE(2780), - [sym_process_substitution] = STATE(2780), - [anon_sym_RBRACE] = ACTIONS(5771), - [sym__special_characters] = ACTIONS(5775), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(5777), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5779), + [sym__concat] = ACTIONS(3422), + [sym_variable_name] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(3424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), + [anon_sym_BQUOTE] = ACTIONS(3424), + [anon_sym_LT_LPAREN] = ACTIONS(3424), + [anon_sym_GT_LPAREN] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3424), + [sym_word] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), }, [2110] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [sym__special_characters] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_DOLLAR] = ACTIONS(3394), - [sym_raw_string] = ACTIONS(3394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), - [anon_sym_BQUOTE] = ACTIONS(3394), - [anon_sym_LT_LPAREN] = ACTIONS(3394), - [anon_sym_GT_LPAREN] = ACTIONS(3394), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2782), + [anon_sym_RBRACE] = ACTIONS(5783), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3394), - [sym_word] = ACTIONS(3394), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), + [sym_word] = ACTIONS(866), }, [2111] = { + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_RPAREN] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), + [anon_sym_BQUOTE] = ACTIONS(3295), + [anon_sym_LT_LPAREN] = ACTIONS(3295), + [anon_sym_GT_LPAREN] = ACTIONS(3295), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5781), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3295), + [sym_word] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), }, [2112] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5783), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5785), + [sym_comment] = ACTIONS(56), }, [2113] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_RPAREN] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(3402), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3402), - [sym_word] = ACTIONS(3402), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5787), + [sym_comment] = ACTIONS(56), }, [2114] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5785), + [anon_sym_RBRACE] = ACTIONS(5787), + [sym_comment] = ACTIONS(56), }, [2115] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5787), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2786), + [anon_sym_RBRACE] = ACTIONS(5789), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2116] = { + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5789), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3359), + [sym_word] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), }, [2117] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5771), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(2789), + [sym_string] = STATE(2788), + [sym_simple_expansion] = STATE(2788), + [sym_string_expansion] = STATE(2788), + [sym_expansion] = STATE(2788), + [sym_command_substitution] = STATE(2788), + [sym_process_substitution] = STATE(2788), + [anon_sym_RBRACE] = ACTIONS(5787), + [sym__special_characters] = ACTIONS(5791), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(5793), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5795), }, [2118] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2788), - [anon_sym_RBRACE] = ACTIONS(5791), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_RPAREN] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [sym__special_characters] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_DOLLAR] = ACTIONS(3404), + [sym_raw_string] = ACTIONS(3404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), + [anon_sym_BQUOTE] = ACTIONS(3404), + [anon_sym_LT_LPAREN] = ACTIONS(3404), + [anon_sym_GT_LPAREN] = ACTIONS(3404), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3404), + [sym_word] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), }, [2119] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_DOLLAR] = ACTIONS(3414), - [sym_raw_string] = ACTIONS(3414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), - [anon_sym_BQUOTE] = ACTIONS(3414), - [anon_sym_LT_LPAREN] = ACTIONS(3414), - [anon_sym_GT_LPAREN] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3414), - [sym_word] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), + [sym_regex_without_right_brace] = ACTIONS(5797), }, [2120] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2790), - [anon_sym_RBRACE] = ACTIONS(5793), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5799), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2121] = { - [sym_file_descriptor] = ACTIONS(4790), - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_RPAREN] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_EQ_TILDE] = ACTIONS(4792), - [anon_sym_EQ_EQ] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_AMP_GT] = ACTIONS(4792), - [anon_sym_AMP_GT_GT] = ACTIONS(4792), - [anon_sym_LT_AMP] = ACTIONS(4792), - [anon_sym_GT_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4792), - [anon_sym_LT_LT_DASH] = ACTIONS(4792), - [anon_sym_LT_LT_LT] = ACTIONS(4792), - [sym__special_characters] = ACTIONS(4792), - [anon_sym_DQUOTE] = ACTIONS(4792), - [anon_sym_DOLLAR] = ACTIONS(4792), - [sym_raw_string] = ACTIONS(4792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), - [anon_sym_BQUOTE] = ACTIONS(4792), - [anon_sym_LT_LPAREN] = ACTIONS(4792), - [anon_sym_GT_LPAREN] = ACTIONS(4792), + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(3412), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4792), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3412), + [sym_word] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), }, [2122] = { - [sym_file_descriptor] = ACTIONS(4796), - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_RPAREN] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [anon_sym_EQ_TILDE] = ACTIONS(4798), - [anon_sym_EQ_EQ] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4798), - [anon_sym_GT] = ACTIONS(4798), - [anon_sym_GT_GT] = ACTIONS(4798), - [anon_sym_AMP_GT] = ACTIONS(4798), - [anon_sym_AMP_GT_GT] = ACTIONS(4798), - [anon_sym_LT_AMP] = ACTIONS(4798), - [anon_sym_GT_AMP] = ACTIONS(4798), - [anon_sym_LT_LT] = ACTIONS(4798), - [anon_sym_LT_LT_DASH] = ACTIONS(4798), - [anon_sym_LT_LT_LT] = ACTIONS(4798), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4798), - [anon_sym_DOLLAR] = ACTIONS(4798), - [sym_raw_string] = ACTIONS(4798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), - [anon_sym_BQUOTE] = ACTIONS(4798), - [anon_sym_LT_LPAREN] = ACTIONS(4798), - [anon_sym_GT_LPAREN] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4798), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), + [sym_regex_without_right_brace] = ACTIONS(5801), }, [2123] = { - [sym_file_descriptor] = ACTIONS(4859), - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_RPAREN] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_EQ_TILDE] = ACTIONS(4861), - [anon_sym_EQ_EQ] = ACTIONS(4861), - [anon_sym_LT] = ACTIONS(4861), - [anon_sym_GT] = ACTIONS(4861), - [anon_sym_GT_GT] = ACTIONS(4861), - [anon_sym_AMP_GT] = ACTIONS(4861), - [anon_sym_AMP_GT_GT] = ACTIONS(4861), - [anon_sym_LT_AMP] = ACTIONS(4861), - [anon_sym_GT_AMP] = ACTIONS(4861), - [anon_sym_LT_LT] = ACTIONS(4861), - [anon_sym_LT_LT_DASH] = ACTIONS(4861), - [anon_sym_LT_LT_LT] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4861), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5803), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), + [sym_word] = ACTIONS(866), }, [2124] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5795), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(5805), }, [2125] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5797), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5787), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2126] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5799), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2796), + [anon_sym_RBRACE] = ACTIONS(5807), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2127] = { - [anon_sym_RBRACE] = ACTIONS(5799), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(3424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), + [anon_sym_BQUOTE] = ACTIONS(3424), + [anon_sym_LT_LPAREN] = ACTIONS(3424), + [anon_sym_GT_LPAREN] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3424), + [sym_word] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), }, [2128] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2795), - [anon_sym_RBRACE] = ACTIONS(5801), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2798), + [anon_sym_RBRACE] = ACTIONS(5809), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2129] = { + [sym_file_descriptor] = ACTIONS(4802), + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_RPAREN] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_EQ_TILDE] = ACTIONS(4804), + [anon_sym_EQ_EQ] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_GT_GT] = ACTIONS(4804), + [anon_sym_AMP_GT] = ACTIONS(4804), + [anon_sym_AMP_GT_GT] = ACTIONS(4804), + [anon_sym_LT_AMP] = ACTIONS(4804), + [anon_sym_GT_AMP] = ACTIONS(4804), + [anon_sym_LT_LT] = ACTIONS(4804), + [anon_sym_LT_LT_DASH] = ACTIONS(4804), + [anon_sym_LT_LT_LT] = ACTIONS(4804), + [sym__special_characters] = ACTIONS(4804), + [anon_sym_DQUOTE] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4804), + [sym_raw_string] = ACTIONS(4804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), + [anon_sym_BQUOTE] = ACTIONS(4804), + [anon_sym_LT_LPAREN] = ACTIONS(4804), + [anon_sym_GT_LPAREN] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), + }, + [2130] = { + [sym_file_descriptor] = ACTIONS(4808), + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_RPAREN] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [anon_sym_EQ_TILDE] = ACTIONS(4810), + [anon_sym_EQ_EQ] = ACTIONS(4810), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_GT_GT] = ACTIONS(4810), + [anon_sym_AMP_GT] = ACTIONS(4810), + [anon_sym_AMP_GT_GT] = ACTIONS(4810), + [anon_sym_LT_AMP] = ACTIONS(4810), + [anon_sym_GT_AMP] = ACTIONS(4810), + [anon_sym_LT_LT] = ACTIONS(4810), + [anon_sym_LT_LT_DASH] = ACTIONS(4810), + [anon_sym_LT_LT_LT] = ACTIONS(4810), + [sym__special_characters] = ACTIONS(4810), + [anon_sym_DQUOTE] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4810), + [sym_raw_string] = ACTIONS(4810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), + [anon_sym_BQUOTE] = ACTIONS(4810), + [anon_sym_LT_LPAREN] = ACTIONS(4810), + [anon_sym_GT_LPAREN] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), + }, + [2131] = { [sym_file_descriptor] = ACTIONS(4871), [sym__concat] = ACTIONS(4871), [anon_sym_PIPE] = ACTIONS(4873), @@ -59770,101 +59858,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4873), [anon_sym_AMP] = ACTIONS(4873), }, - [2130] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2797), - [anon_sym_RBRACE] = ACTIONS(5803), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2131] = { - [sym_file_descriptor] = ACTIONS(4877), - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_EQ_TILDE] = ACTIONS(4879), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_GT_GT] = ACTIONS(4879), - [anon_sym_AMP_GT] = ACTIONS(4879), - [anon_sym_AMP_GT_GT] = ACTIONS(4879), - [anon_sym_LT_AMP] = ACTIONS(4879), - [anon_sym_GT_AMP] = ACTIONS(4879), - [anon_sym_LT_LT] = ACTIONS(4879), - [anon_sym_LT_LT_DASH] = ACTIONS(4879), - [anon_sym_LT_LT_LT] = ACTIONS(4879), - [sym__special_characters] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4879), - [sym_raw_string] = ACTIONS(4879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), - [anon_sym_BQUOTE] = ACTIONS(4879), - [anon_sym_LT_LPAREN] = ACTIONS(4879), - [anon_sym_GT_LPAREN] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), - }, [2132] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2799), - [anon_sym_RBRACE] = ACTIONS(5805), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5811), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2133] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5813), + [sym_comment] = ACTIONS(56), + }, + [2134] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5815), + [sym_comment] = ACTIONS(56), + }, + [2135] = { + [anon_sym_RBRACE] = ACTIONS(5815), + [sym_comment] = ACTIONS(56), + }, + [2136] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2803), + [anon_sym_RBRACE] = ACTIONS(5817), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2137] = { [sym_file_descriptor] = ACTIONS(4883), [sym__concat] = ACTIONS(4883), [anon_sym_PIPE] = ACTIONS(4885), @@ -59900,36 +59968,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4885), [anon_sym_AMP] = ACTIONS(4885), }, - [2134] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5807), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2138] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2805), + [anon_sym_RBRACE] = ACTIONS(5819), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2135] = { + [2139] = { [sym_file_descriptor] = ACTIONS(4889), [sym__concat] = ACTIONS(4889), [anon_sym_PIPE] = ACTIONS(4891), @@ -59965,576 +60033,615 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4891), [anon_sym_AMP] = ACTIONS(4891), }, - [2136] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5809), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2137] = { - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1888), - [anon_sym_LT_LT_LT] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [2138] = { - [aux_sym_concatenation_repeat1] = STATE(2138), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(5811), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1888), - [anon_sym_LT_LT_LT] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [2139] = { - [sym_file_descriptor] = ACTIONS(1923), - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1925), - [anon_sym_GT_GT] = ACTIONS(1925), - [anon_sym_AMP_GT] = ACTIONS(1925), - [anon_sym_AMP_GT_GT] = ACTIONS(1925), - [anon_sym_LT_AMP] = ACTIONS(1925), - [anon_sym_GT_AMP] = ACTIONS(1925), - [anon_sym_LT_LT] = ACTIONS(1925), - [anon_sym_LT_LT_DASH] = ACTIONS(1925), - [anon_sym_LT_LT_LT] = ACTIONS(1925), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - }, [2140] = { - [sym_concatenation] = STATE(2805), - [sym_string] = STATE(2804), - [sym_simple_expansion] = STATE(2804), - [sym_string_expansion] = STATE(2804), - [sym_expansion] = STATE(2804), - [sym_command_substitution] = STATE(2804), - [sym_process_substitution] = STATE(2804), - [anon_sym_RBRACE] = ACTIONS(5814), - [sym__special_characters] = ACTIONS(5816), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(5818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5820), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2807), + [anon_sym_RBRACE] = ACTIONS(5821), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2141] = { - [sym_file_descriptor] = ACTIONS(1968), - [sym__concat] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_RPAREN] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_AMP_GT] = ACTIONS(1970), - [anon_sym_AMP_GT_GT] = ACTIONS(1970), - [anon_sym_LT_AMP] = ACTIONS(1970), - [anon_sym_GT_AMP] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_LT_LT_DASH] = ACTIONS(1970), - [anon_sym_LT_LT_LT] = ACTIONS(1970), + [sym_file_descriptor] = ACTIONS(4895), + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_RPAREN] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [anon_sym_EQ_TILDE] = ACTIONS(4897), + [anon_sym_EQ_EQ] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_GT_GT] = ACTIONS(4897), + [anon_sym_AMP_GT] = ACTIONS(4897), + [anon_sym_AMP_GT_GT] = ACTIONS(4897), + [anon_sym_LT_AMP] = ACTIONS(4897), + [anon_sym_GT_AMP] = ACTIONS(4897), + [anon_sym_LT_LT] = ACTIONS(4897), + [anon_sym_LT_LT_DASH] = ACTIONS(4897), + [anon_sym_LT_LT_LT] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(4897), + [anon_sym_DQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR] = ACTIONS(4897), + [sym_raw_string] = ACTIONS(4897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), + [anon_sym_BQUOTE] = ACTIONS(4897), + [anon_sym_LT_LPAREN] = ACTIONS(4897), + [anon_sym_GT_LPAREN] = ACTIONS(4897), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), + [sym_word] = ACTIONS(4897), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), }, [2142] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5823), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5822), + [sym_word] = ACTIONS(866), }, [2143] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5824), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(4901), + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_RPAREN] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [anon_sym_EQ_TILDE] = ACTIONS(4903), + [anon_sym_EQ_EQ] = ACTIONS(4903), + [anon_sym_LT] = ACTIONS(4903), + [anon_sym_GT] = ACTIONS(4903), + [anon_sym_GT_GT] = ACTIONS(4903), + [anon_sym_AMP_GT] = ACTIONS(4903), + [anon_sym_AMP_GT_GT] = ACTIONS(4903), + [anon_sym_LT_AMP] = ACTIONS(4903), + [anon_sym_GT_AMP] = ACTIONS(4903), + [anon_sym_LT_LT] = ACTIONS(4903), + [anon_sym_LT_LT_DASH] = ACTIONS(4903), + [anon_sym_LT_LT_LT] = ACTIONS(4903), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4903), + [sym_raw_string] = ACTIONS(4903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), + [anon_sym_BQUOTE] = ACTIONS(4903), + [anon_sym_LT_LPAREN] = ACTIONS(4903), + [anon_sym_GT_LPAREN] = ACTIONS(4903), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(4903), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), }, [2144] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(5826), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5825), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2145] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2811), - [anon_sym_RBRACE] = ACTIONS(5828), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5830), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1892), + [anon_sym_LT_LT_LT] = ACTIONS(1892), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [2146] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2814), - [anon_sym_RBRACE] = ACTIONS(5832), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5834), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [aux_sym_concatenation_repeat1] = STATE(2146), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(5827), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1892), + [anon_sym_LT_LT_LT] = ACTIONS(1892), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [2147] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2816), - [anon_sym_RBRACE] = ACTIONS(5814), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5836), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1929), + [anon_sym_AMP_GT] = ACTIONS(1929), + [anon_sym_AMP_GT_GT] = ACTIONS(1929), + [anon_sym_LT_AMP] = ACTIONS(1929), + [anon_sym_GT_AMP] = ACTIONS(1929), + [anon_sym_LT_LT] = ACTIONS(1929), + [anon_sym_LT_LT_DASH] = ACTIONS(1929), + [anon_sym_LT_LT_LT] = ACTIONS(1929), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), }, [2148] = { - [sym_file_descriptor] = ACTIONS(2022), - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym_AMP_GT] = ACTIONS(2024), - [anon_sym_AMP_GT_GT] = ACTIONS(2024), - [anon_sym_LT_AMP] = ACTIONS(2024), - [anon_sym_GT_AMP] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_LT_LT_DASH] = ACTIONS(2024), - [anon_sym_LT_LT_LT] = ACTIONS(2024), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), + [sym_concatenation] = STATE(2813), + [sym_string] = STATE(2812), + [sym_simple_expansion] = STATE(2812), + [sym_string_expansion] = STATE(2812), + [sym_expansion] = STATE(2812), + [sym_command_substitution] = STATE(2812), + [sym_process_substitution] = STATE(2812), + [anon_sym_RBRACE] = ACTIONS(5830), + [sym__special_characters] = ACTIONS(5832), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(5834), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5836), }, [2149] = { + [sym_file_descriptor] = ACTIONS(1972), + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_RPAREN] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_GT] = ACTIONS(1974), + [anon_sym_GT_GT] = ACTIONS(1974), + [anon_sym_AMP_GT] = ACTIONS(1974), + [anon_sym_AMP_GT_GT] = ACTIONS(1974), + [anon_sym_LT_AMP] = ACTIONS(1974), + [anon_sym_GT_AMP] = ACTIONS(1974), + [anon_sym_LT_LT] = ACTIONS(1974), + [anon_sym_LT_LT_DASH] = ACTIONS(1974), + [anon_sym_LT_LT_LT] = ACTIONS(1974), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + }, + [2150] = { [sym_comment] = ACTIONS(182), [sym_regex_without_right_brace] = ACTIONS(5838), }, - [2150] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5840), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [2151] = { - [sym_file_descriptor] = ACTIONS(2030), - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_RPAREN] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2032), - [anon_sym_GT] = ACTIONS(2032), - [anon_sym_GT_GT] = ACTIONS(2032), - [anon_sym_AMP_GT] = ACTIONS(2032), - [anon_sym_AMP_GT_GT] = ACTIONS(2032), - [anon_sym_LT_AMP] = ACTIONS(2032), - [anon_sym_GT_AMP] = ACTIONS(2032), - [anon_sym_LT_LT] = ACTIONS(2032), - [anon_sym_LT_LT_DASH] = ACTIONS(2032), - [anon_sym_LT_LT_LT] = ACTIONS(2032), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5840), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), + [sym_word] = ACTIONS(866), }, [2152] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5842), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(5842), + [sym_comment] = ACTIONS(56), }, [2153] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5814), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2819), + [anon_sym_RBRACE] = ACTIONS(5844), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5846), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2154] = { - [sym_file_descriptor] = ACTIONS(2190), - [sym__concat] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_RPAREN] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_AMP_GT] = ACTIONS(2192), - [anon_sym_AMP_GT_GT] = ACTIONS(2192), - [anon_sym_LT_AMP] = ACTIONS(2192), - [anon_sym_GT_AMP] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_LT_LT_DASH] = ACTIONS(2192), - [anon_sym_LT_LT_LT] = ACTIONS(2192), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2822), + [anon_sym_RBRACE] = ACTIONS(5848), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5850), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), + [sym_word] = ACTIONS(866), }, [2155] = { - [sym_file_descriptor] = ACTIONS(2396), - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_RPAREN] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_GT] = ACTIONS(2398), - [anon_sym_GT_GT] = ACTIONS(2398), - [anon_sym_AMP_GT] = ACTIONS(2398), - [anon_sym_AMP_GT_GT] = ACTIONS(2398), - [anon_sym_LT_AMP] = ACTIONS(2398), - [anon_sym_GT_AMP] = ACTIONS(2398), - [anon_sym_LT_LT] = ACTIONS(2398), - [anon_sym_LT_LT_DASH] = ACTIONS(2398), - [anon_sym_LT_LT_LT] = ACTIONS(2398), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2824), + [anon_sym_RBRACE] = ACTIONS(5830), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(5852), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), + [sym_word] = ACTIONS(866), }, [2156] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_EQ_TILDE] = ACTIONS(5844), - [anon_sym_EQ_EQ] = ACTIONS(5844), - [anon_sym_RBRACK] = ACTIONS(4790), - [sym__special_characters] = ACTIONS(4792), - [anon_sym_DQUOTE] = ACTIONS(4790), - [anon_sym_DOLLAR] = ACTIONS(5844), - [sym_raw_string] = ACTIONS(4790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4790), - [anon_sym_LT_LPAREN] = ACTIONS(4790), - [anon_sym_GT_LPAREN] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4792), + [sym_file_descriptor] = ACTIONS(2026), + [sym__concat] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_GT_GT] = ACTIONS(2028), + [anon_sym_AMP_GT] = ACTIONS(2028), + [anon_sym_AMP_GT_GT] = ACTIONS(2028), + [anon_sym_LT_AMP] = ACTIONS(2028), + [anon_sym_GT_AMP] = ACTIONS(2028), + [anon_sym_LT_LT] = ACTIONS(2028), + [anon_sym_LT_LT_DASH] = ACTIONS(2028), + [anon_sym_LT_LT_LT] = ACTIONS(2028), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), }, [2157] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_EQ_TILDE] = ACTIONS(5846), - [anon_sym_EQ_EQ] = ACTIONS(5846), - [anon_sym_RBRACK] = ACTIONS(4796), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4796), - [anon_sym_DOLLAR] = ACTIONS(5846), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), - [anon_sym_BQUOTE] = ACTIONS(4796), - [anon_sym_LT_LPAREN] = ACTIONS(4796), - [anon_sym_GT_LPAREN] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4798), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5854), }, [2158] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_EQ_TILDE] = ACTIONS(5848), - [anon_sym_EQ_EQ] = ACTIONS(5848), - [anon_sym_RBRACK] = ACTIONS(4859), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4859), - [anon_sym_DOLLAR] = ACTIONS(5848), - [sym_raw_string] = ACTIONS(4859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4859), - [anon_sym_LT_LPAREN] = ACTIONS(4859), - [anon_sym_GT_LPAREN] = ACTIONS(4859), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4861), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5856), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2159] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5850), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(2034), + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_GT] = ACTIONS(2036), + [anon_sym_GT_GT] = ACTIONS(2036), + [anon_sym_AMP_GT] = ACTIONS(2036), + [anon_sym_AMP_GT_GT] = ACTIONS(2036), + [anon_sym_LT_AMP] = ACTIONS(2036), + [anon_sym_GT_AMP] = ACTIONS(2036), + [anon_sym_LT_LT] = ACTIONS(2036), + [anon_sym_LT_LT_DASH] = ACTIONS(2036), + [anon_sym_LT_LT_LT] = ACTIONS(2036), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), }, [2160] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5852), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(5858), }, [2161] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5854), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5830), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2162] = { - [anon_sym_RBRACE] = ACTIONS(5854), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(2196), + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_GT] = ACTIONS(2198), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_AMP_GT] = ACTIONS(2198), + [anon_sym_AMP_GT_GT] = ACTIONS(2198), + [anon_sym_LT_AMP] = ACTIONS(2198), + [anon_sym_GT_AMP] = ACTIONS(2198), + [anon_sym_LT_LT] = ACTIONS(2198), + [anon_sym_LT_LT_DASH] = ACTIONS(2198), + [anon_sym_LT_LT_LT] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), }, [2163] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2824), - [anon_sym_RBRACE] = ACTIONS(5856), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(2402), + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_RPAREN] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_AMP_GT] = ACTIONS(2404), + [anon_sym_AMP_GT_GT] = ACTIONS(2404), + [anon_sym_LT_AMP] = ACTIONS(2404), + [anon_sym_GT_AMP] = ACTIONS(2404), + [anon_sym_LT_LT] = ACTIONS(2404), + [anon_sym_LT_LT_DASH] = ACTIONS(2404), + [anon_sym_LT_LT_LT] = ACTIONS(2404), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), }, [2164] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_EQ_TILDE] = ACTIONS(5860), + [anon_sym_EQ_EQ] = ACTIONS(5860), + [anon_sym_RBRACK] = ACTIONS(4802), + [sym__special_characters] = ACTIONS(4804), + [anon_sym_DQUOTE] = ACTIONS(4802), + [anon_sym_DOLLAR] = ACTIONS(5860), + [sym_raw_string] = ACTIONS(4802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), + [anon_sym_BQUOTE] = ACTIONS(4802), + [anon_sym_LT_LPAREN] = ACTIONS(4802), + [anon_sym_GT_LPAREN] = ACTIONS(4802), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4804), + }, + [2165] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_EQ_TILDE] = ACTIONS(5862), + [anon_sym_EQ_EQ] = ACTIONS(5862), + [anon_sym_RBRACK] = ACTIONS(4808), + [sym__special_characters] = ACTIONS(4810), + [anon_sym_DQUOTE] = ACTIONS(4808), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), + [anon_sym_BQUOTE] = ACTIONS(4808), + [anon_sym_LT_LPAREN] = ACTIONS(4808), + [anon_sym_GT_LPAREN] = ACTIONS(4808), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4810), + }, + [2166] = { [sym__concat] = ACTIONS(4871), - [anon_sym_EQ_TILDE] = ACTIONS(5858), - [anon_sym_EQ_EQ] = ACTIONS(5858), + [anon_sym_EQ_TILDE] = ACTIONS(5864), + [anon_sym_EQ_EQ] = ACTIONS(5864), [anon_sym_RBRACK] = ACTIONS(4871), [sym__special_characters] = ACTIONS(4873), [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_DOLLAR] = ACTIONS(5864), [sym_raw_string] = ACTIONS(4871), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), @@ -60544,89 +60651,88 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(4873), }, - [2165] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2826), - [anon_sym_RBRACE] = ACTIONS(5860), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2166] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_EQ_TILDE] = ACTIONS(5862), - [anon_sym_EQ_EQ] = ACTIONS(5862), - [anon_sym_RBRACK] = ACTIONS(4877), - [sym__special_characters] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(4877), - [anon_sym_LT_LPAREN] = ACTIONS(4877), - [anon_sym_GT_LPAREN] = ACTIONS(4877), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4879), - }, [2167] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2828), - [anon_sym_RBRACE] = ACTIONS(5864), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5866), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2168] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5868), + [sym_comment] = ACTIONS(56), + }, + [2169] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5870), + [sym_comment] = ACTIONS(56), + }, + [2170] = { + [anon_sym_RBRACE] = ACTIONS(5870), + [sym_comment] = ACTIONS(56), + }, + [2171] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2832), + [anon_sym_RBRACE] = ACTIONS(5872), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2172] = { [sym__concat] = ACTIONS(4883), - [anon_sym_EQ_TILDE] = ACTIONS(5866), - [anon_sym_EQ_EQ] = ACTIONS(5866), + [anon_sym_EQ_TILDE] = ACTIONS(5874), + [anon_sym_EQ_EQ] = ACTIONS(5874), [anon_sym_RBRACK] = ACTIONS(4883), [sym__special_characters] = ACTIONS(4885), [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5866), + [anon_sym_DOLLAR] = ACTIONS(5874), [sym_raw_string] = ACTIONS(4883), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), @@ -60636,43 +60742,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(4885), }, - [2169] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5868), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2173] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2834), + [anon_sym_RBRACE] = ACTIONS(5876), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2170] = { + [2174] = { [sym__concat] = ACTIONS(4889), - [anon_sym_EQ_TILDE] = ACTIONS(5870), - [anon_sym_EQ_EQ] = ACTIONS(5870), + [anon_sym_EQ_TILDE] = ACTIONS(5878), + [anon_sym_EQ_EQ] = ACTIONS(5878), [anon_sym_RBRACK] = ACTIONS(4889), [sym__special_characters] = ACTIONS(4891), [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5870), + [anon_sym_DOLLAR] = ACTIONS(5878), [sym_raw_string] = ACTIONS(4889), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), @@ -60682,168 +60788,169 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(4891), }, - [2171] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5872), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2172] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_EQ_TILDE] = ACTIONS(5844), - [anon_sym_EQ_EQ] = ACTIONS(5844), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4790), - [sym__special_characters] = ACTIONS(4792), - [anon_sym_DQUOTE] = ACTIONS(4790), - [anon_sym_DOLLAR] = ACTIONS(5844), - [sym_raw_string] = ACTIONS(4790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4790), - [anon_sym_LT_LPAREN] = ACTIONS(4790), - [anon_sym_GT_LPAREN] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4792), - }, - [2173] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_EQ_TILDE] = ACTIONS(5846), - [anon_sym_EQ_EQ] = ACTIONS(5846), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4796), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4796), - [anon_sym_DOLLAR] = ACTIONS(5846), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), - [anon_sym_BQUOTE] = ACTIONS(4796), - [anon_sym_LT_LPAREN] = ACTIONS(4796), - [anon_sym_GT_LPAREN] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4798), - }, - [2174] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_EQ_TILDE] = ACTIONS(5848), - [anon_sym_EQ_EQ] = ACTIONS(5848), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4859), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4859), - [anon_sym_DOLLAR] = ACTIONS(5848), - [sym_raw_string] = ACTIONS(4859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4859), - [anon_sym_LT_LPAREN] = ACTIONS(4859), - [anon_sym_GT_LPAREN] = ACTIONS(4859), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4861), - }, [2175] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5874), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2836), + [anon_sym_RBRACE] = ACTIONS(5880), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2176] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5876), + [sym__concat] = ACTIONS(4895), + [anon_sym_EQ_TILDE] = ACTIONS(5882), + [anon_sym_EQ_EQ] = ACTIONS(5882), + [anon_sym_RBRACK] = ACTIONS(4895), + [sym__special_characters] = ACTIONS(4897), + [anon_sym_DQUOTE] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(5882), + [sym_raw_string] = ACTIONS(4895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(4895), + [anon_sym_LT_LPAREN] = ACTIONS(4895), + [anon_sym_GT_LPAREN] = ACTIONS(4895), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4897), }, [2177] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5878), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5884), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2178] = { - [anon_sym_RBRACE] = ACTIONS(5878), + [sym__concat] = ACTIONS(4901), + [anon_sym_EQ_TILDE] = ACTIONS(5886), + [anon_sym_EQ_EQ] = ACTIONS(5886), + [anon_sym_RBRACK] = ACTIONS(4901), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(5886), + [sym_raw_string] = ACTIONS(4901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4901), + [anon_sym_LT_LPAREN] = ACTIONS(4901), + [anon_sym_GT_LPAREN] = ACTIONS(4901), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4903), }, [2179] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2835), - [anon_sym_RBRACE] = ACTIONS(5880), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5888), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2180] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_EQ_TILDE] = ACTIONS(5860), + [anon_sym_EQ_EQ] = ACTIONS(5860), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4802), + [sym__special_characters] = ACTIONS(4804), + [anon_sym_DQUOTE] = ACTIONS(4802), + [anon_sym_DOLLAR] = ACTIONS(5860), + [sym_raw_string] = ACTIONS(4802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), + [anon_sym_BQUOTE] = ACTIONS(4802), + [anon_sym_LT_LPAREN] = ACTIONS(4802), + [anon_sym_GT_LPAREN] = ACTIONS(4802), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4804), + }, + [2181] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_EQ_TILDE] = ACTIONS(5862), + [anon_sym_EQ_EQ] = ACTIONS(5862), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4808), + [sym__special_characters] = ACTIONS(4810), + [anon_sym_DQUOTE] = ACTIONS(4808), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), + [anon_sym_BQUOTE] = ACTIONS(4808), + [anon_sym_LT_LPAREN] = ACTIONS(4808), + [anon_sym_GT_LPAREN] = ACTIONS(4808), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4810), + }, + [2182] = { [sym__concat] = ACTIONS(4871), - [anon_sym_EQ_TILDE] = ACTIONS(5858), - [anon_sym_EQ_EQ] = ACTIONS(5858), + [anon_sym_EQ_TILDE] = ACTIONS(5864), + [anon_sym_EQ_EQ] = ACTIONS(5864), [anon_sym_RBRACK_RBRACK] = ACTIONS(4871), [sym__special_characters] = ACTIONS(4873), [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_DOLLAR] = ACTIONS(5864), [sym_raw_string] = ACTIONS(4871), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), @@ -60853,1167 +60960,88 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(4873), }, - [2181] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2837), - [anon_sym_RBRACE] = ACTIONS(5882), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2182] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_EQ_TILDE] = ACTIONS(5862), - [anon_sym_EQ_EQ] = ACTIONS(5862), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4877), - [sym__special_characters] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(4877), - [anon_sym_LT_LPAREN] = ACTIONS(4877), - [anon_sym_GT_LPAREN] = ACTIONS(4877), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4879), - }, [2183] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2839), - [anon_sym_RBRACE] = ACTIONS(5884), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5890), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2184] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_EQ_TILDE] = ACTIONS(5866), - [anon_sym_EQ_EQ] = ACTIONS(5866), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(4885), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5866), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LT_LPAREN] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4885), - }, - [2185] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5886), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2186] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_EQ_TILDE] = ACTIONS(5870), - [anon_sym_EQ_EQ] = ACTIONS(5870), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5870), - [sym_raw_string] = ACTIONS(4889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), - [anon_sym_BQUOTE] = ACTIONS(4889), - [anon_sym_LT_LPAREN] = ACTIONS(4889), - [anon_sym_GT_LPAREN] = ACTIONS(4889), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4891), - }, - [2187] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5888), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2188] = { - [sym_variable_name] = ACTIONS(4169), - [anon_sym_PIPE] = ACTIONS(4171), - [anon_sym_RPAREN] = ACTIONS(4171), - [anon_sym_SEMI_SEMI] = ACTIONS(4171), - [anon_sym_PIPE_AMP] = ACTIONS(4171), - [anon_sym_AMP_AMP] = ACTIONS(4171), - [anon_sym_PIPE_PIPE] = ACTIONS(4171), - [sym__special_characters] = ACTIONS(4171), - [anon_sym_DQUOTE] = ACTIONS(4171), - [anon_sym_DOLLAR] = ACTIONS(4171), - [sym_raw_string] = ACTIONS(4171), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4171), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4171), - [anon_sym_BQUOTE] = ACTIONS(4171), - [anon_sym_LT_LPAREN] = ACTIONS(4171), - [anon_sym_GT_LPAREN] = ACTIONS(4171), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4171), - [sym_word] = ACTIONS(4171), - [anon_sym_SEMI] = ACTIONS(4171), - [anon_sym_LF] = ACTIONS(4171), - [anon_sym_AMP] = ACTIONS(4171), - }, - [2189] = { - [sym__concat] = ACTIONS(4790), - [sym_variable_name] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [sym__special_characters] = ACTIONS(4792), - [anon_sym_DQUOTE] = ACTIONS(4792), - [anon_sym_DOLLAR] = ACTIONS(4792), - [sym_raw_string] = ACTIONS(4792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), - [anon_sym_BQUOTE] = ACTIONS(4792), - [anon_sym_LT_LPAREN] = ACTIONS(4792), - [anon_sym_GT_LPAREN] = ACTIONS(4792), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4792), - [sym_word] = ACTIONS(4792), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - }, - [2190] = { - [sym__concat] = ACTIONS(4796), - [sym_variable_name] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4798), - [anon_sym_DOLLAR] = ACTIONS(4798), - [sym_raw_string] = ACTIONS(4798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), - [anon_sym_BQUOTE] = ACTIONS(4798), - [anon_sym_LT_LPAREN] = ACTIONS(4798), - [anon_sym_GT_LPAREN] = ACTIONS(4798), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4798), - [sym_word] = ACTIONS(4798), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), - }, - [2191] = { - [sym__concat] = ACTIONS(4859), - [sym_variable_name] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4861), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4861), - [sym_word] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), - }, - [2192] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5890), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2193] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), [anon_sym_RBRACE] = ACTIONS(5892), [sym_comment] = ACTIONS(56), }, - [2194] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), + [2185] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), [anon_sym_RBRACE] = ACTIONS(5894), [sym_comment] = ACTIONS(56), }, - [2195] = { + [2186] = { [anon_sym_RBRACE] = ACTIONS(5894), [sym_comment] = ACTIONS(56), }, - [2196] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2846), + [2187] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2843), [anon_sym_RBRACE] = ACTIONS(5896), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2197] = { - [sym__concat] = ACTIONS(4871), - [sym_variable_name] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym_raw_string] = ACTIONS(4873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), - [anon_sym_BQUOTE] = ACTIONS(4873), - [anon_sym_LT_LPAREN] = ACTIONS(4873), - [anon_sym_GT_LPAREN] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4873), - [sym_word] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [2198] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2848), - [anon_sym_RBRACE] = ACTIONS(5898), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2199] = { - [sym__concat] = ACTIONS(4877), - [sym_variable_name] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [sym__special_characters] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4879), - [sym_raw_string] = ACTIONS(4879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), - [anon_sym_BQUOTE] = ACTIONS(4879), - [anon_sym_LT_LPAREN] = ACTIONS(4879), - [anon_sym_GT_LPAREN] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4879), - [sym_word] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), - }, - [2200] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2850), - [anon_sym_RBRACE] = ACTIONS(5900), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2201] = { + [2188] = { [sym__concat] = ACTIONS(4883), - [sym_variable_name] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(4885), - [anon_sym_SEMI_SEMI] = ACTIONS(4885), - [anon_sym_PIPE_AMP] = ACTIONS(4885), - [anon_sym_AMP_AMP] = ACTIONS(4885), - [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [anon_sym_EQ_TILDE] = ACTIONS(5874), + [anon_sym_EQ_EQ] = ACTIONS(5874), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4883), [sym__special_characters] = ACTIONS(4885), - [anon_sym_DQUOTE] = ACTIONS(4885), - [anon_sym_DOLLAR] = ACTIONS(4885), - [sym_raw_string] = ACTIONS(4885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), - [anon_sym_BQUOTE] = ACTIONS(4885), - [anon_sym_LT_LPAREN] = ACTIONS(4885), - [anon_sym_GT_LPAREN] = ACTIONS(4885), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), - [sym_word] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [2202] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5902), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2203] = { - [sym__concat] = ACTIONS(4889), - [sym_variable_name] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4891), - [sym_raw_string] = ACTIONS(4891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [anon_sym_LT_LPAREN] = ACTIONS(4891), - [anon_sym_GT_LPAREN] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), - [sym_word] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [2204] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5904), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2205] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [sym__special_characters] = ACTIONS(4792), - [anon_sym_DQUOTE] = ACTIONS(4792), - [anon_sym_DOLLAR] = ACTIONS(4792), - [sym_raw_string] = ACTIONS(4792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), - [anon_sym_BQUOTE] = ACTIONS(4792), - [anon_sym_LT_LPAREN] = ACTIONS(4792), - [anon_sym_GT_LPAREN] = ACTIONS(4792), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4792), - [sym_word] = ACTIONS(4792), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - }, - [2206] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4798), - [anon_sym_DOLLAR] = ACTIONS(4798), - [sym_raw_string] = ACTIONS(4798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), - [anon_sym_BQUOTE] = ACTIONS(4798), - [anon_sym_LT_LPAREN] = ACTIONS(4798), - [anon_sym_GT_LPAREN] = ACTIONS(4798), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4798), - [sym_word] = ACTIONS(4798), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), - }, - [2207] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4861), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4861), - [sym_word] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), - }, - [2208] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5906), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2209] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5908), - [sym_comment] = ACTIONS(56), - }, - [2210] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5910), - [sym_comment] = ACTIONS(56), - }, - [2211] = { - [anon_sym_RBRACE] = ACTIONS(5910), - [sym_comment] = ACTIONS(56), - }, - [2212] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2857), - [anon_sym_RBRACE] = ACTIONS(5912), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2213] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [sym__special_characters] = ACTIONS(4873), - [anon_sym_DQUOTE] = ACTIONS(4873), - [anon_sym_DOLLAR] = ACTIONS(4873), - [sym_raw_string] = ACTIONS(4873), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), - [anon_sym_BQUOTE] = ACTIONS(4873), - [anon_sym_LT_LPAREN] = ACTIONS(4873), - [anon_sym_GT_LPAREN] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4873), - [sym_word] = ACTIONS(4873), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [2214] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2859), - [anon_sym_RBRACE] = ACTIONS(5914), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2215] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [sym__special_characters] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4879), - [sym_raw_string] = ACTIONS(4879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), - [anon_sym_BQUOTE] = ACTIONS(4879), - [anon_sym_LT_LPAREN] = ACTIONS(4879), - [anon_sym_GT_LPAREN] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4879), - [sym_word] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), - }, - [2216] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2861), - [anon_sym_RBRACE] = ACTIONS(5916), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2217] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(4885), - [anon_sym_SEMI_SEMI] = ACTIONS(4885), - [anon_sym_PIPE_AMP] = ACTIONS(4885), - [anon_sym_AMP_AMP] = ACTIONS(4885), - [anon_sym_PIPE_PIPE] = ACTIONS(4885), - [sym__special_characters] = ACTIONS(4885), - [anon_sym_DQUOTE] = ACTIONS(4885), - [anon_sym_DOLLAR] = ACTIONS(4885), - [sym_raw_string] = ACTIONS(4885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), - [anon_sym_BQUOTE] = ACTIONS(4885), - [anon_sym_LT_LPAREN] = ACTIONS(4885), - [anon_sym_GT_LPAREN] = ACTIONS(4885), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), - [sym_word] = ACTIONS(4885), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [2218] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5918), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2219] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [sym__special_characters] = ACTIONS(4891), - [anon_sym_DQUOTE] = ACTIONS(4891), - [anon_sym_DOLLAR] = ACTIONS(4891), - [sym_raw_string] = ACTIONS(4891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), - [anon_sym_BQUOTE] = ACTIONS(4891), - [anon_sym_LT_LPAREN] = ACTIONS(4891), - [anon_sym_GT_LPAREN] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), - [sym_word] = ACTIONS(4891), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [2220] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5920), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2221] = { - [sym_file_descriptor] = ACTIONS(4790), - [sym__concat] = ACTIONS(4790), - [sym_variable_name] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_GT_GT] = ACTIONS(4790), - [anon_sym_AMP_GT] = ACTIONS(5844), - [anon_sym_AMP_GT_GT] = ACTIONS(4790), - [anon_sym_LT_AMP] = ACTIONS(4790), - [anon_sym_GT_AMP] = ACTIONS(4790), - [sym__special_characters] = ACTIONS(5844), - [anon_sym_DQUOTE] = ACTIONS(4790), - [anon_sym_DOLLAR] = ACTIONS(5844), - [sym_raw_string] = ACTIONS(4790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4790), - [anon_sym_LT_LPAREN] = ACTIONS(4790), - [anon_sym_GT_LPAREN] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5844), - }, - [2222] = { - [sym_file_descriptor] = ACTIONS(4796), - [sym__concat] = ACTIONS(4796), - [sym_variable_name] = ACTIONS(4796), - [anon_sym_LT] = ACTIONS(5846), - [anon_sym_GT] = ACTIONS(5846), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_AMP_GT] = ACTIONS(5846), - [anon_sym_AMP_GT_GT] = ACTIONS(4796), - [anon_sym_LT_AMP] = ACTIONS(4796), - [anon_sym_GT_AMP] = ACTIONS(4796), - [sym__special_characters] = ACTIONS(5846), - [anon_sym_DQUOTE] = ACTIONS(4796), - [anon_sym_DOLLAR] = ACTIONS(5846), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), - [anon_sym_BQUOTE] = ACTIONS(4796), - [anon_sym_LT_LPAREN] = ACTIONS(4796), - [anon_sym_GT_LPAREN] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5846), - }, - [2223] = { - [sym_file_descriptor] = ACTIONS(4859), - [sym__concat] = ACTIONS(4859), - [sym_variable_name] = ACTIONS(4859), - [anon_sym_LT] = ACTIONS(5848), - [anon_sym_GT] = ACTIONS(5848), - [anon_sym_GT_GT] = ACTIONS(4859), - [anon_sym_AMP_GT] = ACTIONS(5848), - [anon_sym_AMP_GT_GT] = ACTIONS(4859), - [anon_sym_LT_AMP] = ACTIONS(4859), - [anon_sym_GT_AMP] = ACTIONS(4859), - [sym__special_characters] = ACTIONS(5848), - [anon_sym_DQUOTE] = ACTIONS(4859), - [anon_sym_DOLLAR] = ACTIONS(5848), - [sym_raw_string] = ACTIONS(4859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4859), - [anon_sym_LT_LPAREN] = ACTIONS(4859), - [anon_sym_GT_LPAREN] = ACTIONS(4859), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5848), - }, - [2224] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5922), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2225] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5924), - [sym_comment] = ACTIONS(56), - }, - [2226] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5926), - [sym_comment] = ACTIONS(56), - }, - [2227] = { - [anon_sym_RBRACE] = ACTIONS(5926), - [sym_comment] = ACTIONS(56), - }, - [2228] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2868), - [anon_sym_RBRACE] = ACTIONS(5928), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2229] = { - [sym_file_descriptor] = ACTIONS(4871), - [sym__concat] = ACTIONS(4871), - [sym_variable_name] = ACTIONS(4871), - [anon_sym_LT] = ACTIONS(5858), - [anon_sym_GT] = ACTIONS(5858), - [anon_sym_GT_GT] = ACTIONS(4871), - [anon_sym_AMP_GT] = ACTIONS(5858), - [anon_sym_AMP_GT_GT] = ACTIONS(4871), - [anon_sym_LT_AMP] = ACTIONS(4871), - [anon_sym_GT_AMP] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5858), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5858), - [sym_raw_string] = ACTIONS(4871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LT_LPAREN] = ACTIONS(4871), - [anon_sym_GT_LPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5858), - }, - [2230] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2870), - [anon_sym_RBRACE] = ACTIONS(5930), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2231] = { - [sym_file_descriptor] = ACTIONS(4877), - [sym__concat] = ACTIONS(4877), - [sym_variable_name] = ACTIONS(4877), - [anon_sym_LT] = ACTIONS(5862), - [anon_sym_GT] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(4877), - [anon_sym_AMP_GT] = ACTIONS(5862), - [anon_sym_AMP_GT_GT] = ACTIONS(4877), - [anon_sym_LT_AMP] = ACTIONS(4877), - [anon_sym_GT_AMP] = ACTIONS(4877), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(4877), - [anon_sym_LT_LPAREN] = ACTIONS(4877), - [anon_sym_GT_LPAREN] = ACTIONS(4877), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5862), - }, - [2232] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2872), - [anon_sym_RBRACE] = ACTIONS(5932), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2233] = { - [sym_file_descriptor] = ACTIONS(4883), - [sym__concat] = ACTIONS(4883), - [sym_variable_name] = ACTIONS(4883), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), - [anon_sym_GT_GT] = ACTIONS(4883), - [anon_sym_AMP_GT] = ACTIONS(5866), - [anon_sym_AMP_GT_GT] = ACTIONS(4883), - [anon_sym_LT_AMP] = ACTIONS(4883), - [anon_sym_GT_AMP] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5866), [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5866), + [anon_sym_DOLLAR] = ACTIONS(5874), [sym_raw_string] = ACTIONS(4883), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), @@ -62021,51 +61049,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4883), [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5866), + [sym_word] = ACTIONS(4885), }, - [2234] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5934), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2189] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2845), + [anon_sym_RBRACE] = ACTIONS(5898), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2235] = { - [sym_file_descriptor] = ACTIONS(4889), + [2190] = { [sym__concat] = ACTIONS(4889), - [sym_variable_name] = ACTIONS(4889), - [anon_sym_LT] = ACTIONS(5870), - [anon_sym_GT] = ACTIONS(5870), - [anon_sym_GT_GT] = ACTIONS(4889), - [anon_sym_AMP_GT] = ACTIONS(5870), - [anon_sym_AMP_GT_GT] = ACTIONS(4889), - [anon_sym_LT_AMP] = ACTIONS(4889), - [anon_sym_GT_AMP] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5870), + [anon_sym_EQ_TILDE] = ACTIONS(5878), + [anon_sym_EQ_EQ] = ACTIONS(5878), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(4891), [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5870), + [anon_sym_DOLLAR] = ACTIONS(5878), [sym_raw_string] = ACTIONS(4889), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), @@ -62073,1210 +61095,2223 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4889), [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5870), + [sym_word] = ACTIONS(4891), }, - [2236] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [2191] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2847), + [anon_sym_RBRACE] = ACTIONS(5900), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2192] = { + [sym__concat] = ACTIONS(4895), + [anon_sym_EQ_TILDE] = ACTIONS(5882), + [anon_sym_EQ_EQ] = ACTIONS(5882), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4895), + [sym__special_characters] = ACTIONS(4897), + [anon_sym_DQUOTE] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(5882), + [sym_raw_string] = ACTIONS(4895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(4895), + [anon_sym_LT_LPAREN] = ACTIONS(4895), + [anon_sym_GT_LPAREN] = ACTIONS(4895), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4897), + }, + [2193] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5902), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2194] = { + [sym__concat] = ACTIONS(4901), + [anon_sym_EQ_TILDE] = ACTIONS(5886), + [anon_sym_EQ_EQ] = ACTIONS(5886), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4901), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(5886), + [sym_raw_string] = ACTIONS(4901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4901), + [anon_sym_LT_LPAREN] = ACTIONS(4901), + [anon_sym_GT_LPAREN] = ACTIONS(4901), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4903), + }, + [2195] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5904), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2196] = { + [sym_variable_name] = ACTIONS(4181), + [anon_sym_PIPE] = ACTIONS(4183), + [anon_sym_RPAREN] = ACTIONS(4183), + [anon_sym_SEMI_SEMI] = ACTIONS(4183), + [anon_sym_PIPE_AMP] = ACTIONS(4183), + [anon_sym_AMP_AMP] = ACTIONS(4183), + [anon_sym_PIPE_PIPE] = ACTIONS(4183), + [sym__special_characters] = ACTIONS(4183), + [anon_sym_DQUOTE] = ACTIONS(4183), + [anon_sym_DOLLAR] = ACTIONS(4183), + [sym_raw_string] = ACTIONS(4183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4183), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4183), + [anon_sym_BQUOTE] = ACTIONS(4183), + [anon_sym_LT_LPAREN] = ACTIONS(4183), + [anon_sym_GT_LPAREN] = ACTIONS(4183), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4183), + [sym_word] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4183), + [anon_sym_LF] = ACTIONS(4183), + [anon_sym_AMP] = ACTIONS(4183), + }, + [2197] = { + [sym__concat] = ACTIONS(4802), + [sym_variable_name] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [sym__special_characters] = ACTIONS(4804), + [anon_sym_DQUOTE] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4804), + [sym_raw_string] = ACTIONS(4804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), + [anon_sym_BQUOTE] = ACTIONS(4804), + [anon_sym_LT_LPAREN] = ACTIONS(4804), + [anon_sym_GT_LPAREN] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4804), + [sym_word] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), + }, + [2198] = { + [sym__concat] = ACTIONS(4808), + [sym_variable_name] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [sym__special_characters] = ACTIONS(4810), + [anon_sym_DQUOTE] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4810), + [sym_raw_string] = ACTIONS(4810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), + [anon_sym_BQUOTE] = ACTIONS(4810), + [anon_sym_LT_LPAREN] = ACTIONS(4810), + [anon_sym_GT_LPAREN] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4810), + [sym_word] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), + }, + [2199] = { + [sym__concat] = ACTIONS(4871), + [sym_variable_name] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4873), + [anon_sym_DOLLAR] = ACTIONS(4873), + [sym_raw_string] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LT_LPAREN] = ACTIONS(4873), + [anon_sym_GT_LPAREN] = ACTIONS(4873), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4873), + [sym_word] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), + }, + [2200] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5906), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2201] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5908), + [sym_comment] = ACTIONS(56), + }, + [2202] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5910), + [sym_comment] = ACTIONS(56), + }, + [2203] = { + [anon_sym_RBRACE] = ACTIONS(5910), + [sym_comment] = ACTIONS(56), + }, + [2204] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2854), + [anon_sym_RBRACE] = ACTIONS(5912), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2205] = { + [sym__concat] = ACTIONS(4883), + [sym_variable_name] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4885), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), + [sym_word] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), + }, + [2206] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2856), + [anon_sym_RBRACE] = ACTIONS(5914), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2207] = { + [sym__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), + [anon_sym_LT_LPAREN] = ACTIONS(4891), + [anon_sym_GT_LPAREN] = ACTIONS(4891), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), + }, + [2208] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2858), + [anon_sym_RBRACE] = ACTIONS(5916), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2209] = { + [sym__concat] = ACTIONS(4895), + [sym_variable_name] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(4897), + [anon_sym_DQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR] = ACTIONS(4897), + [sym_raw_string] = ACTIONS(4897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), + [anon_sym_BQUOTE] = ACTIONS(4897), + [anon_sym_LT_LPAREN] = ACTIONS(4897), + [anon_sym_GT_LPAREN] = ACTIONS(4897), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4897), + [sym_word] = ACTIONS(4897), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), + }, + [2210] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5918), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2211] = { + [sym__concat] = ACTIONS(4901), + [sym_variable_name] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4903), + [sym_raw_string] = ACTIONS(4903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), + [anon_sym_BQUOTE] = ACTIONS(4903), + [anon_sym_LT_LPAREN] = ACTIONS(4903), + [anon_sym_GT_LPAREN] = ACTIONS(4903), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4903), + [sym_word] = ACTIONS(4903), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), + }, + [2212] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5920), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2213] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [sym__special_characters] = ACTIONS(4804), + [anon_sym_DQUOTE] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4804), + [sym_raw_string] = ACTIONS(4804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), + [anon_sym_BQUOTE] = ACTIONS(4804), + [anon_sym_LT_LPAREN] = ACTIONS(4804), + [anon_sym_GT_LPAREN] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4804), + [sym_word] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), + }, + [2214] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [sym__special_characters] = ACTIONS(4810), + [anon_sym_DQUOTE] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4810), + [sym_raw_string] = ACTIONS(4810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), + [anon_sym_BQUOTE] = ACTIONS(4810), + [anon_sym_LT_LPAREN] = ACTIONS(4810), + [anon_sym_GT_LPAREN] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4810), + [sym_word] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), + }, + [2215] = { + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [sym__special_characters] = ACTIONS(4873), + [anon_sym_DQUOTE] = ACTIONS(4873), + [anon_sym_DOLLAR] = ACTIONS(4873), + [sym_raw_string] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), + [anon_sym_BQUOTE] = ACTIONS(4873), + [anon_sym_LT_LPAREN] = ACTIONS(4873), + [anon_sym_GT_LPAREN] = ACTIONS(4873), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4873), + [sym_word] = ACTIONS(4873), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), + }, + [2216] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5922), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2217] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5924), + [sym_comment] = ACTIONS(56), + }, + [2218] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5926), + [sym_comment] = ACTIONS(56), + }, + [2219] = { + [anon_sym_RBRACE] = ACTIONS(5926), + [sym_comment] = ACTIONS(56), + }, + [2220] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2865), + [anon_sym_RBRACE] = ACTIONS(5928), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2221] = { + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [sym__special_characters] = ACTIONS(4885), + [anon_sym_DQUOTE] = ACTIONS(4885), + [anon_sym_DOLLAR] = ACTIONS(4885), + [sym_raw_string] = ACTIONS(4885), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), + [anon_sym_BQUOTE] = ACTIONS(4885), + [anon_sym_LT_LPAREN] = ACTIONS(4885), + [anon_sym_GT_LPAREN] = ACTIONS(4885), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4885), + [sym_word] = ACTIONS(4885), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), + }, + [2222] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2867), + [anon_sym_RBRACE] = ACTIONS(5930), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2223] = { + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [sym__special_characters] = ACTIONS(4891), + [anon_sym_DQUOTE] = ACTIONS(4891), + [anon_sym_DOLLAR] = ACTIONS(4891), + [sym_raw_string] = ACTIONS(4891), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), + [anon_sym_BQUOTE] = ACTIONS(4891), + [anon_sym_LT_LPAREN] = ACTIONS(4891), + [anon_sym_GT_LPAREN] = ACTIONS(4891), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4891), + [sym_word] = ACTIONS(4891), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), + }, + [2224] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2869), + [anon_sym_RBRACE] = ACTIONS(5932), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2225] = { + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(4897), + [anon_sym_DQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR] = ACTIONS(4897), + [sym_raw_string] = ACTIONS(4897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), + [anon_sym_BQUOTE] = ACTIONS(4897), + [anon_sym_LT_LPAREN] = ACTIONS(4897), + [anon_sym_GT_LPAREN] = ACTIONS(4897), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4897), + [sym_word] = ACTIONS(4897), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), + }, + [2226] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5934), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2227] = { + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4903), + [sym_raw_string] = ACTIONS(4903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), + [anon_sym_BQUOTE] = ACTIONS(4903), + [anon_sym_LT_LPAREN] = ACTIONS(4903), + [anon_sym_GT_LPAREN] = ACTIONS(4903), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4903), + [sym_word] = ACTIONS(4903), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), + }, + [2228] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), [anon_sym_RBRACE] = ACTIONS(5936), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2237] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_DQUOTE] = ACTIONS(4792), - [anon_sym_DOLLAR] = ACTIONS(4792), - [sym__string_content] = ACTIONS(5844), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), - [anon_sym_BQUOTE] = ACTIONS(4792), - [sym_comment] = ACTIONS(182), + [2229] = { + [sym_file_descriptor] = ACTIONS(4802), + [sym__concat] = ACTIONS(4802), + [sym_variable_name] = ACTIONS(4802), + [anon_sym_LT] = ACTIONS(5860), + [anon_sym_GT] = ACTIONS(5860), + [anon_sym_GT_GT] = ACTIONS(4802), + [anon_sym_AMP_GT] = ACTIONS(5860), + [anon_sym_AMP_GT_GT] = ACTIONS(4802), + [anon_sym_LT_AMP] = ACTIONS(4802), + [anon_sym_GT_AMP] = ACTIONS(4802), + [sym__special_characters] = ACTIONS(5860), + [anon_sym_DQUOTE] = ACTIONS(4802), + [anon_sym_DOLLAR] = ACTIONS(5860), + [sym_raw_string] = ACTIONS(4802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), + [anon_sym_BQUOTE] = ACTIONS(4802), + [anon_sym_LT_LPAREN] = ACTIONS(4802), + [anon_sym_GT_LPAREN] = ACTIONS(4802), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5860), }, - [2238] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_DQUOTE] = ACTIONS(4798), - [anon_sym_DOLLAR] = ACTIONS(4798), - [sym__string_content] = ACTIONS(5846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), - [anon_sym_BQUOTE] = ACTIONS(4798), - [sym_comment] = ACTIONS(182), + [2230] = { + [sym_file_descriptor] = ACTIONS(4808), + [sym__concat] = ACTIONS(4808), + [sym_variable_name] = ACTIONS(4808), + [anon_sym_LT] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5862), + [anon_sym_GT_GT] = ACTIONS(4808), + [anon_sym_AMP_GT] = ACTIONS(5862), + [anon_sym_AMP_GT_GT] = ACTIONS(4808), + [anon_sym_LT_AMP] = ACTIONS(4808), + [anon_sym_GT_AMP] = ACTIONS(4808), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4808), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), + [anon_sym_BQUOTE] = ACTIONS(4808), + [anon_sym_LT_LPAREN] = ACTIONS(4808), + [anon_sym_GT_LPAREN] = ACTIONS(4808), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5862), }, - [2239] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4861), - [sym__string_content] = ACTIONS(5848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [sym_comment] = ACTIONS(182), + [2231] = { + [sym_file_descriptor] = ACTIONS(4871), + [sym__concat] = ACTIONS(4871), + [sym_variable_name] = ACTIONS(4871), + [anon_sym_LT] = ACTIONS(5864), + [anon_sym_GT] = ACTIONS(5864), + [anon_sym_GT_GT] = ACTIONS(4871), + [anon_sym_AMP_GT] = ACTIONS(5864), + [anon_sym_AMP_GT_GT] = ACTIONS(4871), + [anon_sym_LT_AMP] = ACTIONS(4871), + [anon_sym_GT_AMP] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(5864), + [anon_sym_DQUOTE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5864), + [sym_raw_string] = ACTIONS(4871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [anon_sym_LT_LPAREN] = ACTIONS(4871), + [anon_sym_GT_LPAREN] = ACTIONS(4871), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5864), }, - [2240] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [2232] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), [anon_sym_RBRACE] = ACTIONS(5938), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2241] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), + [2233] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), [anon_sym_RBRACE] = ACTIONS(5940), [sym_comment] = ACTIONS(56), }, - [2242] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), + [2234] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), [anon_sym_RBRACE] = ACTIONS(5942), [sym_comment] = ACTIONS(56), }, + [2235] = { + [anon_sym_RBRACE] = ACTIONS(5942), + [sym_comment] = ACTIONS(56), + }, + [2236] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2876), + [anon_sym_RBRACE] = ACTIONS(5944), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2237] = { + [sym_file_descriptor] = ACTIONS(4883), + [sym__concat] = ACTIONS(4883), + [sym_variable_name] = ACTIONS(4883), + [anon_sym_LT] = ACTIONS(5874), + [anon_sym_GT] = ACTIONS(5874), + [anon_sym_GT_GT] = ACTIONS(4883), + [anon_sym_AMP_GT] = ACTIONS(5874), + [anon_sym_AMP_GT_GT] = ACTIONS(4883), + [anon_sym_LT_AMP] = ACTIONS(4883), + [anon_sym_GT_AMP] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(5874), + [anon_sym_DQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5874), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [anon_sym_LT_LPAREN] = ACTIONS(4883), + [anon_sym_GT_LPAREN] = ACTIONS(4883), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5874), + }, + [2238] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2878), + [anon_sym_RBRACE] = ACTIONS(5946), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2239] = { + [sym_file_descriptor] = ACTIONS(4889), + [sym__concat] = ACTIONS(4889), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_GT] = ACTIONS(5878), + [anon_sym_GT_GT] = ACTIONS(4889), + [anon_sym_AMP_GT] = ACTIONS(5878), + [anon_sym_AMP_GT_GT] = ACTIONS(4889), + [anon_sym_LT_AMP] = ACTIONS(4889), + [anon_sym_GT_AMP] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(5878), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5878), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5878), + }, + [2240] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2880), + [anon_sym_RBRACE] = ACTIONS(5948), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2241] = { + [sym_file_descriptor] = ACTIONS(4895), + [sym__concat] = ACTIONS(4895), + [sym_variable_name] = ACTIONS(4895), + [anon_sym_LT] = ACTIONS(5882), + [anon_sym_GT] = ACTIONS(5882), + [anon_sym_GT_GT] = ACTIONS(4895), + [anon_sym_AMP_GT] = ACTIONS(5882), + [anon_sym_AMP_GT_GT] = ACTIONS(4895), + [anon_sym_LT_AMP] = ACTIONS(4895), + [anon_sym_GT_AMP] = ACTIONS(4895), + [sym__special_characters] = ACTIONS(5882), + [anon_sym_DQUOTE] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(5882), + [sym_raw_string] = ACTIONS(4895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(4895), + [anon_sym_LT_LPAREN] = ACTIONS(4895), + [anon_sym_GT_LPAREN] = ACTIONS(4895), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5882), + }, + [2242] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5950), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, [2243] = { - [anon_sym_RBRACE] = ACTIONS(5942), + [sym_file_descriptor] = ACTIONS(4901), + [sym__concat] = ACTIONS(4901), + [sym_variable_name] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(5886), + [anon_sym_GT] = ACTIONS(5886), + [anon_sym_GT_GT] = ACTIONS(4901), + [anon_sym_AMP_GT] = ACTIONS(5886), + [anon_sym_AMP_GT_GT] = ACTIONS(4901), + [anon_sym_LT_AMP] = ACTIONS(4901), + [anon_sym_GT_AMP] = ACTIONS(4901), + [sym__special_characters] = ACTIONS(5886), + [anon_sym_DQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(5886), + [sym_raw_string] = ACTIONS(4901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4901), + [anon_sym_LT_LPAREN] = ACTIONS(4901), + [anon_sym_GT_LPAREN] = ACTIONS(4901), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5886), }, [2244] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2879), - [anon_sym_RBRACE] = ACTIONS(5944), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5952), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2245] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_DQUOTE] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4804), + [sym__string_content] = ACTIONS(5860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), + [anon_sym_BQUOTE] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + }, + [2246] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_DQUOTE] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4810), + [sym__string_content] = ACTIONS(5862), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), + [anon_sym_BQUOTE] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + }, + [2247] = { [sym__concat] = ACTIONS(4871), [anon_sym_DQUOTE] = ACTIONS(4873), [anon_sym_DOLLAR] = ACTIONS(4873), - [sym__string_content] = ACTIONS(5858), + [sym__string_content] = ACTIONS(5864), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4873), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4873), [anon_sym_BQUOTE] = ACTIONS(4873), [sym_comment] = ACTIONS(182), }, - [2246] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2881), - [anon_sym_RBRACE] = ACTIONS(5946), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2247] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_DQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4879), - [sym__string_content] = ACTIONS(5862), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), - [anon_sym_BQUOTE] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - }, [2248] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2883), - [anon_sym_RBRACE] = ACTIONS(5948), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5954), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2249] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5956), + [sym_comment] = ACTIONS(56), + }, + [2250] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(5958), + [sym_comment] = ACTIONS(56), + }, + [2251] = { + [anon_sym_RBRACE] = ACTIONS(5958), + [sym_comment] = ACTIONS(56), + }, + [2252] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2887), + [anon_sym_RBRACE] = ACTIONS(5960), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2253] = { [sym__concat] = ACTIONS(4883), [anon_sym_DQUOTE] = ACTIONS(4885), [anon_sym_DOLLAR] = ACTIONS(4885), - [sym__string_content] = ACTIONS(5866), + [sym__string_content] = ACTIONS(5874), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4885), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4885), [anon_sym_BQUOTE] = ACTIONS(4885), [sym_comment] = ACTIONS(182), }, - [2250] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5950), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2254] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2889), + [anon_sym_RBRACE] = ACTIONS(5962), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2251] = { + [2255] = { [sym__concat] = ACTIONS(4889), [anon_sym_DQUOTE] = ACTIONS(4891), [anon_sym_DOLLAR] = ACTIONS(4891), - [sym__string_content] = ACTIONS(5870), + [sym__string_content] = ACTIONS(5878), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4891), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4891), [anon_sym_BQUOTE] = ACTIONS(4891), [sym_comment] = ACTIONS(182), }, - [2252] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5952), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2253] = { - [sym__concat] = ACTIONS(5954), - [anon_sym_RBRACE] = ACTIONS(4098), - [anon_sym_EQ] = ACTIONS(5956), - [sym__special_characters] = ACTIONS(5958), - [anon_sym_DQUOTE] = ACTIONS(4098), - [anon_sym_DOLLAR] = ACTIONS(5956), - [sym_raw_string] = ACTIONS(4098), - [anon_sym_POUND] = ACTIONS(4098), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4098), - [aux_sym_SLASH] = ACTIONS(4098), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_COLON_QMARK] = ACTIONS(5956), - [anon_sym_COLON_DASH] = ACTIONS(5956), - [anon_sym_PERCENT] = ACTIONS(5956), - [anon_sym_DASH] = ACTIONS(5956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_LT_LPAREN] = ACTIONS(4098), - [anon_sym_GT_LPAREN] = ACTIONS(4098), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5958), - }, - [2254] = { - [anon_sym_RBRACE] = ACTIONS(4098), - [anon_sym_EQ] = ACTIONS(5956), - [sym__special_characters] = ACTIONS(5958), - [anon_sym_DQUOTE] = ACTIONS(4098), - [anon_sym_DOLLAR] = ACTIONS(5956), - [sym_raw_string] = ACTIONS(4098), - [anon_sym_POUND] = ACTIONS(4098), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4098), - [aux_sym_SLASH] = ACTIONS(4098), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_COLON_QMARK] = ACTIONS(5956), - [anon_sym_COLON_DASH] = ACTIONS(5956), - [anon_sym_PERCENT] = ACTIONS(5956), - [anon_sym_DASH] = ACTIONS(5956), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4098), - [anon_sym_BQUOTE] = ACTIONS(4098), - [anon_sym_LT_LPAREN] = ACTIONS(4098), - [anon_sym_GT_LPAREN] = ACTIONS(4098), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5958), - }, - [2255] = { - [sym__concat] = ACTIONS(5960), - [anon_sym_RBRACE] = ACTIONS(4105), - [anon_sym_EQ] = ACTIONS(5962), - [sym__special_characters] = ACTIONS(5964), - [anon_sym_DQUOTE] = ACTIONS(4105), - [anon_sym_DOLLAR] = ACTIONS(5962), - [sym_raw_string] = ACTIONS(4105), - [anon_sym_POUND] = ACTIONS(4105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4105), - [aux_sym_SLASH] = ACTIONS(4105), - [anon_sym_COLON] = ACTIONS(5962), - [anon_sym_COLON_QMARK] = ACTIONS(5962), - [anon_sym_COLON_DASH] = ACTIONS(5962), - [anon_sym_PERCENT] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4105), - [anon_sym_BQUOTE] = ACTIONS(4105), - [anon_sym_LT_LPAREN] = ACTIONS(4105), - [anon_sym_GT_LPAREN] = ACTIONS(4105), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5964), - }, [2256] = { - [anon_sym_RBRACE] = ACTIONS(4105), - [anon_sym_EQ] = ACTIONS(5962), - [sym__special_characters] = ACTIONS(5964), - [anon_sym_DQUOTE] = ACTIONS(4105), - [anon_sym_DOLLAR] = ACTIONS(5962), - [sym_raw_string] = ACTIONS(4105), - [anon_sym_POUND] = ACTIONS(4105), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4105), - [aux_sym_SLASH] = ACTIONS(4105), - [anon_sym_COLON] = ACTIONS(5962), - [anon_sym_COLON_QMARK] = ACTIONS(5962), - [anon_sym_COLON_DASH] = ACTIONS(5962), - [anon_sym_PERCENT] = ACTIONS(5962), - [anon_sym_DASH] = ACTIONS(5962), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4105), - [anon_sym_BQUOTE] = ACTIONS(4105), - [anon_sym_LT_LPAREN] = ACTIONS(4105), - [anon_sym_GT_LPAREN] = ACTIONS(4105), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2891), + [anon_sym_RBRACE] = ACTIONS(5964), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(5964), + [sym_word] = ACTIONS(866), }, [2257] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_RBRACE] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(4895), + [anon_sym_DQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR] = ACTIONS(4897), + [sym__string_content] = ACTIONS(5882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), + [anon_sym_BQUOTE] = ACTIONS(4897), + [sym_comment] = ACTIONS(182), }, [2258] = { - [aux_sym_concatenation_repeat1] = STATE(2258), - [sym__concat] = ACTIONS(5966), - [anon_sym_RBRACE] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5966), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2259] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_RBRACE] = ACTIONS(1923), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(4901), + [anon_sym_DQUOTE] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4903), + [sym__string_content] = ACTIONS(5886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), + [anon_sym_BQUOTE] = ACTIONS(4903), + [sym_comment] = ACTIONS(182), }, [2260] = { - [sym_concatenation] = STATE(2891), - [sym_string] = STATE(2890), - [sym_simple_expansion] = STATE(2890), - [sym_string_expansion] = STATE(2890), - [sym_expansion] = STATE(2890), - [sym_command_substitution] = STATE(2890), - [sym_process_substitution] = STATE(2890), - [anon_sym_RBRACE] = ACTIONS(5969), - [sym__special_characters] = ACTIONS(5971), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(5973), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5975), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5968), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2261] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_RBRACE] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(5970), + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_EQ] = ACTIONS(5972), + [sym__special_characters] = ACTIONS(5974), + [anon_sym_DQUOTE] = ACTIONS(4110), + [anon_sym_DOLLAR] = ACTIONS(5972), + [sym_raw_string] = ACTIONS(4110), + [anon_sym_POUND] = ACTIONS(4110), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4110), + [aux_sym_SLASH] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(5972), + [anon_sym_COLON_QMARK] = ACTIONS(5972), + [anon_sym_COLON_DASH] = ACTIONS(5972), + [anon_sym_PERCENT] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4110), + [anon_sym_BQUOTE] = ACTIONS(4110), + [anon_sym_LT_LPAREN] = ACTIONS(4110), + [anon_sym_GT_LPAREN] = ACTIONS(4110), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5974), }, [2262] = { + [anon_sym_RBRACE] = ACTIONS(4110), + [anon_sym_EQ] = ACTIONS(5972), + [sym__special_characters] = ACTIONS(5974), + [anon_sym_DQUOTE] = ACTIONS(4110), + [anon_sym_DOLLAR] = ACTIONS(5972), + [sym_raw_string] = ACTIONS(4110), + [anon_sym_POUND] = ACTIONS(4110), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4110), + [aux_sym_SLASH] = ACTIONS(4110), + [anon_sym_COLON] = ACTIONS(5972), + [anon_sym_COLON_QMARK] = ACTIONS(5972), + [anon_sym_COLON_DASH] = ACTIONS(5972), + [anon_sym_PERCENT] = ACTIONS(5972), + [anon_sym_DASH] = ACTIONS(5972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4110), + [anon_sym_BQUOTE] = ACTIONS(4110), + [anon_sym_LT_LPAREN] = ACTIONS(4110), + [anon_sym_GT_LPAREN] = ACTIONS(4110), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5977), + [sym_word] = ACTIONS(5974), }, [2263] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5979), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(5976), + [anon_sym_RBRACE] = ACTIONS(4117), + [anon_sym_EQ] = ACTIONS(5978), + [sym__special_characters] = ACTIONS(5980), + [anon_sym_DQUOTE] = ACTIONS(4117), + [anon_sym_DOLLAR] = ACTIONS(5978), + [sym_raw_string] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(4117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4117), + [aux_sym_SLASH] = ACTIONS(4117), + [anon_sym_COLON] = ACTIONS(5978), + [anon_sym_COLON_QMARK] = ACTIONS(5978), + [anon_sym_COLON_DASH] = ACTIONS(5978), + [anon_sym_PERCENT] = ACTIONS(5978), + [anon_sym_DASH] = ACTIONS(5978), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4117), + [anon_sym_BQUOTE] = ACTIONS(4117), + [anon_sym_LT_LPAREN] = ACTIONS(4117), + [anon_sym_GT_LPAREN] = ACTIONS(4117), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(5980), }, [2264] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(5981), - [sym_comment] = ACTIONS(56), + [anon_sym_RBRACE] = ACTIONS(4117), + [anon_sym_EQ] = ACTIONS(5978), + [sym__special_characters] = ACTIONS(5980), + [anon_sym_DQUOTE] = ACTIONS(4117), + [anon_sym_DOLLAR] = ACTIONS(5978), + [sym_raw_string] = ACTIONS(4117), + [anon_sym_POUND] = ACTIONS(4117), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4117), + [aux_sym_SLASH] = ACTIONS(4117), + [anon_sym_COLON] = ACTIONS(5978), + [anon_sym_COLON_QMARK] = ACTIONS(5978), + [anon_sym_COLON_DASH] = ACTIONS(5978), + [anon_sym_PERCENT] = ACTIONS(5978), + [anon_sym_DASH] = ACTIONS(5978), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4117), + [anon_sym_BQUOTE] = ACTIONS(4117), + [anon_sym_LT_LPAREN] = ACTIONS(4117), + [anon_sym_GT_LPAREN] = ACTIONS(4117), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(5980), }, [2265] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2897), - [anon_sym_RBRACE] = ACTIONS(5983), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5985), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2266] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2900), - [anon_sym_RBRACE] = ACTIONS(5987), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5989), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2267] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2902), - [anon_sym_RBRACE] = ACTIONS(5969), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(5991), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2268] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_RBRACE] = ACTIONS(2022), + [sym__concat] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), [sym_comment] = ACTIONS(56), }, + [2266] = { + [aux_sym_concatenation_repeat1] = STATE(2266), + [sym__concat] = ACTIONS(5982), + [anon_sym_RBRACE] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + }, + [2267] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1927), + [sym_comment] = ACTIONS(56), + }, + [2268] = { + [sym_concatenation] = STATE(2899), + [sym_string] = STATE(2898), + [sym_simple_expansion] = STATE(2898), + [sym_string_expansion] = STATE(2898), + [sym_expansion] = STATE(2898), + [sym_command_substitution] = STATE(2898), + [sym_process_substitution] = STATE(2898), + [anon_sym_RBRACE] = ACTIONS(5985), + [sym__special_characters] = ACTIONS(5987), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(5989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5991), + }, [2269] = { + [sym__concat] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [sym_comment] = ACTIONS(56), + }, + [2270] = { [sym_comment] = ACTIONS(182), [sym_regex_without_right_brace] = ACTIONS(5993), }, - [2270] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5995), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [2271] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_RBRACE] = ACTIONS(2030), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5995), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2272] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(5997), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(5997), + [sym_comment] = ACTIONS(56), }, [2273] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(5969), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2905), + [anon_sym_RBRACE] = ACTIONS(5999), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6001), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2274] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2908), + [anon_sym_RBRACE] = ACTIONS(6003), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6005), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2275] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_RBRACE] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2910), + [anon_sym_RBRACE] = ACTIONS(5985), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6007), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2276] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_EQ] = ACTIONS(4602), - [sym__special_characters] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(4602), - [sym_raw_string] = ACTIONS(3283), - [anon_sym_POUND] = ACTIONS(3283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), - [anon_sym_COLON] = ACTIONS(4602), - [anon_sym_COLON_QMARK] = ACTIONS(4602), - [anon_sym_COLON_DASH] = ACTIONS(4602), - [anon_sym_PERCENT] = ACTIONS(4602), - [anon_sym_DASH] = ACTIONS(4602), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), - [anon_sym_BQUOTE] = ACTIONS(3283), - [anon_sym_LT_LPAREN] = ACTIONS(3283), - [anon_sym_GT_LPAREN] = ACTIONS(3283), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3285), + [sym__concat] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [sym_comment] = ACTIONS(56), }, [2277] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(5999), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6009), }, [2278] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6001), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6011), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2279] = { - [anon_sym_RBRACE] = ACTIONS(6001), + [sym__concat] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), [sym_comment] = ACTIONS(56), }, [2280] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2909), - [anon_sym_RBRACE] = ACTIONS(6003), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(6013), }, [2281] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_EQ] = ACTIONS(4610), - [sym__special_characters] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(3347), - [anon_sym_POUND] = ACTIONS(3347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), - [anon_sym_COLON] = ACTIONS(4610), - [anon_sym_COLON_QMARK] = ACTIONS(4610), - [anon_sym_COLON_DASH] = ACTIONS(4610), - [anon_sym_PERCENT] = ACTIONS(4610), - [anon_sym_DASH] = ACTIONS(4610), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), - [anon_sym_BQUOTE] = ACTIONS(3347), - [anon_sym_LT_LPAREN] = ACTIONS(3347), - [anon_sym_GT_LPAREN] = ACTIONS(3347), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(5985), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3349), + [sym_word] = ACTIONS(866), }, [2282] = { - [sym_concatenation] = STATE(2912), - [sym_string] = STATE(2911), - [sym_simple_expansion] = STATE(2911), - [sym_string_expansion] = STATE(2911), - [sym_expansion] = STATE(2911), - [sym_command_substitution] = STATE(2911), - [sym_process_substitution] = STATE(2911), - [anon_sym_RBRACE] = ACTIONS(6001), - [sym__special_characters] = ACTIONS(6005), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6007), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [sym__concat] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6009), }, [2283] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_RBRACE] = ACTIONS(3392), - [anon_sym_EQ] = ACTIONS(4618), - [sym__special_characters] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(4618), - [sym_raw_string] = ACTIONS(3392), - [anon_sym_POUND] = ACTIONS(3392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), - [anon_sym_COLON] = ACTIONS(4618), - [anon_sym_COLON_QMARK] = ACTIONS(4618), - [anon_sym_COLON_DASH] = ACTIONS(4618), - [anon_sym_PERCENT] = ACTIONS(4618), - [anon_sym_DASH] = ACTIONS(4618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), - [anon_sym_BQUOTE] = ACTIONS(3392), - [anon_sym_LT_LPAREN] = ACTIONS(3392), - [anon_sym_GT_LPAREN] = ACTIONS(3392), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3394), + [sym__concat] = ACTIONS(2402), + [anon_sym_RBRACE] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), }, [2284] = { + [sym__concat] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_EQ] = ACTIONS(4614), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4614), + [sym_raw_string] = ACTIONS(3293), + [anon_sym_POUND] = ACTIONS(3293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), + [anon_sym_COLON] = ACTIONS(4614), + [anon_sym_COLON_QMARK] = ACTIONS(4614), + [anon_sym_COLON_DASH] = ACTIONS(4614), + [anon_sym_PERCENT] = ACTIONS(4614), + [anon_sym_DASH] = ACTIONS(4614), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3293), + [anon_sym_LT_LPAREN] = ACTIONS(3293), + [anon_sym_GT_LPAREN] = ACTIONS(3293), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6011), + [sym_word] = ACTIONS(3295), }, [2285] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6013), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6015), + [sym_comment] = ACTIONS(56), }, [2286] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_RBRACE] = ACTIONS(3400), - [anon_sym_EQ] = ACTIONS(4624), - [sym__special_characters] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(4624), - [sym_raw_string] = ACTIONS(3400), - [anon_sym_POUND] = ACTIONS(3400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), - [anon_sym_COLON] = ACTIONS(4624), - [anon_sym_COLON_QMARK] = ACTIONS(4624), - [anon_sym_COLON_DASH] = ACTIONS(4624), - [anon_sym_PERCENT] = ACTIONS(4624), - [anon_sym_DASH] = ACTIONS(4624), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), - [anon_sym_BQUOTE] = ACTIONS(3400), - [anon_sym_LT_LPAREN] = ACTIONS(3400), - [anon_sym_GT_LPAREN] = ACTIONS(3400), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3402), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6017), + [sym_comment] = ACTIONS(56), }, [2287] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6015), + [anon_sym_RBRACE] = ACTIONS(6017), + [sym_comment] = ACTIONS(56), }, [2288] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6017), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2917), + [anon_sym_RBRACE] = ACTIONS(6019), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2289] = { + [sym__concat] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_EQ] = ACTIONS(4622), + [sym__special_characters] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(4622), + [sym_raw_string] = ACTIONS(3357), + [anon_sym_POUND] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), + [anon_sym_COLON] = ACTIONS(4622), + [anon_sym_COLON_QMARK] = ACTIONS(4622), + [anon_sym_COLON_DASH] = ACTIONS(4622), + [anon_sym_PERCENT] = ACTIONS(4622), + [anon_sym_DASH] = ACTIONS(4622), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3357), + [anon_sym_LT_LPAREN] = ACTIONS(3357), + [anon_sym_GT_LPAREN] = ACTIONS(3357), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6019), + [sym_word] = ACTIONS(3359), }, [2290] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6001), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(2920), + [sym_string] = STATE(2919), + [sym_simple_expansion] = STATE(2919), + [sym_string_expansion] = STATE(2919), + [sym_expansion] = STATE(2919), + [sym_command_substitution] = STATE(2919), + [sym_process_substitution] = STATE(2919), + [anon_sym_RBRACE] = ACTIONS(6017), + [sym__special_characters] = ACTIONS(6021), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6023), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6025), }, [2291] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2919), - [anon_sym_RBRACE] = ACTIONS(6021), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3402), + [anon_sym_RBRACE] = ACTIONS(3402), + [anon_sym_EQ] = ACTIONS(4630), + [sym__special_characters] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(4630), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_POUND] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_COLON] = ACTIONS(4630), + [anon_sym_COLON_QMARK] = ACTIONS(4630), + [anon_sym_COLON_DASH] = ACTIONS(4630), + [anon_sym_PERCENT] = ACTIONS(4630), + [anon_sym_DASH] = ACTIONS(4630), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(3404), }, [2292] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_RBRACE] = ACTIONS(3412), - [anon_sym_EQ] = ACTIONS(4634), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(4634), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_POUND] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_COLON] = ACTIONS(4634), - [anon_sym_COLON_QMARK] = ACTIONS(4634), - [anon_sym_COLON_DASH] = ACTIONS(4634), - [anon_sym_PERCENT] = ACTIONS(4634), - [anon_sym_DASH] = ACTIONS(4634), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3414), + [sym_regex_without_right_brace] = ACTIONS(6027), }, [2293] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2921), - [anon_sym_RBRACE] = ACTIONS(6023), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6029), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2294] = { - [sym_file_descriptor] = ACTIONS(6025), - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [anon_sym_EQ_TILDE] = ACTIONS(6027), - [anon_sym_EQ_EQ] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6027), - [anon_sym_GT] = ACTIONS(6027), - [anon_sym_GT_GT] = ACTIONS(6027), - [anon_sym_AMP_GT] = ACTIONS(6027), - [anon_sym_AMP_GT_GT] = ACTIONS(6027), - [anon_sym_LT_AMP] = ACTIONS(6027), - [anon_sym_GT_AMP] = ACTIONS(6027), - [anon_sym_LT_LT] = ACTIONS(6027), - [anon_sym_LT_LT_DASH] = ACTIONS(6027), - [anon_sym_LT_LT_LT] = ACTIONS(6027), - [sym__special_characters] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6027), - [sym_raw_string] = ACTIONS(6027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), - [anon_sym_BQUOTE] = ACTIONS(6027), - [anon_sym_LT_LPAREN] = ACTIONS(6027), - [anon_sym_GT_LPAREN] = ACTIONS(6027), + [sym__concat] = ACTIONS(3410), + [anon_sym_RBRACE] = ACTIONS(3410), + [anon_sym_EQ] = ACTIONS(4636), + [sym__special_characters] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_DOLLAR] = ACTIONS(4636), + [sym_raw_string] = ACTIONS(3410), + [anon_sym_POUND] = ACTIONS(3410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), + [anon_sym_COLON] = ACTIONS(4636), + [anon_sym_COLON_QMARK] = ACTIONS(4636), + [anon_sym_COLON_DASH] = ACTIONS(4636), + [anon_sym_PERCENT] = ACTIONS(4636), + [anon_sym_DASH] = ACTIONS(4636), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), + [anon_sym_BQUOTE] = ACTIONS(3410), + [anon_sym_LT_LPAREN] = ACTIONS(3410), + [anon_sym_GT_LPAREN] = ACTIONS(3410), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6027), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), + [sym_word] = ACTIONS(3412), }, [2295] = { - [sym_file_descriptor] = ACTIONS(6029), - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [anon_sym_EQ_TILDE] = ACTIONS(6031), - [anon_sym_EQ_EQ] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6031), - [anon_sym_GT] = ACTIONS(6031), - [anon_sym_GT_GT] = ACTIONS(6031), - [anon_sym_AMP_GT] = ACTIONS(6031), - [anon_sym_AMP_GT_GT] = ACTIONS(6031), - [anon_sym_LT_AMP] = ACTIONS(6031), - [anon_sym_GT_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6031), - [anon_sym_LT_LT_DASH] = ACTIONS(6031), - [anon_sym_LT_LT_LT] = ACTIONS(6031), - [sym__special_characters] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6031), - [sym_raw_string] = ACTIONS(6031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), - [anon_sym_BQUOTE] = ACTIONS(6031), - [anon_sym_LT_LPAREN] = ACTIONS(6031), - [anon_sym_GT_LPAREN] = ACTIONS(6031), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6031), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), + [sym_regex_without_right_brace] = ACTIONS(6031), }, [2296] = { - [sym_file_descriptor] = ACTIONS(6033), - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), - [anon_sym_EQ_TILDE] = ACTIONS(6035), - [anon_sym_EQ_EQ] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6035), - [anon_sym_GT] = ACTIONS(6035), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_AMP_GT] = ACTIONS(6035), - [anon_sym_AMP_GT_GT] = ACTIONS(6035), - [anon_sym_LT_AMP] = ACTIONS(6035), - [anon_sym_GT_AMP] = ACTIONS(6035), - [anon_sym_LT_LT] = ACTIONS(6035), - [anon_sym_LT_LT_DASH] = ACTIONS(6035), - [anon_sym_LT_LT_LT] = ACTIONS(6035), - [sym__special_characters] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6035), - [sym_raw_string] = ACTIONS(6035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), - [anon_sym_BQUOTE] = ACTIONS(6035), - [anon_sym_LT_LPAREN] = ACTIONS(6035), - [anon_sym_GT_LPAREN] = ACTIONS(6035), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6033), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6035), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), + [sym_word] = ACTIONS(866), }, [2297] = { - [sym_file_descriptor] = ACTIONS(6037), - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), - [anon_sym_EQ_TILDE] = ACTIONS(6039), - [anon_sym_EQ_EQ] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6039), - [anon_sym_GT] = ACTIONS(6039), - [anon_sym_GT_GT] = ACTIONS(6039), - [anon_sym_AMP_GT] = ACTIONS(6039), - [anon_sym_AMP_GT_GT] = ACTIONS(6039), - [anon_sym_LT_AMP] = ACTIONS(6039), - [anon_sym_GT_AMP] = ACTIONS(6039), - [anon_sym_LT_LT] = ACTIONS(6039), - [anon_sym_LT_LT_DASH] = ACTIONS(6039), - [anon_sym_LT_LT_LT] = ACTIONS(6039), - [sym__special_characters] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6039), - [sym_raw_string] = ACTIONS(6039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), - [anon_sym_BQUOTE] = ACTIONS(6039), - [anon_sym_LT_LPAREN] = ACTIONS(6039), - [anon_sym_GT_LPAREN] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6039), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), + [sym_regex_without_right_brace] = ACTIONS(6035), }, [2298] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6041), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6017), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2299] = { - [sym_file_descriptor] = ACTIONS(6043), - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_EQ_TILDE] = ACTIONS(6045), - [anon_sym_EQ_EQ] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_AMP_GT] = ACTIONS(6045), - [anon_sym_AMP_GT_GT] = ACTIONS(6045), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_AMP] = ACTIONS(6045), - [anon_sym_LT_LT] = ACTIONS(6045), - [anon_sym_LT_LT_DASH] = ACTIONS(6045), - [anon_sym_LT_LT_LT] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6045), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2927), + [anon_sym_RBRACE] = ACTIONS(6037), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6045), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), + [sym_word] = ACTIONS(866), }, [2300] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6047), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_EQ] = ACTIONS(4646), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_DOLLAR] = ACTIONS(4646), + [sym_raw_string] = ACTIONS(3422), + [anon_sym_POUND] = ACTIONS(3422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), + [anon_sym_COLON] = ACTIONS(4646), + [anon_sym_COLON_QMARK] = ACTIONS(4646), + [anon_sym_COLON_DASH] = ACTIONS(4646), + [anon_sym_PERCENT] = ACTIONS(4646), + [anon_sym_DASH] = ACTIONS(4646), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), + [anon_sym_BQUOTE] = ACTIONS(3422), + [anon_sym_LT_LPAREN] = ACTIONS(3422), + [anon_sym_GT_LPAREN] = ACTIONS(3422), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(3424), }, [2301] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2929), + [anon_sym_RBRACE] = ACTIONS(6039), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2302] = { + [sym_file_descriptor] = ACTIONS(6041), + [sym__concat] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_EQ_TILDE] = ACTIONS(6043), + [anon_sym_EQ_EQ] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_GT_GT] = ACTIONS(6043), + [anon_sym_AMP_GT] = ACTIONS(6043), + [anon_sym_AMP_GT_GT] = ACTIONS(6043), + [anon_sym_LT_AMP] = ACTIONS(6043), + [anon_sym_GT_AMP] = ACTIONS(6043), + [anon_sym_LT_LT] = ACTIONS(6043), + [anon_sym_LT_LT_DASH] = ACTIONS(6043), + [anon_sym_LT_LT_LT] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6043), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6043), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6043), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), + }, + [2303] = { + [sym_file_descriptor] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [anon_sym_EQ_TILDE] = ACTIONS(6047), + [anon_sym_EQ_EQ] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_GT_GT] = ACTIONS(6047), + [anon_sym_AMP_GT] = ACTIONS(6047), + [anon_sym_AMP_GT_GT] = ACTIONS(6047), + [anon_sym_LT_AMP] = ACTIONS(6047), + [anon_sym_GT_AMP] = ACTIONS(6047), + [anon_sym_LT_LT] = ACTIONS(6047), + [anon_sym_LT_LT_DASH] = ACTIONS(6047), + [anon_sym_LT_LT_LT] = ACTIONS(6047), + [sym__special_characters] = ACTIONS(6047), + [anon_sym_DQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR] = ACTIONS(6047), + [sym_raw_string] = ACTIONS(6047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), + [anon_sym_BQUOTE] = ACTIONS(6047), + [anon_sym_LT_LPAREN] = ACTIONS(6047), + [anon_sym_GT_LPAREN] = ACTIONS(6047), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6047), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), + }, + [2304] = { [sym_file_descriptor] = ACTIONS(6049), [sym__concat] = ACTIONS(6049), [anon_sym_PIPE] = ACTIONS(6051), @@ -63311,71 +63346,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6051), [anon_sym_AMP] = ACTIONS(6051), }, - [2302] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6053), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2305] = { + [sym_file_descriptor] = ACTIONS(6053), + [sym__concat] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [anon_sym_EQ_TILDE] = ACTIONS(6055), + [anon_sym_EQ_EQ] = ACTIONS(6055), + [anon_sym_LT] = ACTIONS(6055), + [anon_sym_GT] = ACTIONS(6055), + [anon_sym_GT_GT] = ACTIONS(6055), + [anon_sym_AMP_GT] = ACTIONS(6055), + [anon_sym_AMP_GT_GT] = ACTIONS(6055), + [anon_sym_LT_AMP] = ACTIONS(6055), + [anon_sym_GT_AMP] = ACTIONS(6055), + [anon_sym_LT_LT] = ACTIONS(6055), + [anon_sym_LT_LT_DASH] = ACTIONS(6055), + [anon_sym_LT_LT_LT] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6055), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(6055), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), }, - [2303] = { - [sym_file_descriptor] = ACTIONS(6055), - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [anon_sym_EQ_TILDE] = ACTIONS(6057), - [anon_sym_EQ_EQ] = ACTIONS(6057), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_GT_GT] = ACTIONS(6057), - [anon_sym_AMP_GT] = ACTIONS(6057), - [anon_sym_AMP_GT_GT] = ACTIONS(6057), - [anon_sym_LT_AMP] = ACTIONS(6057), - [anon_sym_GT_AMP] = ACTIONS(6057), - [anon_sym_LT_LT] = ACTIONS(6057), - [anon_sym_LT_LT_DASH] = ACTIONS(6057), - [anon_sym_LT_LT_LT] = ACTIONS(6057), - [sym__special_characters] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(6057), - [anon_sym_DOLLAR] = ACTIONS(6057), - [sym_raw_string] = ACTIONS(6057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), - [anon_sym_BQUOTE] = ACTIONS(6057), - [anon_sym_LT_LPAREN] = ACTIONS(6057), - [anon_sym_GT_LPAREN] = ACTIONS(6057), + [2306] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6057), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6057), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), + [sym_word] = ACTIONS(866), }, - [2304] = { + [2307] = { [sym_file_descriptor] = ACTIONS(6059), [sym__concat] = ACTIONS(6059), [anon_sym_PIPE] = ACTIONS(6061), @@ -63410,710 +63445,946 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6061), [anon_sym_AMP] = ACTIONS(6061), }, - [2305] = { - [sym_file_descriptor] = ACTIONS(4169), - [sym_variable_name] = ACTIONS(4169), - [anon_sym_PIPE] = ACTIONS(6063), - [anon_sym_RPAREN] = ACTIONS(4169), - [anon_sym_PIPE_AMP] = ACTIONS(4169), - [anon_sym_AMP_AMP] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4169), - [anon_sym_LT] = ACTIONS(6063), - [anon_sym_GT] = ACTIONS(6063), - [anon_sym_GT_GT] = ACTIONS(4169), - [anon_sym_AMP_GT] = ACTIONS(6063), - [anon_sym_AMP_GT_GT] = ACTIONS(4169), - [anon_sym_LT_AMP] = ACTIONS(4169), - [anon_sym_GT_AMP] = ACTIONS(4169), - [sym__special_characters] = ACTIONS(6063), - [anon_sym_DQUOTE] = ACTIONS(4169), - [anon_sym_DOLLAR] = ACTIONS(6063), - [sym_raw_string] = ACTIONS(4169), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4169), - [anon_sym_BQUOTE] = ACTIONS(4169), - [anon_sym_LT_LPAREN] = ACTIONS(4169), - [anon_sym_GT_LPAREN] = ACTIONS(4169), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6063), - }, - [2306] = { - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(3056), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3056), - }, - [2307] = { - [aux_sym_concatenation_repeat1] = STATE(2307), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(6065), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(3056), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3056), - }, [2308] = { - [sym_file_descriptor] = ACTIONS(1923), - [sym__concat] = ACTIONS(1923), - [sym_variable_name] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(1923), - [anon_sym_PIPE_AMP] = ACTIONS(1923), - [anon_sym_AMP_AMP] = ACTIONS(1923), - [anon_sym_PIPE_PIPE] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(1923), - [anon_sym_AMP_GT] = ACTIONS(3061), - [anon_sym_AMP_GT_GT] = ACTIONS(1923), - [anon_sym_LT_AMP] = ACTIONS(1923), - [anon_sym_GT_AMP] = ACTIONS(1923), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(1923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), - [anon_sym_BQUOTE] = ACTIONS(1923), - [anon_sym_LT_LPAREN] = ACTIONS(1923), - [anon_sym_GT_LPAREN] = ACTIONS(1923), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3061), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6063), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2309] = { - [sym_concatenation] = STATE(2928), - [sym_string] = STATE(2927), - [sym_simple_expansion] = STATE(2927), - [sym_string_expansion] = STATE(2927), - [sym_expansion] = STATE(2927), - [sym_command_substitution] = STATE(2927), - [sym_process_substitution] = STATE(2927), - [anon_sym_RBRACE] = ACTIONS(6068), - [sym__special_characters] = ACTIONS(6070), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6072), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6074), + [sym_file_descriptor] = ACTIONS(6065), + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [anon_sym_EQ_TILDE] = ACTIONS(6067), + [anon_sym_EQ_EQ] = ACTIONS(6067), + [anon_sym_LT] = ACTIONS(6067), + [anon_sym_GT] = ACTIONS(6067), + [anon_sym_GT_GT] = ACTIONS(6067), + [anon_sym_AMP_GT] = ACTIONS(6067), + [anon_sym_AMP_GT_GT] = ACTIONS(6067), + [anon_sym_LT_AMP] = ACTIONS(6067), + [anon_sym_GT_AMP] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_LT_LT_DASH] = ACTIONS(6067), + [anon_sym_LT_LT_LT] = ACTIONS(6067), + [sym__special_characters] = ACTIONS(6067), + [anon_sym_DQUOTE] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6067), + [sym_raw_string] = ACTIONS(6067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), + [anon_sym_BQUOTE] = ACTIONS(6067), + [anon_sym_LT_LPAREN] = ACTIONS(6067), + [anon_sym_GT_LPAREN] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6067), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), }, [2310] = { - [sym_file_descriptor] = ACTIONS(1968), - [sym__concat] = ACTIONS(1968), - [sym_variable_name] = ACTIONS(1968), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6069), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2311] = { + [sym_file_descriptor] = ACTIONS(6071), + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [anon_sym_EQ_TILDE] = ACTIONS(6073), + [anon_sym_EQ_EQ] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_GT_GT] = ACTIONS(6073), + [anon_sym_AMP_GT] = ACTIONS(6073), + [anon_sym_AMP_GT_GT] = ACTIONS(6073), + [anon_sym_LT_AMP] = ACTIONS(6073), + [anon_sym_GT_AMP] = ACTIONS(6073), + [anon_sym_LT_LT] = ACTIONS(6073), + [anon_sym_LT_LT_DASH] = ACTIONS(6073), + [anon_sym_LT_LT_LT] = ACTIONS(6073), + [sym__special_characters] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR] = ACTIONS(6073), + [sym_raw_string] = ACTIONS(6073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), + [anon_sym_BQUOTE] = ACTIONS(6073), + [anon_sym_LT_LPAREN] = ACTIONS(6073), + [anon_sym_GT_LPAREN] = ACTIONS(6073), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6073), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), + }, + [2312] = { + [sym_file_descriptor] = ACTIONS(6075), + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [anon_sym_EQ_TILDE] = ACTIONS(6077), + [anon_sym_EQ_EQ] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_AMP_GT] = ACTIONS(6077), + [anon_sym_AMP_GT_GT] = ACTIONS(6077), + [anon_sym_LT_AMP] = ACTIONS(6077), + [anon_sym_GT_AMP] = ACTIONS(6077), + [anon_sym_LT_LT] = ACTIONS(6077), + [anon_sym_LT_LT_DASH] = ACTIONS(6077), + [anon_sym_LT_LT_LT] = ACTIONS(6077), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), + [anon_sym_BQUOTE] = ACTIONS(6077), + [anon_sym_LT_LPAREN] = ACTIONS(6077), + [anon_sym_GT_LPAREN] = ACTIONS(6077), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6077), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), + }, + [2313] = { + [sym_file_descriptor] = ACTIONS(4181), + [sym_variable_name] = ACTIONS(4181), + [anon_sym_PIPE] = ACTIONS(6079), + [anon_sym_RPAREN] = ACTIONS(4181), + [anon_sym_PIPE_AMP] = ACTIONS(4181), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [anon_sym_LT] = ACTIONS(6079), + [anon_sym_GT] = ACTIONS(6079), + [anon_sym_GT_GT] = ACTIONS(4181), + [anon_sym_AMP_GT] = ACTIONS(6079), + [anon_sym_AMP_GT_GT] = ACTIONS(4181), + [anon_sym_LT_AMP] = ACTIONS(4181), + [anon_sym_GT_AMP] = ACTIONS(4181), + [sym__special_characters] = ACTIONS(6079), + [anon_sym_DQUOTE] = ACTIONS(4181), + [anon_sym_DOLLAR] = ACTIONS(6079), + [sym_raw_string] = ACTIONS(4181), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4181), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4181), + [anon_sym_BQUOTE] = ACTIONS(4181), + [anon_sym_LT_LPAREN] = ACTIONS(4181), + [anon_sym_GT_LPAREN] = ACTIONS(4181), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6079), + }, + [2314] = { + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(3066), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3066), + }, + [2315] = { + [aux_sym_concatenation_repeat1] = STATE(2315), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(6081), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(3066), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3066), + }, + [2316] = { + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [sym_variable_name] = ACTIONS(1927), [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1968), - [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), [anon_sym_LT] = ACTIONS(3071), [anon_sym_GT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(1968), + [anon_sym_GT_GT] = ACTIONS(1927), [anon_sym_AMP_GT] = ACTIONS(3071), - [anon_sym_AMP_GT_GT] = ACTIONS(1968), - [anon_sym_LT_AMP] = ACTIONS(1968), - [anon_sym_GT_AMP] = ACTIONS(1968), + [anon_sym_AMP_GT_GT] = ACTIONS(1927), + [anon_sym_LT_AMP] = ACTIONS(1927), + [anon_sym_GT_AMP] = ACTIONS(1927), [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1927), [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(3071), }, - [2311] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6076), - }, - [2312] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6078), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2313] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(6080), - [sym_comment] = ACTIONS(56), - }, - [2314] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2934), - [anon_sym_RBRACE] = ACTIONS(6082), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6084), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2315] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2937), - [anon_sym_RBRACE] = ACTIONS(6086), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6088), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2316] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2939), - [anon_sym_RBRACE] = ACTIONS(6068), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6090), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [2317] = { - [sym_file_descriptor] = ACTIONS(2022), - [sym__concat] = ACTIONS(2022), - [sym_variable_name] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(2022), - [anon_sym_PIPE_AMP] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(2022), - [anon_sym_AMP_GT] = ACTIONS(3089), - [anon_sym_AMP_GT_GT] = ACTIONS(2022), - [anon_sym_LT_AMP] = ACTIONS(2022), - [anon_sym_GT_AMP] = ACTIONS(2022), - [sym__special_characters] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(3089), - [sym_raw_string] = ACTIONS(2022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_BQUOTE] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2022), - [anon_sym_GT_LPAREN] = ACTIONS(2022), + [sym_concatenation] = STATE(2936), + [sym_string] = STATE(2935), + [sym_simple_expansion] = STATE(2935), + [sym_string_expansion] = STATE(2935), + [sym_expansion] = STATE(2935), + [sym_command_substitution] = STATE(2935), + [sym_process_substitution] = STATE(2935), + [anon_sym_RBRACE] = ACTIONS(6084), + [sym__special_characters] = ACTIONS(6086), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6088), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3089), + [sym_word] = ACTIONS(6090), }, [2318] = { + [sym_file_descriptor] = ACTIONS(1972), + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(3081), + [anon_sym_RPAREN] = ACTIONS(1972), + [anon_sym_PIPE_AMP] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_PIPE_PIPE] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3081), + [anon_sym_GT_GT] = ACTIONS(1972), + [anon_sym_AMP_GT] = ACTIONS(3081), + [anon_sym_AMP_GT_GT] = ACTIONS(1972), + [anon_sym_LT_AMP] = ACTIONS(1972), + [anon_sym_GT_AMP] = ACTIONS(1972), + [sym__special_characters] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(3081), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [anon_sym_LT_LPAREN] = ACTIONS(1972), + [anon_sym_GT_LPAREN] = ACTIONS(1972), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3081), + }, + [2319] = { [sym_comment] = ACTIONS(182), [sym_regex_without_right_brace] = ACTIONS(6092), }, - [2319] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6094), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [2320] = { - [sym_file_descriptor] = ACTIONS(2030), - [sym__concat] = ACTIONS(2030), - [sym_variable_name] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(3095), - [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_LT] = ACTIONS(3095), - [anon_sym_GT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(2030), - [anon_sym_AMP_GT] = ACTIONS(3095), - [anon_sym_AMP_GT_GT] = ACTIONS(2030), - [anon_sym_LT_AMP] = ACTIONS(2030), - [anon_sym_GT_AMP] = ACTIONS(2030), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(2030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3095), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6094), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2321] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6096), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(6096), + [sym_comment] = ACTIONS(56), }, [2322] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6068), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2942), + [anon_sym_RBRACE] = ACTIONS(6098), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6100), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2323] = { - [sym_file_descriptor] = ACTIONS(2190), - [sym__concat] = ACTIONS(2190), - [sym_variable_name] = ACTIONS(2190), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2945), + [anon_sym_RBRACE] = ACTIONS(6102), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6104), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2324] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2947), + [anon_sym_RBRACE] = ACTIONS(6084), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6106), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2325] = { + [sym_file_descriptor] = ACTIONS(2026), + [sym__concat] = ACTIONS(2026), + [sym_variable_name] = ACTIONS(2026), [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_PIPE_AMP] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), [anon_sym_LT] = ACTIONS(3099), [anon_sym_GT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2026), [anon_sym_AMP_GT] = ACTIONS(3099), - [anon_sym_AMP_GT_GT] = ACTIONS(2190), - [anon_sym_LT_AMP] = ACTIONS(2190), - [anon_sym_GT_AMP] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2026), + [anon_sym_LT_AMP] = ACTIONS(2026), + [anon_sym_GT_AMP] = ACTIONS(2026), [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), - [anon_sym_BQUOTE] = ACTIONS(2190), - [anon_sym_LT_LPAREN] = ACTIONS(2190), - [anon_sym_GT_LPAREN] = ACTIONS(2190), + [sym_raw_string] = ACTIONS(2026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2026), + [anon_sym_GT_LPAREN] = ACTIONS(2026), [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(3099), }, - [2324] = { - [sym_file_descriptor] = ACTIONS(2396), - [sym__concat] = ACTIONS(2396), - [sym_variable_name] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_RPAREN] = ACTIONS(2396), - [anon_sym_PIPE_AMP] = ACTIONS(2396), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_GT_GT] = ACTIONS(2396), - [anon_sym_AMP_GT] = ACTIONS(3101), - [anon_sym_AMP_GT_GT] = ACTIONS(2396), - [anon_sym_LT_AMP] = ACTIONS(2396), - [anon_sym_GT_AMP] = ACTIONS(2396), - [sym__special_characters] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(3101), - [sym_raw_string] = ACTIONS(2396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_LT_LPAREN] = ACTIONS(2396), - [anon_sym_GT_LPAREN] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3101), - }, - [2325] = { - [sym_do_group] = STATE(2944), - [anon_sym_do] = ACTIONS(6098), - [sym_comment] = ACTIONS(56), - }, [2326] = { - [sym_file_descriptor] = ACTIONS(4295), - [anon_sym_PIPE] = ACTIONS(6100), - [anon_sym_RPAREN] = ACTIONS(4295), - [anon_sym_PIPE_AMP] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_LT] = ACTIONS(6100), - [anon_sym_GT] = ACTIONS(6100), - [anon_sym_GT_GT] = ACTIONS(4295), - [anon_sym_AMP_GT] = ACTIONS(6100), - [anon_sym_AMP_GT_GT] = ACTIONS(4295), - [anon_sym_LT_AMP] = ACTIONS(4295), - [anon_sym_GT_AMP] = ACTIONS(4295), - [anon_sym_LT_LT] = ACTIONS(6100), - [anon_sym_LT_LT_DASH] = ACTIONS(4295), - [anon_sym_LT_LT_LT] = ACTIONS(4295), - [anon_sym_BQUOTE] = ACTIONS(4295), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6108), }, [2327] = { - [anon_sym_PIPE] = ACTIONS(6102), - [anon_sym_RPAREN] = ACTIONS(6104), - [anon_sym_PIPE_AMP] = ACTIONS(6104), - [anon_sym_AMP_AMP] = ACTIONS(6104), - [anon_sym_PIPE_PIPE] = ACTIONS(6104), - [anon_sym_BQUOTE] = ACTIONS(6104), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6110), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2328] = { - [anon_sym_fi] = ACTIONS(6106), + [sym_file_descriptor] = ACTIONS(2034), + [sym__concat] = ACTIONS(2034), + [sym_variable_name] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_RPAREN] = ACTIONS(2034), + [anon_sym_PIPE_AMP] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_PIPE_PIPE] = ACTIONS(2034), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_GT] = ACTIONS(3105), + [anon_sym_GT_GT] = ACTIONS(2034), + [anon_sym_AMP_GT] = ACTIONS(3105), + [anon_sym_AMP_GT_GT] = ACTIONS(2034), + [anon_sym_LT_AMP] = ACTIONS(2034), + [anon_sym_GT_AMP] = ACTIONS(2034), + [sym__special_characters] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(3105), + [sym_raw_string] = ACTIONS(2034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), + [anon_sym_BQUOTE] = ACTIONS(2034), + [anon_sym_LT_LPAREN] = ACTIONS(2034), + [anon_sym_GT_LPAREN] = ACTIONS(2034), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3105), }, [2329] = { - [sym_elif_clause] = STATE(701), - [sym_else_clause] = STATE(2946), - [aux_sym_if_statement_repeat1] = STATE(1322), - [anon_sym_fi] = ACTIONS(6106), - [anon_sym_elif] = ACTIONS(2691), - [anon_sym_else] = ACTIONS(2693), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6112), }, [2330] = { - [anon_sym_PIPE] = ACTIONS(6108), - [anon_sym_RPAREN] = ACTIONS(6110), - [anon_sym_PIPE_AMP] = ACTIONS(6110), - [anon_sym_AMP_AMP] = ACTIONS(6110), - [anon_sym_PIPE_PIPE] = ACTIONS(6110), - [anon_sym_BQUOTE] = ACTIONS(6110), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6084), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2331] = { - [anon_sym_esac] = ACTIONS(6112), + [sym_file_descriptor] = ACTIONS(2196), + [sym__concat] = ACTIONS(2196), + [sym_variable_name] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(3109), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(3109), + [anon_sym_GT] = ACTIONS(3109), + [anon_sym_GT_GT] = ACTIONS(2196), + [anon_sym_AMP_GT] = ACTIONS(3109), + [anon_sym_AMP_GT_GT] = ACTIONS(2196), + [anon_sym_LT_AMP] = ACTIONS(2196), + [anon_sym_GT_AMP] = ACTIONS(2196), + [sym__special_characters] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(3109), + [sym_raw_string] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3109), }, [2332] = { - [sym_case_item] = STATE(1332), - [sym_last_case_item] = STATE(2948), - [sym_concatenation] = STATE(1334), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_string_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [aux_sym_case_statement_repeat1] = STATE(2011), - [sym__special_characters] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), + [sym_file_descriptor] = ACTIONS(2402), + [sym__concat] = ACTIONS(2402), + [sym_variable_name] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_PIPE_AMP] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3111), + [anon_sym_GT_GT] = ACTIONS(2402), + [anon_sym_AMP_GT] = ACTIONS(3111), + [anon_sym_AMP_GT_GT] = ACTIONS(2402), + [anon_sym_LT_AMP] = ACTIONS(2402), + [anon_sym_GT_AMP] = ACTIONS(2402), + [sym__special_characters] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(3111), + [sym_raw_string] = ACTIONS(2402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), + [anon_sym_BQUOTE] = ACTIONS(2402), + [anon_sym_LT_LPAREN] = ACTIONS(2402), + [anon_sym_GT_LPAREN] = ACTIONS(2402), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4352), + [sym_word] = ACTIONS(3111), }, [2333] = { - [sym_case_item] = STATE(1332), - [sym_last_case_item] = STATE(2948), - [sym_concatenation] = STATE(1334), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_string_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [aux_sym_case_statement_repeat1] = STATE(2950), - [anon_sym_esac] = ACTIONS(6114), - [sym__special_characters] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), + [sym_do_group] = STATE(2951), + [anon_sym_do] = ACTIONS(3456), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2713), }, [2334] = { - [anon_sym_PIPE] = ACTIONS(6116), - [anon_sym_RPAREN] = ACTIONS(6118), - [anon_sym_PIPE_AMP] = ACTIONS(6118), - [anon_sym_AMP_AMP] = ACTIONS(6118), - [anon_sym_PIPE_PIPE] = ACTIONS(6118), - [anon_sym_BQUOTE] = ACTIONS(6118), + [anon_sym_PIPE] = ACTIONS(4951), + [anon_sym_RPAREN] = ACTIONS(2679), + [anon_sym_PIPE_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_BQUOTE] = ACTIONS(2679), [sym_comment] = ACTIONS(56), }, [2335] = { - [anon_sym_esac] = ACTIONS(6120), + [sym__terminated_statement] = STATE(694), + [sym_for_statement] = STATE(695), + [sym_while_statement] = STATE(695), + [sym_if_statement] = STATE(695), + [sym_case_statement] = STATE(695), + [sym_function_definition] = STATE(695), + [sym_subshell] = STATE(695), + [sym_pipeline] = STATE(695), + [sym_list] = STATE(695), + [sym_command] = STATE(695), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(695), + [sym_variable_assignment] = STATE(696), + [sym_declaration_command] = STATE(695), + [sym_unset_command] = STATE(695), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(1317), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_done] = ACTIONS(6114), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), }, [2336] = { - [sym_case_item] = STATE(1332), - [sym_last_case_item] = STATE(2952), - [sym_concatenation] = STATE(1334), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_string_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [aux_sym_case_statement_repeat1] = STATE(2011), - [sym__special_characters] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), + [sym_file_descriptor] = ACTIONS(4307), + [anon_sym_PIPE] = ACTIONS(6116), + [anon_sym_RPAREN] = ACTIONS(4307), + [anon_sym_PIPE_AMP] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_LT] = ACTIONS(6116), + [anon_sym_GT] = ACTIONS(6116), + [anon_sym_GT_GT] = ACTIONS(4307), + [anon_sym_AMP_GT] = ACTIONS(6116), + [anon_sym_AMP_GT_GT] = ACTIONS(4307), + [anon_sym_LT_AMP] = ACTIONS(4307), + [anon_sym_GT_AMP] = ACTIONS(4307), + [anon_sym_LT_LT] = ACTIONS(6116), + [anon_sym_LT_LT_DASH] = ACTIONS(4307), + [anon_sym_LT_LT_LT] = ACTIONS(4307), + [anon_sym_BQUOTE] = ACTIONS(4307), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4352), }, [2337] = { - [sym_case_item] = STATE(1332), - [sym_last_case_item] = STATE(2952), - [sym_concatenation] = STATE(1334), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_string_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [aux_sym_case_statement_repeat1] = STATE(2954), - [anon_sym_esac] = ACTIONS(6122), - [sym__special_characters] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(6118), + [anon_sym_RPAREN] = ACTIONS(6120), + [anon_sym_PIPE_AMP] = ACTIONS(6120), + [anon_sym_AMP_AMP] = ACTIONS(6120), + [anon_sym_PIPE_PIPE] = ACTIONS(6120), + [anon_sym_BQUOTE] = ACTIONS(6120), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(2713), }, [2338] = { - [sym_file_redirect] = STATE(2955), - [sym_file_descriptor] = ACTIONS(3466), + [anon_sym_fi] = ACTIONS(6122), + [sym_comment] = ACTIONS(56), + }, + [2339] = { + [sym_elif_clause] = STATE(704), + [sym_else_clause] = STATE(2954), + [aux_sym_if_statement_repeat1] = STATE(1328), + [anon_sym_fi] = ACTIONS(6122), + [anon_sym_elif] = ACTIONS(2701), + [anon_sym_else] = ACTIONS(2703), + [sym_comment] = ACTIONS(56), + }, + [2340] = { [anon_sym_PIPE] = ACTIONS(6124), [anon_sym_RPAREN] = ACTIONS(6126), [anon_sym_PIPE_AMP] = ACTIONS(6126), [anon_sym_AMP_AMP] = ACTIONS(6126), [anon_sym_PIPE_PIPE] = ACTIONS(6126), - [anon_sym_LT] = ACTIONS(3472), - [anon_sym_GT] = ACTIONS(3472), - [anon_sym_GT_GT] = ACTIONS(3474), - [anon_sym_AMP_GT] = ACTIONS(3472), - [anon_sym_AMP_GT_GT] = ACTIONS(3474), - [anon_sym_LT_AMP] = ACTIONS(3474), - [anon_sym_GT_AMP] = ACTIONS(3474), + [anon_sym_BQUOTE] = ACTIONS(6126), [sym_comment] = ACTIONS(56), }, - [2339] = { - [sym_file_descriptor] = ACTIONS(4390), - [anon_sym_PIPE] = ACTIONS(6128), - [anon_sym_RPAREN] = ACTIONS(4390), - [anon_sym_PIPE_AMP] = ACTIONS(4390), - [anon_sym_AMP_AMP] = ACTIONS(4390), - [anon_sym_PIPE_PIPE] = ACTIONS(4390), - [anon_sym_LT] = ACTIONS(6128), - [anon_sym_GT] = ACTIONS(6128), - [anon_sym_GT_GT] = ACTIONS(4390), - [anon_sym_AMP_GT] = ACTIONS(6128), - [anon_sym_AMP_GT_GT] = ACTIONS(4390), - [anon_sym_LT_AMP] = ACTIONS(4390), - [anon_sym_GT_AMP] = ACTIONS(4390), - [anon_sym_BQUOTE] = ACTIONS(4390), - [sym_comment] = ACTIONS(56), - }, - [2340] = { - [sym_concatenation] = STATE(2958), - [sym_string] = STATE(2957), - [sym_simple_expansion] = STATE(2957), - [sym_string_expansion] = STATE(2957), - [sym_expansion] = STATE(2957), - [sym_command_substitution] = STATE(2957), - [sym_process_substitution] = STATE(2957), - [sym__special_characters] = ACTIONS(6130), - [anon_sym_DQUOTE] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4969), - [sym_raw_string] = ACTIONS(6132), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4975), - [anon_sym_BQUOTE] = ACTIONS(4977), - [anon_sym_LT_LPAREN] = ACTIONS(4979), - [anon_sym_GT_LPAREN] = ACTIONS(4979), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6134), - }, [2341] = { - [aux_sym_concatenation_repeat1] = STATE(2960), - [sym__concat] = ACTIONS(6136), - [anon_sym_PIPE] = ACTIONS(758), - [anon_sym_RPAREN] = ACTIONS(754), - [anon_sym_PIPE_AMP] = ACTIONS(754), - [anon_sym_AMP_AMP] = ACTIONS(754), - [anon_sym_PIPE_PIPE] = ACTIONS(754), + [anon_sym_esac] = ACTIONS(6128), [sym_comment] = ACTIONS(56), }, [2342] = { + [sym_case_item] = STATE(1338), + [sym_last_case_item] = STATE(2956), + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(1333), + [sym_simple_expansion] = STATE(1333), + [sym_string_expansion] = STATE(1333), + [sym_expansion] = STATE(1333), + [sym_command_substitution] = STATE(1333), + [sym_process_substitution] = STATE(1333), + [aux_sym_case_statement_repeat1] = STATE(2019), + [sym__special_characters] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(2713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4364), + }, + [2343] = { + [sym_case_item] = STATE(1338), + [sym_last_case_item] = STATE(2956), + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(1333), + [sym_simple_expansion] = STATE(1333), + [sym_string_expansion] = STATE(1333), + [sym_expansion] = STATE(1333), + [sym_command_substitution] = STATE(1333), + [sym_process_substitution] = STATE(1333), + [aux_sym_case_statement_repeat1] = STATE(2958), + [anon_sym_esac] = ACTIONS(6130), + [sym__special_characters] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(2713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2723), + }, + [2344] = { + [anon_sym_PIPE] = ACTIONS(6132), + [anon_sym_RPAREN] = ACTIONS(6134), + [anon_sym_PIPE_AMP] = ACTIONS(6134), + [anon_sym_AMP_AMP] = ACTIONS(6134), + [anon_sym_PIPE_PIPE] = ACTIONS(6134), + [anon_sym_BQUOTE] = ACTIONS(6134), + [sym_comment] = ACTIONS(56), + }, + [2345] = { + [anon_sym_esac] = ACTIONS(6136), + [sym_comment] = ACTIONS(56), + }, + [2346] = { + [sym_case_item] = STATE(1338), + [sym_last_case_item] = STATE(2960), + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(1333), + [sym_simple_expansion] = STATE(1333), + [sym_string_expansion] = STATE(1333), + [sym_expansion] = STATE(1333), + [sym_command_substitution] = STATE(1333), + [sym_process_substitution] = STATE(1333), + [aux_sym_case_statement_repeat1] = STATE(2019), + [sym__special_characters] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(2713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4364), + }, + [2347] = { + [sym_case_item] = STATE(1338), + [sym_last_case_item] = STATE(2960), + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(1333), + [sym_simple_expansion] = STATE(1333), + [sym_string_expansion] = STATE(1333), + [sym_expansion] = STATE(1333), + [sym_command_substitution] = STATE(1333), + [sym_process_substitution] = STATE(1333), + [aux_sym_case_statement_repeat1] = STATE(2962), + [anon_sym_esac] = ACTIONS(6138), + [sym__special_characters] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(2713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(2723), + }, + [2348] = { + [sym_file_redirect] = STATE(2963), + [sym_file_descriptor] = ACTIONS(3478), + [anon_sym_PIPE] = ACTIONS(6140), + [anon_sym_RPAREN] = ACTIONS(6142), + [anon_sym_PIPE_AMP] = ACTIONS(6142), + [anon_sym_AMP_AMP] = ACTIONS(6142), + [anon_sym_PIPE_PIPE] = ACTIONS(6142), + [anon_sym_LT] = ACTIONS(3484), + [anon_sym_GT] = ACTIONS(3484), + [anon_sym_GT_GT] = ACTIONS(3486), + [anon_sym_AMP_GT] = ACTIONS(3484), + [anon_sym_AMP_GT_GT] = ACTIONS(3486), + [anon_sym_LT_AMP] = ACTIONS(3486), + [anon_sym_GT_AMP] = ACTIONS(3486), + [sym_comment] = ACTIONS(56), + }, + [2349] = { + [sym_file_descriptor] = ACTIONS(4402), + [anon_sym_PIPE] = ACTIONS(6144), + [anon_sym_RPAREN] = ACTIONS(4402), + [anon_sym_PIPE_AMP] = ACTIONS(4402), + [anon_sym_AMP_AMP] = ACTIONS(4402), + [anon_sym_PIPE_PIPE] = ACTIONS(4402), + [anon_sym_LT] = ACTIONS(6144), + [anon_sym_GT] = ACTIONS(6144), + [anon_sym_GT_GT] = ACTIONS(4402), + [anon_sym_AMP_GT] = ACTIONS(6144), + [anon_sym_AMP_GT_GT] = ACTIONS(4402), + [anon_sym_LT_AMP] = ACTIONS(4402), + [anon_sym_GT_AMP] = ACTIONS(4402), + [anon_sym_BQUOTE] = ACTIONS(4402), + [sym_comment] = ACTIONS(56), + }, + [2350] = { + [sym_concatenation] = STATE(2966), + [sym_string] = STATE(2965), + [sym_simple_expansion] = STATE(2965), + [sym_string_expansion] = STATE(2965), + [sym_expansion] = STATE(2965), + [sym_command_substitution] = STATE(2965), + [sym_process_substitution] = STATE(2965), + [sym__special_characters] = ACTIONS(6146), + [anon_sym_DQUOTE] = ACTIONS(4985), + [anon_sym_DOLLAR] = ACTIONS(4987), + [sym_raw_string] = ACTIONS(6148), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4991), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4993), + [anon_sym_BQUOTE] = ACTIONS(4995), + [anon_sym_LT_LPAREN] = ACTIONS(4997), + [anon_sym_GT_LPAREN] = ACTIONS(4997), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6150), + }, + [2351] = { + [aux_sym_concatenation_repeat1] = STATE(2968), + [sym__concat] = ACTIONS(6152), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(756), + [anon_sym_PIPE_AMP] = ACTIONS(756), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [sym_comment] = ACTIONS(56), + }, + [2352] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(2962), - [anon_sym_DQUOTE] = ACTIONS(6138), + [aux_sym_string_repeat1] = STATE(2970), + [anon_sym_DQUOTE] = ACTIONS(6154), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -64121,60 +64392,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [2343] = { - [sym_string] = STATE(2964), - [anon_sym_DQUOTE] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(6140), - [sym_raw_string] = ACTIONS(6142), - [anon_sym_POUND] = ACTIONS(6140), - [anon_sym_DASH] = ACTIONS(6140), + [2353] = { + [sym_string] = STATE(2972), + [anon_sym_DQUOTE] = ACTIONS(4985), + [anon_sym_DOLLAR] = ACTIONS(6156), + [sym_raw_string] = ACTIONS(6158), + [anon_sym_POUND] = ACTIONS(6156), + [anon_sym_DASH] = ACTIONS(6156), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6144), - [anon_sym_STAR] = ACTIONS(6140), - [anon_sym_AT] = ACTIONS(6140), - [anon_sym_QMARK] = ACTIONS(6140), - [anon_sym_0] = ACTIONS(6146), - [anon_sym__] = ACTIONS(6146), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6160), + [anon_sym_STAR] = ACTIONS(6156), + [anon_sym_AT] = ACTIONS(6156), + [anon_sym_QMARK] = ACTIONS(6156), + [anon_sym_0] = ACTIONS(6162), + [anon_sym__] = ACTIONS(6162), }, - [2344] = { - [aux_sym_concatenation_repeat1] = STATE(2960), - [sym__concat] = ACTIONS(6136), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(770), - [anon_sym_PIPE_AMP] = ACTIONS(770), - [anon_sym_AMP_AMP] = ACTIONS(770), - [anon_sym_PIPE_PIPE] = ACTIONS(770), + [2354] = { + [aux_sym_concatenation_repeat1] = STATE(2968), + [sym__concat] = ACTIONS(6152), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), [sym_comment] = ACTIONS(56), }, - [2345] = { - [sym_subscript] = STATE(2970), - [sym_variable_name] = ACTIONS(6148), - [anon_sym_DOLLAR] = ACTIONS(6150), - [anon_sym_POUND] = ACTIONS(6152), - [anon_sym_DASH] = ACTIONS(6150), + [2355] = { + [sym_subscript] = STATE(2978), + [sym_variable_name] = ACTIONS(6164), + [anon_sym_DOLLAR] = ACTIONS(6166), + [anon_sym_POUND] = ACTIONS(6168), + [anon_sym_DASH] = ACTIONS(6166), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6154), - [anon_sym_STAR] = ACTIONS(6150), - [anon_sym_AT] = ACTIONS(6150), - [anon_sym_QMARK] = ACTIONS(6150), - [anon_sym_0] = ACTIONS(6156), - [anon_sym__] = ACTIONS(6156), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6170), + [anon_sym_STAR] = ACTIONS(6166), + [anon_sym_AT] = ACTIONS(6166), + [anon_sym_QMARK] = ACTIONS(6166), + [anon_sym_0] = ACTIONS(6172), + [anon_sym__] = ACTIONS(6172), }, - [2346] = { - [sym_for_statement] = STATE(2971), - [sym_while_statement] = STATE(2971), - [sym_if_statement] = STATE(2971), - [sym_case_statement] = STATE(2971), - [sym_function_definition] = STATE(2971), - [sym_subshell] = STATE(2971), - [sym_pipeline] = STATE(2971), - [sym_list] = STATE(2971), - [sym_command] = STATE(2971), + [2356] = { + [sym_for_statement] = STATE(2979), + [sym_while_statement] = STATE(2979), + [sym_if_statement] = STATE(2979), + [sym_case_statement] = STATE(2979), + [sym_function_definition] = STATE(2979), + [sym_subshell] = STATE(2979), + [sym_pipeline] = STATE(2979), + [sym_list] = STATE(2979), + [sym_command] = STATE(2979), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(2971), - [sym_variable_assignment] = STATE(2972), - [sym_declaration_command] = STATE(2971), - [sym_unset_command] = STATE(2971), + [sym_bracket_command] = STATE(2979), + [sym_variable_assignment] = STATE(2980), + [sym_declaration_command] = STATE(2979), + [sym_unset_command] = STATE(2979), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -64221,21 +64492,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [2347] = { - [sym_for_statement] = STATE(2973), - [sym_while_statement] = STATE(2973), - [sym_if_statement] = STATE(2973), - [sym_case_statement] = STATE(2973), - [sym_function_definition] = STATE(2973), - [sym_subshell] = STATE(2973), - [sym_pipeline] = STATE(2973), - [sym_list] = STATE(2973), - [sym_command] = STATE(2973), + [2357] = { + [sym_for_statement] = STATE(2981), + [sym_while_statement] = STATE(2981), + [sym_if_statement] = STATE(2981), + [sym_case_statement] = STATE(2981), + [sym_function_definition] = STATE(2981), + [sym_subshell] = STATE(2981), + [sym_pipeline] = STATE(2981), + [sym_list] = STATE(2981), + [sym_command] = STATE(2981), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(2973), - [sym_variable_assignment] = STATE(2974), - [sym_declaration_command] = STATE(2973), - [sym_unset_command] = STATE(2973), + [sym_bracket_command] = STATE(2981), + [sym_variable_assignment] = STATE(2982), + [sym_declaration_command] = STATE(2981), + [sym_unset_command] = STATE(2981), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -64282,21 +64553,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [2348] = { - [sym_for_statement] = STATE(2975), - [sym_while_statement] = STATE(2975), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym_function_definition] = STATE(2975), - [sym_subshell] = STATE(2975), - [sym_pipeline] = STATE(2975), - [sym_list] = STATE(2975), - [sym_command] = STATE(2975), + [2358] = { + [sym_for_statement] = STATE(2983), + [sym_while_statement] = STATE(2983), + [sym_if_statement] = STATE(2983), + [sym_case_statement] = STATE(2983), + [sym_function_definition] = STATE(2983), + [sym_subshell] = STATE(2983), + [sym_pipeline] = STATE(2983), + [sym_list] = STATE(2983), + [sym_command] = STATE(2983), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(2975), - [sym_variable_assignment] = STATE(2976), - [sym_declaration_command] = STATE(2975), - [sym_unset_command] = STATE(2975), + [sym_bracket_command] = STATE(2983), + [sym_variable_assignment] = STATE(2984), + [sym_declaration_command] = STATE(2983), + [sym_unset_command] = STATE(2983), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -64343,910 +64614,804 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [2349] = { - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_RPAREN] = ACTIONS(770), - [anon_sym_PIPE_AMP] = ACTIONS(770), - [anon_sym_AMP_AMP] = ACTIONS(770), - [anon_sym_PIPE_PIPE] = ACTIONS(770), - [anon_sym_BQUOTE] = ACTIONS(770), - [sym_comment] = ACTIONS(56), - }, - [2350] = { - [anon_sym_PIPE] = ACTIONS(6158), - [anon_sym_RPAREN] = ACTIONS(6160), - [anon_sym_PIPE_AMP] = ACTIONS(6160), - [anon_sym_AMP_AMP] = ACTIONS(6160), - [anon_sym_PIPE_PIPE] = ACTIONS(6160), - [anon_sym_BQUOTE] = ACTIONS(6160), - [sym_comment] = ACTIONS(56), - }, - [2351] = { - [sym_variable_name] = ACTIONS(2557), - [anon_sym_PIPE] = ACTIONS(4895), - [anon_sym_RPAREN] = ACTIONS(2557), - [anon_sym_PIPE_AMP] = ACTIONS(2557), - [anon_sym_AMP_AMP] = ACTIONS(2557), - [anon_sym_PIPE_PIPE] = ACTIONS(2557), - [sym__special_characters] = ACTIONS(4895), - [anon_sym_DQUOTE] = ACTIONS(2557), - [anon_sym_DOLLAR] = ACTIONS(4895), - [sym_raw_string] = ACTIONS(2557), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2557), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2557), - [anon_sym_BQUOTE] = ACTIONS(2557), - [anon_sym_LT_LPAREN] = ACTIONS(2557), - [anon_sym_GT_LPAREN] = ACTIONS(2557), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4895), - [sym_word] = ACTIONS(2559), - }, - [2352] = { - [sym_concatenation] = STATE(660), - [sym_string] = STATE(655), - [sym_simple_expansion] = STATE(655), - [sym_string_expansion] = STATE(655), - [sym_expansion] = STATE(655), - [sym_command_substitution] = STATE(655), - [sym_process_substitution] = STATE(655), - [aux_sym_for_statement_repeat1] = STATE(1269), - [anon_sym_RPAREN] = ACTIONS(6162), - [sym__special_characters] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1287), - [sym_raw_string] = ACTIONS(1289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LT_LPAREN] = ACTIONS(1297), - [anon_sym_GT_LPAREN] = ACTIONS(1297), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1299), - }, - [2353] = { - [sym__concat] = ACTIONS(3283), - [sym_variable_name] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(4602), - [anon_sym_RPAREN] = ACTIONS(3283), - [anon_sym_PIPE_AMP] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [sym__special_characters] = ACTIONS(4602), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(4602), - [sym_raw_string] = ACTIONS(3283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), - [anon_sym_BQUOTE] = ACTIONS(3283), - [anon_sym_LT_LPAREN] = ACTIONS(3283), - [anon_sym_GT_LPAREN] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4602), - [sym_word] = ACTIONS(3285), - }, - [2354] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6164), - [sym_comment] = ACTIONS(56), - }, - [2355] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6166), - [sym_comment] = ACTIONS(56), - }, - [2356] = { - [anon_sym_RBRACE] = ACTIONS(6166), - [sym_comment] = ACTIONS(56), - }, - [2357] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2981), - [anon_sym_RBRACE] = ACTIONS(6168), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2358] = { - [sym__concat] = ACTIONS(3347), - [sym_variable_name] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_RPAREN] = ACTIONS(3347), - [anon_sym_PIPE_AMP] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [sym__special_characters] = ACTIONS(4610), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(3347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), - [anon_sym_BQUOTE] = ACTIONS(3347), - [anon_sym_LT_LPAREN] = ACTIONS(3347), - [anon_sym_GT_LPAREN] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4610), - [sym_word] = ACTIONS(3349), - }, [2359] = { - [sym_concatenation] = STATE(2984), - [sym_string] = STATE(2983), - [sym_simple_expansion] = STATE(2983), - [sym_string_expansion] = STATE(2983), - [sym_expansion] = STATE(2983), - [sym_command_substitution] = STATE(2983), - [sym_process_substitution] = STATE(2983), - [anon_sym_RBRACE] = ACTIONS(6166), - [sym__special_characters] = ACTIONS(6170), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_RPAREN] = ACTIONS(772), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6174), }, [2360] = { - [sym__concat] = ACTIONS(3392), - [sym_variable_name] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(4618), - [anon_sym_RPAREN] = ACTIONS(3392), - [anon_sym_PIPE_AMP] = ACTIONS(3392), - [anon_sym_AMP_AMP] = ACTIONS(3392), - [anon_sym_PIPE_PIPE] = ACTIONS(3392), - [sym__special_characters] = ACTIONS(4618), - [anon_sym_DQUOTE] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(4618), - [sym_raw_string] = ACTIONS(3392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), - [anon_sym_BQUOTE] = ACTIONS(3392), - [anon_sym_LT_LPAREN] = ACTIONS(3392), - [anon_sym_GT_LPAREN] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(6174), + [anon_sym_RPAREN] = ACTIONS(6176), + [anon_sym_PIPE_AMP] = ACTIONS(6176), + [anon_sym_AMP_AMP] = ACTIONS(6176), + [anon_sym_PIPE_PIPE] = ACTIONS(6176), + [anon_sym_BQUOTE] = ACTIONS(6176), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4618), - [sym_word] = ACTIONS(3394), }, [2361] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6176), + [sym_variable_name] = ACTIONS(2563), + [anon_sym_PIPE] = ACTIONS(4907), + [anon_sym_RPAREN] = ACTIONS(2563), + [anon_sym_PIPE_AMP] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2563), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [sym__special_characters] = ACTIONS(4907), + [anon_sym_DQUOTE] = ACTIONS(2563), + [anon_sym_DOLLAR] = ACTIONS(4907), + [sym_raw_string] = ACTIONS(2563), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2563), + [anon_sym_BQUOTE] = ACTIONS(2563), + [anon_sym_LT_LPAREN] = ACTIONS(2563), + [anon_sym_GT_LPAREN] = ACTIONS(2563), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4907), + [sym_word] = ACTIONS(2565), }, [2362] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6178), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(661), + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [aux_sym_for_statement_repeat1] = STATE(1273), + [anon_sym_RPAREN] = ACTIONS(6178), + [sym__special_characters] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1289), + [sym_raw_string] = ACTIONS(1291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), + [anon_sym_BQUOTE] = ACTIONS(1297), + [anon_sym_LT_LPAREN] = ACTIONS(1299), + [anon_sym_GT_LPAREN] = ACTIONS(1299), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1301), }, [2363] = { - [sym__concat] = ACTIONS(3400), - [sym_variable_name] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(4624), - [anon_sym_RPAREN] = ACTIONS(3400), - [anon_sym_PIPE_AMP] = ACTIONS(3400), - [anon_sym_AMP_AMP] = ACTIONS(3400), - [anon_sym_PIPE_PIPE] = ACTIONS(3400), - [sym__special_characters] = ACTIONS(4624), - [anon_sym_DQUOTE] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(4624), - [sym_raw_string] = ACTIONS(3400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), - [anon_sym_BQUOTE] = ACTIONS(3400), - [anon_sym_LT_LPAREN] = ACTIONS(3400), - [anon_sym_GT_LPAREN] = ACTIONS(3400), + [sym__concat] = ACTIONS(3293), + [sym_variable_name] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_PIPE_AMP] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [sym__special_characters] = ACTIONS(4614), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4614), + [sym_raw_string] = ACTIONS(3293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3293), + [anon_sym_LT_LPAREN] = ACTIONS(3293), + [anon_sym_GT_LPAREN] = ACTIONS(3293), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4624), - [sym_word] = ACTIONS(3402), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4614), + [sym_word] = ACTIONS(3295), }, [2364] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6180), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6180), + [sym_comment] = ACTIONS(56), }, [2365] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), [anon_sym_RBRACE] = ACTIONS(6182), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_comment] = ACTIONS(56), }, [2366] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6184), + [anon_sym_RBRACE] = ACTIONS(6182), + [sym_comment] = ACTIONS(56), }, [2367] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6166), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2989), + [anon_sym_RBRACE] = ACTIONS(6184), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2368] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2991), - [anon_sym_RBRACE] = ACTIONS(6186), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(3357), + [sym_variable_name] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(4622), + [anon_sym_RPAREN] = ACTIONS(3357), + [anon_sym_PIPE_AMP] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [sym__special_characters] = ACTIONS(4622), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(4622), + [sym_raw_string] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3357), + [anon_sym_LT_LPAREN] = ACTIONS(3357), + [anon_sym_GT_LPAREN] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4622), + [sym_word] = ACTIONS(3359), }, [2369] = { - [sym__concat] = ACTIONS(3412), - [sym_variable_name] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(4634), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(4634), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(4634), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), + [sym_concatenation] = STATE(2992), + [sym_string] = STATE(2991), + [sym_simple_expansion] = STATE(2991), + [sym_string_expansion] = STATE(2991), + [sym_expansion] = STATE(2991), + [sym_command_substitution] = STATE(2991), + [sym_process_substitution] = STATE(2991), + [anon_sym_RBRACE] = ACTIONS(6182), + [sym__special_characters] = ACTIONS(6186), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6188), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4634), - [sym_word] = ACTIONS(3414), + [sym_word] = ACTIONS(6190), }, [2370] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2993), - [anon_sym_RBRACE] = ACTIONS(6188), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(3402), + [sym_variable_name] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_RPAREN] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(4630), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4630), + [sym_word] = ACTIONS(3404), }, [2371] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(4602), - [anon_sym_RPAREN] = ACTIONS(3283), - [anon_sym_PIPE_AMP] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [sym__special_characters] = ACTIONS(4602), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(4602), - [sym_raw_string] = ACTIONS(3283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), - [anon_sym_BQUOTE] = ACTIONS(3283), - [anon_sym_LT_LPAREN] = ACTIONS(3283), - [anon_sym_GT_LPAREN] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4602), - [sym_word] = ACTIONS(3285), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6192), }, [2372] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6190), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6194), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2373] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6192), + [sym__concat] = ACTIONS(3410), + [sym_variable_name] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(4636), + [anon_sym_RPAREN] = ACTIONS(3410), + [anon_sym_PIPE_AMP] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [sym__special_characters] = ACTIONS(4636), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_DOLLAR] = ACTIONS(4636), + [sym_raw_string] = ACTIONS(3410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), + [anon_sym_BQUOTE] = ACTIONS(3410), + [anon_sym_LT_LPAREN] = ACTIONS(3410), + [anon_sym_GT_LPAREN] = ACTIONS(3410), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4636), + [sym_word] = ACTIONS(3412), }, [2374] = { - [anon_sym_RBRACE] = ACTIONS(6192), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6196), }, [2375] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(2997), - [anon_sym_RBRACE] = ACTIONS(6194), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6198), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2376] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_RPAREN] = ACTIONS(3347), - [anon_sym_PIPE_AMP] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [sym__special_characters] = ACTIONS(4610), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(3347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), - [anon_sym_BQUOTE] = ACTIONS(3347), - [anon_sym_LT_LPAREN] = ACTIONS(3347), - [anon_sym_GT_LPAREN] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4610), - [sym_word] = ACTIONS(3349), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6200), }, [2377] = { - [sym_concatenation] = STATE(3000), - [sym_string] = STATE(2999), - [sym_simple_expansion] = STATE(2999), - [sym_string_expansion] = STATE(2999), - [sym_expansion] = STATE(2999), - [sym_command_substitution] = STATE(2999), - [sym_process_substitution] = STATE(2999), - [anon_sym_RBRACE] = ACTIONS(6192), - [sym__special_characters] = ACTIONS(6196), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6198), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6200), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6182), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2378] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(4618), - [anon_sym_RPAREN] = ACTIONS(3392), - [anon_sym_PIPE_AMP] = ACTIONS(3392), - [anon_sym_AMP_AMP] = ACTIONS(3392), - [anon_sym_PIPE_PIPE] = ACTIONS(3392), - [sym__special_characters] = ACTIONS(4618), - [anon_sym_DQUOTE] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(4618), - [sym_raw_string] = ACTIONS(3392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), - [anon_sym_BQUOTE] = ACTIONS(3392), - [anon_sym_LT_LPAREN] = ACTIONS(3392), - [anon_sym_GT_LPAREN] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4618), - [sym_word] = ACTIONS(3394), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(2999), + [anon_sym_RBRACE] = ACTIONS(6202), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2379] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6202), + [sym__concat] = ACTIONS(3422), + [sym_variable_name] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_PIPE_AMP] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [sym__special_characters] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_DOLLAR] = ACTIONS(4646), + [sym_raw_string] = ACTIONS(3422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), + [anon_sym_BQUOTE] = ACTIONS(3422), + [anon_sym_LT_LPAREN] = ACTIONS(3422), + [anon_sym_GT_LPAREN] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4646), + [sym_word] = ACTIONS(3424), }, [2380] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3001), [anon_sym_RBRACE] = ACTIONS(6204), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2381] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(4624), - [anon_sym_RPAREN] = ACTIONS(3400), - [anon_sym_PIPE_AMP] = ACTIONS(3400), - [anon_sym_AMP_AMP] = ACTIONS(3400), - [anon_sym_PIPE_PIPE] = ACTIONS(3400), - [sym__special_characters] = ACTIONS(4624), - [anon_sym_DQUOTE] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(4624), - [sym_raw_string] = ACTIONS(3400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), - [anon_sym_BQUOTE] = ACTIONS(3400), - [anon_sym_LT_LPAREN] = ACTIONS(3400), - [anon_sym_GT_LPAREN] = ACTIONS(3400), + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_PIPE_AMP] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [sym__special_characters] = ACTIONS(4614), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4614), + [sym_raw_string] = ACTIONS(3293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3293), + [anon_sym_LT_LPAREN] = ACTIONS(3293), + [anon_sym_GT_LPAREN] = ACTIONS(3293), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4624), - [sym_word] = ACTIONS(3402), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4614), + [sym_word] = ACTIONS(3295), }, [2382] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6206), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6206), + [sym_comment] = ACTIONS(56), }, [2383] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), [anon_sym_RBRACE] = ACTIONS(6208), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_comment] = ACTIONS(56), }, [2384] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6210), + [anon_sym_RBRACE] = ACTIONS(6208), + [sym_comment] = ACTIONS(56), }, [2385] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6192), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3005), + [anon_sym_RBRACE] = ACTIONS(6210), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2386] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3007), - [anon_sym_RBRACE] = ACTIONS(6212), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(4622), + [anon_sym_RPAREN] = ACTIONS(3357), + [anon_sym_PIPE_AMP] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [sym__special_characters] = ACTIONS(4622), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(4622), + [sym_raw_string] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3357), + [anon_sym_LT_LPAREN] = ACTIONS(3357), + [anon_sym_GT_LPAREN] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4622), + [sym_word] = ACTIONS(3359), }, [2387] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(4634), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(4634), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(4634), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), + [sym_concatenation] = STATE(3008), + [sym_string] = STATE(3007), + [sym_simple_expansion] = STATE(3007), + [sym_string_expansion] = STATE(3007), + [sym_expansion] = STATE(3007), + [sym_command_substitution] = STATE(3007), + [sym_process_substitution] = STATE(3007), + [anon_sym_RBRACE] = ACTIONS(6208), + [sym__special_characters] = ACTIONS(6212), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6214), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4634), - [sym_word] = ACTIONS(3414), + [sym_word] = ACTIONS(6216), }, [2388] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3009), - [anon_sym_RBRACE] = ACTIONS(6214), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_RPAREN] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(4630), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4630), + [sym_word] = ACTIONS(3404), }, [2389] = { - [sym_file_descriptor] = ACTIONS(4790), - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_PIPE_AMP] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [anon_sym_EQ_TILDE] = ACTIONS(5844), - [anon_sym_EQ_EQ] = ACTIONS(5844), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_GT_GT] = ACTIONS(4790), - [anon_sym_AMP_GT] = ACTIONS(5844), - [anon_sym_AMP_GT_GT] = ACTIONS(4790), - [anon_sym_LT_AMP] = ACTIONS(4790), - [anon_sym_GT_AMP] = ACTIONS(4790), - [anon_sym_LT_LT] = ACTIONS(5844), - [anon_sym_LT_LT_DASH] = ACTIONS(4790), - [anon_sym_LT_LT_LT] = ACTIONS(4790), - [sym__special_characters] = ACTIONS(5844), - [anon_sym_DQUOTE] = ACTIONS(4790), - [anon_sym_DOLLAR] = ACTIONS(5844), - [sym_raw_string] = ACTIONS(4790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4790), - [anon_sym_LT_LPAREN] = ACTIONS(4790), - [anon_sym_GT_LPAREN] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4792), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6218), }, [2390] = { - [sym_file_descriptor] = ACTIONS(4796), - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(4796), - [anon_sym_PIPE_AMP] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4796), - [anon_sym_PIPE_PIPE] = ACTIONS(4796), - [anon_sym_EQ_TILDE] = ACTIONS(5846), - [anon_sym_EQ_EQ] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5846), - [anon_sym_GT] = ACTIONS(5846), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_AMP_GT] = ACTIONS(5846), - [anon_sym_AMP_GT_GT] = ACTIONS(4796), - [anon_sym_LT_AMP] = ACTIONS(4796), - [anon_sym_GT_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(5846), - [anon_sym_LT_LT_DASH] = ACTIONS(4796), - [anon_sym_LT_LT_LT] = ACTIONS(4796), - [sym__special_characters] = ACTIONS(5846), - [anon_sym_DQUOTE] = ACTIONS(4796), - [anon_sym_DOLLAR] = ACTIONS(5846), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), - [anon_sym_BQUOTE] = ACTIONS(4796), - [anon_sym_LT_LPAREN] = ACTIONS(4796), - [anon_sym_GT_LPAREN] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4798), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6220), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2391] = { - [sym_file_descriptor] = ACTIONS(4859), - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_RPAREN] = ACTIONS(4859), - [anon_sym_PIPE_AMP] = ACTIONS(4859), - [anon_sym_AMP_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4859), - [anon_sym_EQ_TILDE] = ACTIONS(5848), - [anon_sym_EQ_EQ] = ACTIONS(5848), - [anon_sym_LT] = ACTIONS(5848), - [anon_sym_GT] = ACTIONS(5848), - [anon_sym_GT_GT] = ACTIONS(4859), - [anon_sym_AMP_GT] = ACTIONS(5848), - [anon_sym_AMP_GT_GT] = ACTIONS(4859), - [anon_sym_LT_AMP] = ACTIONS(4859), - [anon_sym_GT_AMP] = ACTIONS(4859), - [anon_sym_LT_LT] = ACTIONS(5848), - [anon_sym_LT_LT_DASH] = ACTIONS(4859), - [anon_sym_LT_LT_LT] = ACTIONS(4859), - [sym__special_characters] = ACTIONS(5848), - [anon_sym_DQUOTE] = ACTIONS(4859), - [anon_sym_DOLLAR] = ACTIONS(5848), - [sym_raw_string] = ACTIONS(4859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4859), - [anon_sym_LT_LPAREN] = ACTIONS(4859), - [anon_sym_GT_LPAREN] = ACTIONS(4859), + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(4636), + [anon_sym_RPAREN] = ACTIONS(3410), + [anon_sym_PIPE_AMP] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [sym__special_characters] = ACTIONS(4636), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_DOLLAR] = ACTIONS(4636), + [sym_raw_string] = ACTIONS(3410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), + [anon_sym_BQUOTE] = ACTIONS(3410), + [anon_sym_LT_LPAREN] = ACTIONS(3410), + [anon_sym_GT_LPAREN] = ACTIONS(3410), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4861), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4636), + [sym_word] = ACTIONS(3412), }, [2392] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6216), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(6222), }, [2393] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6218), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6224), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2394] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6220), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6226), }, [2395] = { - [anon_sym_RBRACE] = ACTIONS(6220), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6208), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2396] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3014), - [anon_sym_RBRACE] = ACTIONS(6222), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3015), + [anon_sym_RBRACE] = ACTIONS(6228), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2397] = { + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_PIPE_AMP] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [sym__special_characters] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_DOLLAR] = ACTIONS(4646), + [sym_raw_string] = ACTIONS(3422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), + [anon_sym_BQUOTE] = ACTIONS(3422), + [anon_sym_LT_LPAREN] = ACTIONS(3422), + [anon_sym_GT_LPAREN] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4646), + [sym_word] = ACTIONS(3424), + }, + [2398] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3017), + [anon_sym_RBRACE] = ACTIONS(6230), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2399] = { + [sym_file_descriptor] = ACTIONS(4802), + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(5860), + [anon_sym_RPAREN] = ACTIONS(4802), + [anon_sym_PIPE_AMP] = ACTIONS(4802), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [anon_sym_EQ_TILDE] = ACTIONS(5860), + [anon_sym_EQ_EQ] = ACTIONS(5860), + [anon_sym_LT] = ACTIONS(5860), + [anon_sym_GT] = ACTIONS(5860), + [anon_sym_GT_GT] = ACTIONS(4802), + [anon_sym_AMP_GT] = ACTIONS(5860), + [anon_sym_AMP_GT_GT] = ACTIONS(4802), + [anon_sym_LT_AMP] = ACTIONS(4802), + [anon_sym_GT_AMP] = ACTIONS(4802), + [anon_sym_LT_LT] = ACTIONS(5860), + [anon_sym_LT_LT_DASH] = ACTIONS(4802), + [anon_sym_LT_LT_LT] = ACTIONS(4802), + [sym__special_characters] = ACTIONS(5860), + [anon_sym_DQUOTE] = ACTIONS(4802), + [anon_sym_DOLLAR] = ACTIONS(5860), + [sym_raw_string] = ACTIONS(4802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), + [anon_sym_BQUOTE] = ACTIONS(4802), + [anon_sym_LT_LPAREN] = ACTIONS(4802), + [anon_sym_GT_LPAREN] = ACTIONS(4802), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4804), + }, + [2400] = { + [sym_file_descriptor] = ACTIONS(4808), + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_RPAREN] = ACTIONS(4808), + [anon_sym_PIPE_AMP] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), + [anon_sym_EQ_TILDE] = ACTIONS(5862), + [anon_sym_EQ_EQ] = ACTIONS(5862), + [anon_sym_LT] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5862), + [anon_sym_GT_GT] = ACTIONS(4808), + [anon_sym_AMP_GT] = ACTIONS(5862), + [anon_sym_AMP_GT_GT] = ACTIONS(4808), + [anon_sym_LT_AMP] = ACTIONS(4808), + [anon_sym_GT_AMP] = ACTIONS(4808), + [anon_sym_LT_LT] = ACTIONS(5862), + [anon_sym_LT_LT_DASH] = ACTIONS(4808), + [anon_sym_LT_LT_LT] = ACTIONS(4808), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4808), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), + [anon_sym_BQUOTE] = ACTIONS(4808), + [anon_sym_LT_LPAREN] = ACTIONS(4808), + [anon_sym_GT_LPAREN] = ACTIONS(4808), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4810), + }, + [2401] = { [sym_file_descriptor] = ACTIONS(4871), [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_PIPE] = ACTIONS(5864), [anon_sym_RPAREN] = ACTIONS(4871), [anon_sym_PIPE_AMP] = ACTIONS(4871), [anon_sym_AMP_AMP] = ACTIONS(4871), [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_EQ_TILDE] = ACTIONS(5858), - [anon_sym_EQ_EQ] = ACTIONS(5858), - [anon_sym_LT] = ACTIONS(5858), - [anon_sym_GT] = ACTIONS(5858), + [anon_sym_EQ_TILDE] = ACTIONS(5864), + [anon_sym_EQ_EQ] = ACTIONS(5864), + [anon_sym_LT] = ACTIONS(5864), + [anon_sym_GT] = ACTIONS(5864), [anon_sym_GT_GT] = ACTIONS(4871), - [anon_sym_AMP_GT] = ACTIONS(5858), + [anon_sym_AMP_GT] = ACTIONS(5864), [anon_sym_AMP_GT_GT] = ACTIONS(4871), [anon_sym_LT_AMP] = ACTIONS(4871), [anon_sym_GT_AMP] = ACTIONS(4871), - [anon_sym_LT_LT] = ACTIONS(5858), + [anon_sym_LT_LT] = ACTIONS(5864), [anon_sym_LT_LT_DASH] = ACTIONS(4871), [anon_sym_LT_LT_LT] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5858), + [sym__special_characters] = ACTIONS(5864), [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_DOLLAR] = ACTIONS(5864), [sym_raw_string] = ACTIONS(4871), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), @@ -65256,119 +65421,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(4873), }, - [2398] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3016), - [anon_sym_RBRACE] = ACTIONS(6224), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2402] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6232), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2399] = { - [sym_file_descriptor] = ACTIONS(4877), - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(4877), - [anon_sym_PIPE_AMP] = ACTIONS(4877), - [anon_sym_AMP_AMP] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4877), - [anon_sym_EQ_TILDE] = ACTIONS(5862), - [anon_sym_EQ_EQ] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5862), - [anon_sym_GT] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(4877), - [anon_sym_AMP_GT] = ACTIONS(5862), - [anon_sym_AMP_GT_GT] = ACTIONS(4877), - [anon_sym_LT_AMP] = ACTIONS(4877), - [anon_sym_GT_AMP] = ACTIONS(4877), - [anon_sym_LT_LT] = ACTIONS(5862), - [anon_sym_LT_LT_DASH] = ACTIONS(4877), - [anon_sym_LT_LT_LT] = ACTIONS(4877), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(4877), - [anon_sym_LT_LPAREN] = ACTIONS(4877), - [anon_sym_GT_LPAREN] = ACTIONS(4877), + [2403] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6234), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4879), }, - [2400] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3018), - [anon_sym_RBRACE] = ACTIONS(6226), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2404] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6236), + [sym_comment] = ACTIONS(56), + }, + [2405] = { + [anon_sym_RBRACE] = ACTIONS(6236), + [sym_comment] = ACTIONS(56), + }, + [2406] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3022), + [anon_sym_RBRACE] = ACTIONS(6238), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2401] = { + [2407] = { [sym_file_descriptor] = ACTIONS(4883), [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_PIPE] = ACTIONS(5874), [anon_sym_RPAREN] = ACTIONS(4883), [anon_sym_PIPE_AMP] = ACTIONS(4883), [anon_sym_AMP_AMP] = ACTIONS(4883), [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_EQ_TILDE] = ACTIONS(5866), - [anon_sym_EQ_EQ] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), + [anon_sym_EQ_TILDE] = ACTIONS(5874), + [anon_sym_EQ_EQ] = ACTIONS(5874), + [anon_sym_LT] = ACTIONS(5874), + [anon_sym_GT] = ACTIONS(5874), [anon_sym_GT_GT] = ACTIONS(4883), - [anon_sym_AMP_GT] = ACTIONS(5866), + [anon_sym_AMP_GT] = ACTIONS(5874), [anon_sym_AMP_GT_GT] = ACTIONS(4883), [anon_sym_LT_AMP] = ACTIONS(4883), [anon_sym_GT_AMP] = ACTIONS(4883), - [anon_sym_LT_LT] = ACTIONS(5866), + [anon_sym_LT_LT] = ACTIONS(5874), [anon_sym_LT_LT_DASH] = ACTIONS(4883), [anon_sym_LT_LT_LT] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5866), + [sym__special_characters] = ACTIONS(5874), [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5866), + [anon_sym_DOLLAR] = ACTIONS(5874), [sym_raw_string] = ACTIONS(4883), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), @@ -65378,58 +65527,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(4885), }, - [2402] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6228), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2408] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3024), + [anon_sym_RBRACE] = ACTIONS(6240), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2403] = { + [2409] = { [sym_file_descriptor] = ACTIONS(4889), [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_PIPE] = ACTIONS(5878), [anon_sym_RPAREN] = ACTIONS(4889), [anon_sym_PIPE_AMP] = ACTIONS(4889), [anon_sym_AMP_AMP] = ACTIONS(4889), [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_EQ_TILDE] = ACTIONS(5870), - [anon_sym_EQ_EQ] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5870), - [anon_sym_GT] = ACTIONS(5870), + [anon_sym_EQ_TILDE] = ACTIONS(5878), + [anon_sym_EQ_EQ] = ACTIONS(5878), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_GT] = ACTIONS(5878), [anon_sym_GT_GT] = ACTIONS(4889), - [anon_sym_AMP_GT] = ACTIONS(5870), + [anon_sym_AMP_GT] = ACTIONS(5878), [anon_sym_AMP_GT_GT] = ACTIONS(4889), [anon_sym_LT_AMP] = ACTIONS(4889), [anon_sym_GT_AMP] = ACTIONS(4889), - [anon_sym_LT_LT] = ACTIONS(5870), + [anon_sym_LT_LT] = ACTIONS(5878), [anon_sym_LT_LT_DASH] = ACTIONS(4889), [anon_sym_LT_LT_LT] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5870), + [sym__special_characters] = ACTIONS(5878), [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5870), + [anon_sym_DOLLAR] = ACTIONS(5878), [sym_raw_string] = ACTIONS(4889), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), @@ -65439,925 +65588,1047 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(4891), }, - [2404] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6230), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2405] = { - [anon_sym_PIPE] = ACTIONS(6124), - [anon_sym_RPAREN] = ACTIONS(6126), - [anon_sym_PIPE_AMP] = ACTIONS(6126), - [anon_sym_AMP_AMP] = ACTIONS(6126), - [anon_sym_PIPE_PIPE] = ACTIONS(6126), - [anon_sym_BQUOTE] = ACTIONS(6126), - [sym_comment] = ACTIONS(56), - }, - [2406] = { - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(3056), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - }, - [2407] = { - [aux_sym_concatenation_repeat1] = STATE(2407), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(6232), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(3056), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - }, - [2408] = { - [sym_file_descriptor] = ACTIONS(1923), - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(1923), - [anon_sym_PIPE_AMP] = ACTIONS(1923), - [anon_sym_AMP_AMP] = ACTIONS(1923), - [anon_sym_PIPE_PIPE] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(1923), - [anon_sym_AMP_GT] = ACTIONS(3061), - [anon_sym_AMP_GT_GT] = ACTIONS(1923), - [anon_sym_LT_AMP] = ACTIONS(1923), - [anon_sym_GT_AMP] = ACTIONS(1923), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_LT_LT_DASH] = ACTIONS(1923), - [anon_sym_LT_LT_LT] = ACTIONS(1923), - [sym_comment] = ACTIONS(56), - }, - [2409] = { - [sym_concatenation] = STATE(3024), - [sym_string] = STATE(3023), - [sym_simple_expansion] = STATE(3023), - [sym_string_expansion] = STATE(3023), - [sym_expansion] = STATE(3023), - [sym_command_substitution] = STATE(3023), - [sym_process_substitution] = STATE(3023), - [anon_sym_RBRACE] = ACTIONS(6235), - [sym__special_characters] = ACTIONS(6237), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6239), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6241), - }, [2410] = { - [sym_file_descriptor] = ACTIONS(1968), - [sym__concat] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1968), - [anon_sym_PIPE_PIPE] = ACTIONS(1968), - [anon_sym_LT] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(1968), - [anon_sym_AMP_GT] = ACTIONS(3071), - [anon_sym_AMP_GT_GT] = ACTIONS(1968), - [anon_sym_LT_AMP] = ACTIONS(1968), - [anon_sym_GT_AMP] = ACTIONS(1968), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_LT_LT_DASH] = ACTIONS(1968), - [anon_sym_LT_LT_LT] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3026), + [anon_sym_RBRACE] = ACTIONS(6242), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2411] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6243), + [sym_file_descriptor] = ACTIONS(4895), + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(5882), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_PIPE_AMP] = ACTIONS(4895), + [anon_sym_AMP_AMP] = ACTIONS(4895), + [anon_sym_PIPE_PIPE] = ACTIONS(4895), + [anon_sym_EQ_TILDE] = ACTIONS(5882), + [anon_sym_EQ_EQ] = ACTIONS(5882), + [anon_sym_LT] = ACTIONS(5882), + [anon_sym_GT] = ACTIONS(5882), + [anon_sym_GT_GT] = ACTIONS(4895), + [anon_sym_AMP_GT] = ACTIONS(5882), + [anon_sym_AMP_GT_GT] = ACTIONS(4895), + [anon_sym_LT_AMP] = ACTIONS(4895), + [anon_sym_GT_AMP] = ACTIONS(4895), + [anon_sym_LT_LT] = ACTIONS(5882), + [anon_sym_LT_LT_DASH] = ACTIONS(4895), + [anon_sym_LT_LT_LT] = ACTIONS(4895), + [sym__special_characters] = ACTIONS(5882), + [anon_sym_DQUOTE] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(5882), + [sym_raw_string] = ACTIONS(4895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(4895), + [anon_sym_LT_LPAREN] = ACTIONS(4895), + [anon_sym_GT_LPAREN] = ACTIONS(4895), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4897), }, [2412] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6245), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6244), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2413] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(6247), + [sym_file_descriptor] = ACTIONS(4901), + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(5886), + [anon_sym_RPAREN] = ACTIONS(4901), + [anon_sym_PIPE_AMP] = ACTIONS(4901), + [anon_sym_AMP_AMP] = ACTIONS(4901), + [anon_sym_PIPE_PIPE] = ACTIONS(4901), + [anon_sym_EQ_TILDE] = ACTIONS(5886), + [anon_sym_EQ_EQ] = ACTIONS(5886), + [anon_sym_LT] = ACTIONS(5886), + [anon_sym_GT] = ACTIONS(5886), + [anon_sym_GT_GT] = ACTIONS(4901), + [anon_sym_AMP_GT] = ACTIONS(5886), + [anon_sym_AMP_GT_GT] = ACTIONS(4901), + [anon_sym_LT_AMP] = ACTIONS(4901), + [anon_sym_GT_AMP] = ACTIONS(4901), + [anon_sym_LT_LT] = ACTIONS(5886), + [anon_sym_LT_LT_DASH] = ACTIONS(4901), + [anon_sym_LT_LT_LT] = ACTIONS(4901), + [sym__special_characters] = ACTIONS(5886), + [anon_sym_DQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(5886), + [sym_raw_string] = ACTIONS(4901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4901), + [anon_sym_LT_LPAREN] = ACTIONS(4901), + [anon_sym_GT_LPAREN] = ACTIONS(4901), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4903), }, [2414] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3030), - [anon_sym_RBRACE] = ACTIONS(6249), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6251), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6246), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2415] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3033), - [anon_sym_RBRACE] = ACTIONS(6253), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6255), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_PIPE] = ACTIONS(6140), + [anon_sym_RPAREN] = ACTIONS(6142), + [anon_sym_PIPE_AMP] = ACTIONS(6142), + [anon_sym_AMP_AMP] = ACTIONS(6142), + [anon_sym_PIPE_PIPE] = ACTIONS(6142), + [anon_sym_BQUOTE] = ACTIONS(6142), + [sym_comment] = ACTIONS(56), }, [2416] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3035), - [anon_sym_RBRACE] = ACTIONS(6235), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6257), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(3066), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(3066), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), }, [2417] = { - [sym_file_descriptor] = ACTIONS(2022), - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(2022), - [anon_sym_PIPE_AMP] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(2022), - [anon_sym_AMP_GT] = ACTIONS(3089), - [anon_sym_AMP_GT_GT] = ACTIONS(2022), - [anon_sym_LT_AMP] = ACTIONS(2022), - [anon_sym_GT_AMP] = ACTIONS(2022), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_LT_LT_DASH] = ACTIONS(2022), - [anon_sym_LT_LT_LT] = ACTIONS(2022), + [aux_sym_concatenation_repeat1] = STATE(2417), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(6248), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(3066), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(3066), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), [sym_comment] = ACTIONS(56), }, [2418] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6259), + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3071), + [anon_sym_GT_GT] = ACTIONS(1927), + [anon_sym_AMP_GT] = ACTIONS(3071), + [anon_sym_AMP_GT_GT] = ACTIONS(1927), + [anon_sym_LT_AMP] = ACTIONS(1927), + [anon_sym_GT_AMP] = ACTIONS(1927), + [anon_sym_LT_LT] = ACTIONS(3071), + [anon_sym_LT_LT_DASH] = ACTIONS(1927), + [anon_sym_LT_LT_LT] = ACTIONS(1927), + [sym_comment] = ACTIONS(56), }, [2419] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6261), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(3032), + [sym_string] = STATE(3031), + [sym_simple_expansion] = STATE(3031), + [sym_string_expansion] = STATE(3031), + [sym_expansion] = STATE(3031), + [sym_command_substitution] = STATE(3031), + [sym_process_substitution] = STATE(3031), + [anon_sym_RBRACE] = ACTIONS(6251), + [sym__special_characters] = ACTIONS(6253), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6255), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6257), }, [2420] = { - [sym_file_descriptor] = ACTIONS(2030), - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(3095), - [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_LT] = ACTIONS(3095), - [anon_sym_GT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(2030), - [anon_sym_AMP_GT] = ACTIONS(3095), - [anon_sym_AMP_GT_GT] = ACTIONS(2030), - [anon_sym_LT_AMP] = ACTIONS(2030), - [anon_sym_GT_AMP] = ACTIONS(2030), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_LT_LT_DASH] = ACTIONS(2030), - [anon_sym_LT_LT_LT] = ACTIONS(2030), + [sym_file_descriptor] = ACTIONS(1972), + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(3081), + [anon_sym_RPAREN] = ACTIONS(1972), + [anon_sym_PIPE_AMP] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_PIPE_PIPE] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3081), + [anon_sym_GT_GT] = ACTIONS(1972), + [anon_sym_AMP_GT] = ACTIONS(3081), + [anon_sym_AMP_GT_GT] = ACTIONS(1972), + [anon_sym_LT_AMP] = ACTIONS(1972), + [anon_sym_GT_AMP] = ACTIONS(1972), + [anon_sym_LT_LT] = ACTIONS(3081), + [anon_sym_LT_LT_DASH] = ACTIONS(1972), + [anon_sym_LT_LT_LT] = ACTIONS(1972), [sym_comment] = ACTIONS(56), }, [2421] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6263), + [sym_regex_without_right_brace] = ACTIONS(6259), }, [2422] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6235), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6261), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2423] = { - [sym_file_descriptor] = ACTIONS(2190), - [sym__concat] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_GT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_AMP_GT] = ACTIONS(3099), - [anon_sym_AMP_GT_GT] = ACTIONS(2190), - [anon_sym_LT_AMP] = ACTIONS(2190), - [anon_sym_GT_AMP] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_LT_LT_DASH] = ACTIONS(2190), - [anon_sym_LT_LT_LT] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(6263), [sym_comment] = ACTIONS(56), }, [2424] = { - [sym_file_descriptor] = ACTIONS(2396), - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_RPAREN] = ACTIONS(2396), - [anon_sym_PIPE_AMP] = ACTIONS(2396), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_GT_GT] = ACTIONS(2396), - [anon_sym_AMP_GT] = ACTIONS(3101), - [anon_sym_AMP_GT_GT] = ACTIONS(2396), - [anon_sym_LT_AMP] = ACTIONS(2396), - [anon_sym_GT_AMP] = ACTIONS(2396), - [anon_sym_LT_LT] = ACTIONS(3101), - [anon_sym_LT_LT_DASH] = ACTIONS(2396), - [anon_sym_LT_LT_LT] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3038), + [anon_sym_RBRACE] = ACTIONS(6265), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6267), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2425] = { - [sym_file_descriptor] = ACTIONS(5364), - [anon_sym_PIPE] = ACTIONS(6265), - [anon_sym_RPAREN] = ACTIONS(5364), - [anon_sym_PIPE_AMP] = ACTIONS(5364), - [anon_sym_AMP_AMP] = ACTIONS(5364), - [anon_sym_PIPE_PIPE] = ACTIONS(5364), - [anon_sym_LT] = ACTIONS(6265), - [anon_sym_GT] = ACTIONS(6265), - [anon_sym_GT_GT] = ACTIONS(5364), - [anon_sym_AMP_GT] = ACTIONS(6265), - [anon_sym_AMP_GT_GT] = ACTIONS(5364), - [anon_sym_LT_AMP] = ACTIONS(5364), - [anon_sym_GT_AMP] = ACTIONS(5364), - [anon_sym_LT_LT] = ACTIONS(6265), - [anon_sym_LT_LT_DASH] = ACTIONS(5364), - [anon_sym_LT_LT_LT] = ACTIONS(5364), - [anon_sym_BQUOTE] = ACTIONS(5364), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3041), + [anon_sym_RBRACE] = ACTIONS(6269), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6271), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2426] = { - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(3056), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3056), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3043), + [anon_sym_RBRACE] = ACTIONS(6251), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6273), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2427] = { - [aux_sym_concatenation_repeat1] = STATE(2427), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(6267), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(3056), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [sym__special_characters] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(1886), - [anon_sym_DOLLAR] = ACTIONS(3056), - [sym_raw_string] = ACTIONS(1886), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1886), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [anon_sym_LT_LPAREN] = ACTIONS(1886), - [anon_sym_GT_LPAREN] = ACTIONS(1886), + [sym_file_descriptor] = ACTIONS(2026), + [sym__concat] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_PIPE_AMP] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_LT] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3099), + [anon_sym_GT_GT] = ACTIONS(2026), + [anon_sym_AMP_GT] = ACTIONS(3099), + [anon_sym_AMP_GT_GT] = ACTIONS(2026), + [anon_sym_LT_AMP] = ACTIONS(2026), + [anon_sym_GT_AMP] = ACTIONS(2026), + [anon_sym_LT_LT] = ACTIONS(3099), + [anon_sym_LT_LT_DASH] = ACTIONS(2026), + [anon_sym_LT_LT_LT] = ACTIONS(2026), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3056), }, [2428] = { - [sym_file_descriptor] = ACTIONS(1923), - [sym__concat] = ACTIONS(1923), - [sym_variable_name] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_PIPE_AMP] = ACTIONS(1923), - [anon_sym_AMP_AMP] = ACTIONS(1923), - [anon_sym_PIPE_PIPE] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(1923), - [anon_sym_AMP_GT] = ACTIONS(3061), - [anon_sym_AMP_GT_GT] = ACTIONS(1923), - [anon_sym_LT_AMP] = ACTIONS(1923), - [anon_sym_GT_AMP] = ACTIONS(1923), - [sym__special_characters] = ACTIONS(3061), - [anon_sym_DQUOTE] = ACTIONS(1923), - [anon_sym_DOLLAR] = ACTIONS(3061), - [sym_raw_string] = ACTIONS(1923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1923), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1923), - [anon_sym_BQUOTE] = ACTIONS(1923), - [anon_sym_LT_LPAREN] = ACTIONS(1923), - [anon_sym_GT_LPAREN] = ACTIONS(1923), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3061), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6275), }, [2429] = { - [sym_concatenation] = STATE(3042), - [sym_string] = STATE(3041), - [sym_simple_expansion] = STATE(3041), - [sym_string_expansion] = STATE(3041), - [sym_expansion] = STATE(3041), - [sym_command_substitution] = STATE(3041), - [sym_process_substitution] = STATE(3041), - [anon_sym_RBRACE] = ACTIONS(6270), - [sym__special_characters] = ACTIONS(6272), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6276), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6277), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2430] = { - [sym_file_descriptor] = ACTIONS(1968), - [sym__concat] = ACTIONS(1968), - [sym_variable_name] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1968), - [anon_sym_PIPE_PIPE] = ACTIONS(1968), - [anon_sym_LT] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(1968), - [anon_sym_AMP_GT] = ACTIONS(3071), - [anon_sym_AMP_GT_GT] = ACTIONS(1968), - [anon_sym_LT_AMP] = ACTIONS(1968), - [anon_sym_GT_AMP] = ACTIONS(1968), - [sym__special_characters] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(1968), - [anon_sym_DOLLAR] = ACTIONS(3071), - [sym_raw_string] = ACTIONS(1968), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), - [anon_sym_LT_LPAREN] = ACTIONS(1968), - [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_file_descriptor] = ACTIONS(2034), + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_RPAREN] = ACTIONS(2034), + [anon_sym_PIPE_AMP] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_PIPE_PIPE] = ACTIONS(2034), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_GT] = ACTIONS(3105), + [anon_sym_GT_GT] = ACTIONS(2034), + [anon_sym_AMP_GT] = ACTIONS(3105), + [anon_sym_AMP_GT_GT] = ACTIONS(2034), + [anon_sym_LT_AMP] = ACTIONS(2034), + [anon_sym_GT_AMP] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(3105), + [anon_sym_LT_LT_DASH] = ACTIONS(2034), + [anon_sym_LT_LT_LT] = ACTIONS(2034), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3071), }, [2431] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6278), + [sym_regex_without_right_brace] = ACTIONS(6279), }, [2432] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6280), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6251), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2433] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(6282), + [sym_file_descriptor] = ACTIONS(2196), + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(3109), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(3109), + [anon_sym_GT] = ACTIONS(3109), + [anon_sym_GT_GT] = ACTIONS(2196), + [anon_sym_AMP_GT] = ACTIONS(3109), + [anon_sym_AMP_GT_GT] = ACTIONS(2196), + [anon_sym_LT_AMP] = ACTIONS(2196), + [anon_sym_GT_AMP] = ACTIONS(2196), + [anon_sym_LT_LT] = ACTIONS(3109), + [anon_sym_LT_LT_DASH] = ACTIONS(2196), + [anon_sym_LT_LT_LT] = ACTIONS(2196), [sym_comment] = ACTIONS(56), }, [2434] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3048), - [anon_sym_RBRACE] = ACTIONS(6284), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6286), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(2402), + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_PIPE_AMP] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3111), + [anon_sym_GT_GT] = ACTIONS(2402), + [anon_sym_AMP_GT] = ACTIONS(3111), + [anon_sym_AMP_GT_GT] = ACTIONS(2402), + [anon_sym_LT_AMP] = ACTIONS(2402), + [anon_sym_GT_AMP] = ACTIONS(2402), + [anon_sym_LT_LT] = ACTIONS(3111), + [anon_sym_LT_LT_DASH] = ACTIONS(2402), + [anon_sym_LT_LT_LT] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), }, [2435] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3051), - [anon_sym_RBRACE] = ACTIONS(6288), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6290), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(5382), + [anon_sym_PIPE] = ACTIONS(6281), + [anon_sym_RPAREN] = ACTIONS(5382), + [anon_sym_PIPE_AMP] = ACTIONS(5382), + [anon_sym_AMP_AMP] = ACTIONS(5382), + [anon_sym_PIPE_PIPE] = ACTIONS(5382), + [anon_sym_LT] = ACTIONS(6281), + [anon_sym_GT] = ACTIONS(6281), + [anon_sym_GT_GT] = ACTIONS(5382), + [anon_sym_AMP_GT] = ACTIONS(6281), + [anon_sym_AMP_GT_GT] = ACTIONS(5382), + [anon_sym_LT_AMP] = ACTIONS(5382), + [anon_sym_GT_AMP] = ACTIONS(5382), + [anon_sym_LT_LT] = ACTIONS(6281), + [anon_sym_LT_LT_DASH] = ACTIONS(5382), + [anon_sym_LT_LT_LT] = ACTIONS(5382), + [anon_sym_BQUOTE] = ACTIONS(5382), + [sym_comment] = ACTIONS(56), }, [2436] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3053), - [anon_sym_RBRACE] = ACTIONS(6270), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6292), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(3066), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3066), }, [2437] = { - [sym_file_descriptor] = ACTIONS(2022), - [sym__concat] = ACTIONS(2022), - [sym_variable_name] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PIPE_AMP] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(2022), - [anon_sym_AMP_GT] = ACTIONS(3089), - [anon_sym_AMP_GT_GT] = ACTIONS(2022), - [anon_sym_LT_AMP] = ACTIONS(2022), - [anon_sym_GT_AMP] = ACTIONS(2022), - [sym__special_characters] = ACTIONS(3089), - [anon_sym_DQUOTE] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(3089), - [sym_raw_string] = ACTIONS(2022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2022), - [anon_sym_BQUOTE] = ACTIONS(2022), - [anon_sym_LT_LPAREN] = ACTIONS(2022), - [anon_sym_GT_LPAREN] = ACTIONS(2022), + [aux_sym_concatenation_repeat1] = STATE(2437), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(6283), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(3066), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [sym__special_characters] = ACTIONS(3066), + [anon_sym_DQUOTE] = ACTIONS(1890), + [anon_sym_DOLLAR] = ACTIONS(3066), + [sym_raw_string] = ACTIONS(1890), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [anon_sym_LT_LPAREN] = ACTIONS(1890), + [anon_sym_GT_LPAREN] = ACTIONS(1890), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3089), + [sym_word] = ACTIONS(3066), }, [2438] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6294), + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [sym_variable_name] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3071), + [anon_sym_GT_GT] = ACTIONS(1927), + [anon_sym_AMP_GT] = ACTIONS(3071), + [anon_sym_AMP_GT_GT] = ACTIONS(1927), + [anon_sym_LT_AMP] = ACTIONS(1927), + [anon_sym_GT_AMP] = ACTIONS(1927), + [sym__special_characters] = ACTIONS(3071), + [anon_sym_DQUOTE] = ACTIONS(1927), + [anon_sym_DOLLAR] = ACTIONS(3071), + [sym_raw_string] = ACTIONS(1927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [anon_sym_LT_LPAREN] = ACTIONS(1927), + [anon_sym_GT_LPAREN] = ACTIONS(1927), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3071), }, [2439] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6296), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(3050), + [sym_string] = STATE(3049), + [sym_simple_expansion] = STATE(3049), + [sym_string_expansion] = STATE(3049), + [sym_expansion] = STATE(3049), + [sym_command_substitution] = STATE(3049), + [sym_process_substitution] = STATE(3049), + [anon_sym_RBRACE] = ACTIONS(6286), + [sym__special_characters] = ACTIONS(6288), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6292), }, [2440] = { - [sym_file_descriptor] = ACTIONS(2030), - [sym__concat] = ACTIONS(2030), - [sym_variable_name] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(2030), - [anon_sym_AMP_AMP] = ACTIONS(2030), - [anon_sym_PIPE_PIPE] = ACTIONS(2030), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_GT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(2030), - [anon_sym_AMP_GT] = ACTIONS(3095), - [anon_sym_AMP_GT_GT] = ACTIONS(2030), - [anon_sym_LT_AMP] = ACTIONS(2030), - [anon_sym_GT_AMP] = ACTIONS(2030), - [sym__special_characters] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(3095), - [sym_raw_string] = ACTIONS(2030), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), - [anon_sym_LT_LPAREN] = ACTIONS(2030), - [anon_sym_GT_LPAREN] = ACTIONS(2030), + [sym_file_descriptor] = ACTIONS(1972), + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(3081), + [anon_sym_PIPE_AMP] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_PIPE_PIPE] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3081), + [anon_sym_GT_GT] = ACTIONS(1972), + [anon_sym_AMP_GT] = ACTIONS(3081), + [anon_sym_AMP_GT_GT] = ACTIONS(1972), + [anon_sym_LT_AMP] = ACTIONS(1972), + [anon_sym_GT_AMP] = ACTIONS(1972), + [sym__special_characters] = ACTIONS(3081), + [anon_sym_DQUOTE] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(3081), + [sym_raw_string] = ACTIONS(1972), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [anon_sym_LT_LPAREN] = ACTIONS(1972), + [anon_sym_GT_LPAREN] = ACTIONS(1972), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3095), + [sym_word] = ACTIONS(3081), }, [2441] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6298), + [sym_regex_without_right_brace] = ACTIONS(6294), }, [2442] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6270), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6296), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2443] = { - [sym_file_descriptor] = ACTIONS(2190), - [sym__concat] = ACTIONS(2190), - [sym_variable_name] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(6298), + [sym_comment] = ACTIONS(56), + }, + [2444] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3056), + [anon_sym_RBRACE] = ACTIONS(6300), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6302), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2445] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3059), + [anon_sym_RBRACE] = ACTIONS(6304), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6306), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2446] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3061), + [anon_sym_RBRACE] = ACTIONS(6286), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6308), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2447] = { + [sym_file_descriptor] = ACTIONS(2026), + [sym__concat] = ACTIONS(2026), + [sym_variable_name] = ACTIONS(2026), [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_PIPE_AMP] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), [anon_sym_LT] = ACTIONS(3099), [anon_sym_GT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2026), [anon_sym_AMP_GT] = ACTIONS(3099), - [anon_sym_AMP_GT_GT] = ACTIONS(2190), - [anon_sym_LT_AMP] = ACTIONS(2190), - [anon_sym_GT_AMP] = ACTIONS(2190), + [anon_sym_AMP_GT_GT] = ACTIONS(2026), + [anon_sym_LT_AMP] = ACTIONS(2026), + [anon_sym_GT_AMP] = ACTIONS(2026), [sym__special_characters] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2026), [anon_sym_DOLLAR] = ACTIONS(3099), - [sym_raw_string] = ACTIONS(2190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2190), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2190), - [anon_sym_BQUOTE] = ACTIONS(2190), - [anon_sym_LT_LPAREN] = ACTIONS(2190), - [anon_sym_GT_LPAREN] = ACTIONS(2190), + [sym_raw_string] = ACTIONS(2026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2026), + [anon_sym_LT_LPAREN] = ACTIONS(2026), + [anon_sym_GT_LPAREN] = ACTIONS(2026), [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(3099), }, - [2444] = { - [sym_file_descriptor] = ACTIONS(2396), - [sym__concat] = ACTIONS(2396), - [sym_variable_name] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_PIPE_AMP] = ACTIONS(2396), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_GT_GT] = ACTIONS(2396), - [anon_sym_AMP_GT] = ACTIONS(3101), - [anon_sym_AMP_GT_GT] = ACTIONS(2396), - [anon_sym_LT_AMP] = ACTIONS(2396), - [anon_sym_GT_AMP] = ACTIONS(2396), - [sym__special_characters] = ACTIONS(3101), - [anon_sym_DQUOTE] = ACTIONS(2396), - [anon_sym_DOLLAR] = ACTIONS(3101), - [sym_raw_string] = ACTIONS(2396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2396), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2396), - [anon_sym_BQUOTE] = ACTIONS(2396), - [anon_sym_LT_LPAREN] = ACTIONS(2396), - [anon_sym_GT_LPAREN] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(3101), - }, - [2445] = { - [sym_file_redirect] = STATE(2955), - [sym_file_descriptor] = ACTIONS(3792), - [anon_sym_PIPE] = ACTIONS(6124), - [anon_sym_PIPE_AMP] = ACTIONS(6126), - [anon_sym_AMP_AMP] = ACTIONS(6126), - [anon_sym_PIPE_PIPE] = ACTIONS(6126), - [anon_sym_LT] = ACTIONS(3794), - [anon_sym_GT] = ACTIONS(3794), - [anon_sym_GT_GT] = ACTIONS(3796), - [anon_sym_AMP_GT] = ACTIONS(3794), - [anon_sym_AMP_GT_GT] = ACTIONS(3796), - [anon_sym_LT_AMP] = ACTIONS(3796), - [anon_sym_GT_AMP] = ACTIONS(3796), - [anon_sym_BQUOTE] = ACTIONS(6126), - [sym_comment] = ACTIONS(56), - }, - [2446] = { - [sym_concatenation] = STATE(2958), - [sym_string] = STATE(3058), - [sym_simple_expansion] = STATE(3058), - [sym_string_expansion] = STATE(3058), - [sym_expansion] = STATE(3058), - [sym_command_substitution] = STATE(3058), - [sym_process_substitution] = STATE(3058), - [sym__special_characters] = ACTIONS(6300), - [anon_sym_DQUOTE] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [sym_raw_string] = ACTIONS(6302), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5177), - [anon_sym_BQUOTE] = ACTIONS(5179), - [anon_sym_LT_LPAREN] = ACTIONS(5181), - [anon_sym_GT_LPAREN] = ACTIONS(5181), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6304), - }, - [2447] = { - [aux_sym_concatenation_repeat1] = STATE(3060), - [sym__concat] = ACTIONS(6306), - [anon_sym_PIPE] = ACTIONS(758), - [anon_sym_PIPE_AMP] = ACTIONS(754), - [anon_sym_AMP_AMP] = ACTIONS(754), - [anon_sym_PIPE_PIPE] = ACTIONS(754), - [anon_sym_BQUOTE] = ACTIONS(754), - [sym_comment] = ACTIONS(56), - }, [2448] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6310), + }, + [2449] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6312), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2450] = { + [sym_file_descriptor] = ACTIONS(2034), + [sym__concat] = ACTIONS(2034), + [sym_variable_name] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PIPE_AMP] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_PIPE_PIPE] = ACTIONS(2034), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_GT] = ACTIONS(3105), + [anon_sym_GT_GT] = ACTIONS(2034), + [anon_sym_AMP_GT] = ACTIONS(3105), + [anon_sym_AMP_GT_GT] = ACTIONS(2034), + [anon_sym_LT_AMP] = ACTIONS(2034), + [anon_sym_GT_AMP] = ACTIONS(2034), + [sym__special_characters] = ACTIONS(3105), + [anon_sym_DQUOTE] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(3105), + [sym_raw_string] = ACTIONS(2034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2034), + [anon_sym_BQUOTE] = ACTIONS(2034), + [anon_sym_LT_LPAREN] = ACTIONS(2034), + [anon_sym_GT_LPAREN] = ACTIONS(2034), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3105), + }, + [2451] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6314), + }, + [2452] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6286), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2453] = { + [sym_file_descriptor] = ACTIONS(2196), + [sym__concat] = ACTIONS(2196), + [sym_variable_name] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(3109), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(3109), + [anon_sym_GT] = ACTIONS(3109), + [anon_sym_GT_GT] = ACTIONS(2196), + [anon_sym_AMP_GT] = ACTIONS(3109), + [anon_sym_AMP_GT_GT] = ACTIONS(2196), + [anon_sym_LT_AMP] = ACTIONS(2196), + [anon_sym_GT_AMP] = ACTIONS(2196), + [sym__special_characters] = ACTIONS(3109), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(3109), + [sym_raw_string] = ACTIONS(2196), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2196), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [anon_sym_LT_LPAREN] = ACTIONS(2196), + [anon_sym_GT_LPAREN] = ACTIONS(2196), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3109), + }, + [2454] = { + [sym_file_descriptor] = ACTIONS(2402), + [sym__concat] = ACTIONS(2402), + [sym_variable_name] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_PIPE_AMP] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3111), + [anon_sym_GT_GT] = ACTIONS(2402), + [anon_sym_AMP_GT] = ACTIONS(3111), + [anon_sym_AMP_GT_GT] = ACTIONS(2402), + [anon_sym_LT_AMP] = ACTIONS(2402), + [anon_sym_GT_AMP] = ACTIONS(2402), + [sym__special_characters] = ACTIONS(3111), + [anon_sym_DQUOTE] = ACTIONS(2402), + [anon_sym_DOLLAR] = ACTIONS(3111), + [sym_raw_string] = ACTIONS(2402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2402), + [anon_sym_BQUOTE] = ACTIONS(2402), + [anon_sym_LT_LPAREN] = ACTIONS(2402), + [anon_sym_GT_LPAREN] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(3111), + }, + [2455] = { + [sym_file_redirect] = STATE(2963), + [sym_file_descriptor] = ACTIONS(3804), + [anon_sym_PIPE] = ACTIONS(6140), + [anon_sym_PIPE_AMP] = ACTIONS(6142), + [anon_sym_AMP_AMP] = ACTIONS(6142), + [anon_sym_PIPE_PIPE] = ACTIONS(6142), + [anon_sym_LT] = ACTIONS(3806), + [anon_sym_GT] = ACTIONS(3806), + [anon_sym_GT_GT] = ACTIONS(3808), + [anon_sym_AMP_GT] = ACTIONS(3806), + [anon_sym_AMP_GT_GT] = ACTIONS(3808), + [anon_sym_LT_AMP] = ACTIONS(3808), + [anon_sym_GT_AMP] = ACTIONS(3808), + [anon_sym_BQUOTE] = ACTIONS(6142), + [sym_comment] = ACTIONS(56), + }, + [2456] = { + [sym_concatenation] = STATE(2966), + [sym_string] = STATE(3066), + [sym_simple_expansion] = STATE(3066), + [sym_string_expansion] = STATE(3066), + [sym_expansion] = STATE(3066), + [sym_command_substitution] = STATE(3066), + [sym_process_substitution] = STATE(3066), + [sym__special_characters] = ACTIONS(6316), + [anon_sym_DQUOTE] = ACTIONS(5187), + [anon_sym_DOLLAR] = ACTIONS(5189), + [sym_raw_string] = ACTIONS(6318), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5195), + [anon_sym_BQUOTE] = ACTIONS(5197), + [anon_sym_LT_LPAREN] = ACTIONS(5199), + [anon_sym_GT_LPAREN] = ACTIONS(5199), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6320), + }, + [2457] = { + [aux_sym_concatenation_repeat1] = STATE(3068), + [sym__concat] = ACTIONS(6322), + [anon_sym_PIPE] = ACTIONS(760), + [anon_sym_PIPE_AMP] = ACTIONS(756), + [anon_sym_AMP_AMP] = ACTIONS(756), + [anon_sym_PIPE_PIPE] = ACTIONS(756), + [anon_sym_BQUOTE] = ACTIONS(756), + [sym_comment] = ACTIONS(56), + }, + [2458] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(3062), - [anon_sym_DQUOTE] = ACTIONS(6308), + [aux_sym_string_repeat1] = STATE(3070), + [anon_sym_DQUOTE] = ACTIONS(6324), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -66365,60 +66636,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [2449] = { - [sym_string] = STATE(3064), - [anon_sym_DQUOTE] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(6310), - [sym_raw_string] = ACTIONS(6312), - [anon_sym_POUND] = ACTIONS(6310), - [anon_sym_DASH] = ACTIONS(6310), + [2459] = { + [sym_string] = STATE(3072), + [anon_sym_DQUOTE] = ACTIONS(5187), + [anon_sym_DOLLAR] = ACTIONS(6326), + [sym_raw_string] = ACTIONS(6328), + [anon_sym_POUND] = ACTIONS(6326), + [anon_sym_DASH] = ACTIONS(6326), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6314), - [anon_sym_STAR] = ACTIONS(6310), - [anon_sym_AT] = ACTIONS(6310), - [anon_sym_QMARK] = ACTIONS(6310), - [anon_sym_0] = ACTIONS(6316), - [anon_sym__] = ACTIONS(6316), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6330), + [anon_sym_STAR] = ACTIONS(6326), + [anon_sym_AT] = ACTIONS(6326), + [anon_sym_QMARK] = ACTIONS(6326), + [anon_sym_0] = ACTIONS(6332), + [anon_sym__] = ACTIONS(6332), }, - [2450] = { - [aux_sym_concatenation_repeat1] = STATE(3060), - [sym__concat] = ACTIONS(6306), - [anon_sym_PIPE] = ACTIONS(772), - [anon_sym_PIPE_AMP] = ACTIONS(770), - [anon_sym_AMP_AMP] = ACTIONS(770), - [anon_sym_PIPE_PIPE] = ACTIONS(770), - [anon_sym_BQUOTE] = ACTIONS(770), + [2460] = { + [aux_sym_concatenation_repeat1] = STATE(3068), + [sym__concat] = ACTIONS(6322), + [anon_sym_PIPE] = ACTIONS(774), + [anon_sym_PIPE_AMP] = ACTIONS(772), + [anon_sym_AMP_AMP] = ACTIONS(772), + [anon_sym_PIPE_PIPE] = ACTIONS(772), + [anon_sym_BQUOTE] = ACTIONS(772), [sym_comment] = ACTIONS(56), }, - [2451] = { - [sym_subscript] = STATE(3070), - [sym_variable_name] = ACTIONS(6318), - [anon_sym_DOLLAR] = ACTIONS(6320), - [anon_sym_POUND] = ACTIONS(6322), - [anon_sym_DASH] = ACTIONS(6320), + [2461] = { + [sym_subscript] = STATE(3078), + [sym_variable_name] = ACTIONS(6334), + [anon_sym_DOLLAR] = ACTIONS(6336), + [anon_sym_POUND] = ACTIONS(6338), + [anon_sym_DASH] = ACTIONS(6336), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6324), - [anon_sym_STAR] = ACTIONS(6320), - [anon_sym_AT] = ACTIONS(6320), - [anon_sym_QMARK] = ACTIONS(6320), - [anon_sym_0] = ACTIONS(6326), - [anon_sym__] = ACTIONS(6326), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6340), + [anon_sym_STAR] = ACTIONS(6336), + [anon_sym_AT] = ACTIONS(6336), + [anon_sym_QMARK] = ACTIONS(6336), + [anon_sym_0] = ACTIONS(6342), + [anon_sym__] = ACTIONS(6342), }, - [2452] = { - [sym_for_statement] = STATE(3071), - [sym_while_statement] = STATE(3071), - [sym_if_statement] = STATE(3071), - [sym_case_statement] = STATE(3071), - [sym_function_definition] = STATE(3071), - [sym_subshell] = STATE(3071), - [sym_pipeline] = STATE(3071), - [sym_list] = STATE(3071), - [sym_command] = STATE(3071), + [2462] = { + [sym_for_statement] = STATE(3079), + [sym_while_statement] = STATE(3079), + [sym_if_statement] = STATE(3079), + [sym_case_statement] = STATE(3079), + [sym_function_definition] = STATE(3079), + [sym_subshell] = STATE(3079), + [sym_pipeline] = STATE(3079), + [sym_list] = STATE(3079), + [sym_command] = STATE(3079), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(3071), - [sym_variable_assignment] = STATE(3072), - [sym_declaration_command] = STATE(3071), - [sym_unset_command] = STATE(3071), + [sym_bracket_command] = STATE(3079), + [sym_variable_assignment] = STATE(3080), + [sym_declaration_command] = STATE(3079), + [sym_unset_command] = STATE(3079), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -66465,21 +66736,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [2453] = { - [sym_for_statement] = STATE(3073), - [sym_while_statement] = STATE(3073), - [sym_if_statement] = STATE(3073), - [sym_case_statement] = STATE(3073), - [sym_function_definition] = STATE(3073), - [sym_subshell] = STATE(3073), - [sym_pipeline] = STATE(3073), - [sym_list] = STATE(3073), - [sym_command] = STATE(3073), + [2463] = { + [sym_for_statement] = STATE(3081), + [sym_while_statement] = STATE(3081), + [sym_if_statement] = STATE(3081), + [sym_case_statement] = STATE(3081), + [sym_function_definition] = STATE(3081), + [sym_subshell] = STATE(3081), + [sym_pipeline] = STATE(3081), + [sym_list] = STATE(3081), + [sym_command] = STATE(3081), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(3073), - [sym_variable_assignment] = STATE(3074), - [sym_declaration_command] = STATE(3073), - [sym_unset_command] = STATE(3073), + [sym_bracket_command] = STATE(3081), + [sym_variable_assignment] = STATE(3082), + [sym_declaration_command] = STATE(3081), + [sym_unset_command] = STATE(3081), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -66526,21 +66797,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [2454] = { - [sym_for_statement] = STATE(3075), - [sym_while_statement] = STATE(3075), - [sym_if_statement] = STATE(3075), - [sym_case_statement] = STATE(3075), - [sym_function_definition] = STATE(3075), - [sym_subshell] = STATE(3075), - [sym_pipeline] = STATE(3075), - [sym_list] = STATE(3075), - [sym_command] = STATE(3075), + [2464] = { + [sym_for_statement] = STATE(3083), + [sym_while_statement] = STATE(3083), + [sym_if_statement] = STATE(3083), + [sym_case_statement] = STATE(3083), + [sym_function_definition] = STATE(3083), + [sym_subshell] = STATE(3083), + [sym_pipeline] = STATE(3083), + [sym_list] = STATE(3083), + [sym_command] = STATE(3083), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(3075), - [sym_variable_assignment] = STATE(3076), - [sym_declaration_command] = STATE(3075), - [sym_unset_command] = STATE(3075), + [sym_bracket_command] = STATE(3083), + [sym_variable_assignment] = STATE(3084), + [sym_declaration_command] = STATE(3083), + [sym_unset_command] = STATE(3083), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -66587,836 +66858,731 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [2455] = { - [sym__concat] = ACTIONS(3283), - [sym_variable_name] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(4602), - [anon_sym_PIPE_AMP] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [sym__special_characters] = ACTIONS(4602), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(4602), - [sym_raw_string] = ACTIONS(3283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), - [anon_sym_BQUOTE] = ACTIONS(3283), - [anon_sym_LT_LPAREN] = ACTIONS(3283), - [anon_sym_GT_LPAREN] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4602), - [sym_word] = ACTIONS(3285), - }, - [2456] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6328), - [sym_comment] = ACTIONS(56), - }, - [2457] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6330), - [sym_comment] = ACTIONS(56), - }, - [2458] = { - [anon_sym_RBRACE] = ACTIONS(6330), - [sym_comment] = ACTIONS(56), - }, - [2459] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3080), - [anon_sym_RBRACE] = ACTIONS(6332), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2460] = { - [sym__concat] = ACTIONS(3347), - [sym_variable_name] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_PIPE_AMP] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [sym__special_characters] = ACTIONS(4610), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(3347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), - [anon_sym_BQUOTE] = ACTIONS(3347), - [anon_sym_LT_LPAREN] = ACTIONS(3347), - [anon_sym_GT_LPAREN] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4610), - [sym_word] = ACTIONS(3349), - }, - [2461] = { - [sym_concatenation] = STATE(3083), - [sym_string] = STATE(3082), - [sym_simple_expansion] = STATE(3082), - [sym_string_expansion] = STATE(3082), - [sym_expansion] = STATE(3082), - [sym_command_substitution] = STATE(3082), - [sym_process_substitution] = STATE(3082), - [anon_sym_RBRACE] = ACTIONS(6330), - [sym__special_characters] = ACTIONS(6334), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6336), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6338), - }, - [2462] = { - [sym__concat] = ACTIONS(3392), - [sym_variable_name] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(4618), - [anon_sym_PIPE_AMP] = ACTIONS(3392), - [anon_sym_AMP_AMP] = ACTIONS(3392), - [anon_sym_PIPE_PIPE] = ACTIONS(3392), - [sym__special_characters] = ACTIONS(4618), - [anon_sym_DQUOTE] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(4618), - [sym_raw_string] = ACTIONS(3392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), - [anon_sym_BQUOTE] = ACTIONS(3392), - [anon_sym_LT_LPAREN] = ACTIONS(3392), - [anon_sym_GT_LPAREN] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4618), - [sym_word] = ACTIONS(3394), - }, - [2463] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6340), - }, - [2464] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6342), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [2465] = { - [sym__concat] = ACTIONS(3400), - [sym_variable_name] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(4624), - [anon_sym_PIPE_AMP] = ACTIONS(3400), - [anon_sym_AMP_AMP] = ACTIONS(3400), - [anon_sym_PIPE_PIPE] = ACTIONS(3400), - [sym__special_characters] = ACTIONS(4624), - [anon_sym_DQUOTE] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(4624), - [sym_raw_string] = ACTIONS(3400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), - [anon_sym_BQUOTE] = ACTIONS(3400), - [anon_sym_LT_LPAREN] = ACTIONS(3400), - [anon_sym_GT_LPAREN] = ACTIONS(3400), + [sym__concat] = ACTIONS(3293), + [sym_variable_name] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_PIPE_AMP] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [sym__special_characters] = ACTIONS(4614), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4614), + [sym_raw_string] = ACTIONS(3293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3293), + [anon_sym_LT_LPAREN] = ACTIONS(3293), + [anon_sym_GT_LPAREN] = ACTIONS(3293), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4624), - [sym_word] = ACTIONS(3402), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4614), + [sym_word] = ACTIONS(3295), }, [2466] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6344), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6344), + [sym_comment] = ACTIONS(56), }, [2467] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), [anon_sym_RBRACE] = ACTIONS(6346), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_comment] = ACTIONS(56), }, [2468] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6348), + [anon_sym_RBRACE] = ACTIONS(6346), + [sym_comment] = ACTIONS(56), }, [2469] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6330), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3088), + [anon_sym_RBRACE] = ACTIONS(6348), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2470] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3090), - [anon_sym_RBRACE] = ACTIONS(6350), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(3357), + [sym_variable_name] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(4622), + [anon_sym_PIPE_AMP] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [sym__special_characters] = ACTIONS(4622), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(4622), + [sym_raw_string] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3357), + [anon_sym_LT_LPAREN] = ACTIONS(3357), + [anon_sym_GT_LPAREN] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4622), + [sym_word] = ACTIONS(3359), }, [2471] = { - [sym__concat] = ACTIONS(3412), - [sym_variable_name] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(4634), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(4634), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(4634), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), + [sym_concatenation] = STATE(3091), + [sym_string] = STATE(3090), + [sym_simple_expansion] = STATE(3090), + [sym_string_expansion] = STATE(3090), + [sym_expansion] = STATE(3090), + [sym_command_substitution] = STATE(3090), + [sym_process_substitution] = STATE(3090), + [anon_sym_RBRACE] = ACTIONS(6346), + [sym__special_characters] = ACTIONS(6350), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4634), - [sym_word] = ACTIONS(3414), + [sym_word] = ACTIONS(6354), }, [2472] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3092), - [anon_sym_RBRACE] = ACTIONS(6352), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(3402), + [sym_variable_name] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(4630), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4630), + [sym_word] = ACTIONS(3404), }, [2473] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(4602), - [anon_sym_PIPE_AMP] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [sym__special_characters] = ACTIONS(4602), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(4602), - [sym_raw_string] = ACTIONS(3283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), - [anon_sym_BQUOTE] = ACTIONS(3283), - [anon_sym_LT_LPAREN] = ACTIONS(3283), - [anon_sym_GT_LPAREN] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4602), - [sym_word] = ACTIONS(3285), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6356), }, [2474] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6354), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6358), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2475] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6356), + [sym__concat] = ACTIONS(3410), + [sym_variable_name] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(4636), + [anon_sym_PIPE_AMP] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [sym__special_characters] = ACTIONS(4636), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_DOLLAR] = ACTIONS(4636), + [sym_raw_string] = ACTIONS(3410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), + [anon_sym_BQUOTE] = ACTIONS(3410), + [anon_sym_LT_LPAREN] = ACTIONS(3410), + [anon_sym_GT_LPAREN] = ACTIONS(3410), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4636), + [sym_word] = ACTIONS(3412), }, [2476] = { - [anon_sym_RBRACE] = ACTIONS(6356), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6360), }, [2477] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3096), - [anon_sym_RBRACE] = ACTIONS(6358), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6362), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2478] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_PIPE_AMP] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [sym__special_characters] = ACTIONS(4610), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(3347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), - [anon_sym_BQUOTE] = ACTIONS(3347), - [anon_sym_LT_LPAREN] = ACTIONS(3347), - [anon_sym_GT_LPAREN] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4610), - [sym_word] = ACTIONS(3349), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6364), }, [2479] = { - [sym_concatenation] = STATE(3099), - [sym_string] = STATE(3098), - [sym_simple_expansion] = STATE(3098), - [sym_string_expansion] = STATE(3098), - [sym_expansion] = STATE(3098), - [sym_command_substitution] = STATE(3098), - [sym_process_substitution] = STATE(3098), - [anon_sym_RBRACE] = ACTIONS(6356), - [sym__special_characters] = ACTIONS(6360), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6362), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6364), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6346), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2480] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(4618), - [anon_sym_PIPE_AMP] = ACTIONS(3392), - [anon_sym_AMP_AMP] = ACTIONS(3392), - [anon_sym_PIPE_PIPE] = ACTIONS(3392), - [sym__special_characters] = ACTIONS(4618), - [anon_sym_DQUOTE] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(4618), - [sym_raw_string] = ACTIONS(3392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), - [anon_sym_BQUOTE] = ACTIONS(3392), - [anon_sym_LT_LPAREN] = ACTIONS(3392), - [anon_sym_GT_LPAREN] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4618), - [sym_word] = ACTIONS(3394), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3098), + [anon_sym_RBRACE] = ACTIONS(6366), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2481] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6366), + [sym__concat] = ACTIONS(3422), + [sym_variable_name] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(4646), + [anon_sym_PIPE_AMP] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [sym__special_characters] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_DOLLAR] = ACTIONS(4646), + [sym_raw_string] = ACTIONS(3422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), + [anon_sym_BQUOTE] = ACTIONS(3422), + [anon_sym_LT_LPAREN] = ACTIONS(3422), + [anon_sym_GT_LPAREN] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4646), + [sym_word] = ACTIONS(3424), }, [2482] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3100), [anon_sym_RBRACE] = ACTIONS(6368), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2483] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(4624), - [anon_sym_PIPE_AMP] = ACTIONS(3400), - [anon_sym_AMP_AMP] = ACTIONS(3400), - [anon_sym_PIPE_PIPE] = ACTIONS(3400), - [sym__special_characters] = ACTIONS(4624), - [anon_sym_DQUOTE] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(4624), - [sym_raw_string] = ACTIONS(3400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), - [anon_sym_BQUOTE] = ACTIONS(3400), - [anon_sym_LT_LPAREN] = ACTIONS(3400), - [anon_sym_GT_LPAREN] = ACTIONS(3400), + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_PIPE_AMP] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [sym__special_characters] = ACTIONS(4614), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4614), + [sym_raw_string] = ACTIONS(3293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3293), + [anon_sym_LT_LPAREN] = ACTIONS(3293), + [anon_sym_GT_LPAREN] = ACTIONS(3293), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4624), - [sym_word] = ACTIONS(3402), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4614), + [sym_word] = ACTIONS(3295), }, [2484] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6370), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6370), + [sym_comment] = ACTIONS(56), }, [2485] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), [anon_sym_RBRACE] = ACTIONS(6372), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_comment] = ACTIONS(56), }, [2486] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6374), + [anon_sym_RBRACE] = ACTIONS(6372), + [sym_comment] = ACTIONS(56), }, [2487] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6356), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3104), + [anon_sym_RBRACE] = ACTIONS(6374), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2488] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3106), - [anon_sym_RBRACE] = ACTIONS(6376), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(4622), + [anon_sym_PIPE_AMP] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [sym__special_characters] = ACTIONS(4622), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(4622), + [sym_raw_string] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3357), + [anon_sym_LT_LPAREN] = ACTIONS(3357), + [anon_sym_GT_LPAREN] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4622), + [sym_word] = ACTIONS(3359), }, [2489] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(4634), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(4634), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(4634), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), + [sym_concatenation] = STATE(3107), + [sym_string] = STATE(3106), + [sym_simple_expansion] = STATE(3106), + [sym_string_expansion] = STATE(3106), + [sym_expansion] = STATE(3106), + [sym_command_substitution] = STATE(3106), + [sym_process_substitution] = STATE(3106), + [anon_sym_RBRACE] = ACTIONS(6372), + [sym__special_characters] = ACTIONS(6376), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6378), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4634), - [sym_word] = ACTIONS(3414), + [sym_word] = ACTIONS(6380), }, [2490] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3108), - [anon_sym_RBRACE] = ACTIONS(6378), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(4630), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4630), + [sym_word] = ACTIONS(3404), }, [2491] = { - [sym_file_descriptor] = ACTIONS(4790), - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_PIPE_AMP] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [anon_sym_EQ_TILDE] = ACTIONS(5844), - [anon_sym_EQ_EQ] = ACTIONS(5844), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_GT_GT] = ACTIONS(4790), - [anon_sym_AMP_GT] = ACTIONS(5844), - [anon_sym_AMP_GT_GT] = ACTIONS(4790), - [anon_sym_LT_AMP] = ACTIONS(4790), - [anon_sym_GT_AMP] = ACTIONS(4790), - [anon_sym_LT_LT] = ACTIONS(5844), - [anon_sym_LT_LT_DASH] = ACTIONS(4790), - [anon_sym_LT_LT_LT] = ACTIONS(4790), - [sym__special_characters] = ACTIONS(5844), - [anon_sym_DQUOTE] = ACTIONS(4790), - [anon_sym_DOLLAR] = ACTIONS(5844), - [sym_raw_string] = ACTIONS(4790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4790), - [anon_sym_LT_LPAREN] = ACTIONS(4790), - [anon_sym_GT_LPAREN] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4792), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6382), }, [2492] = { - [sym_file_descriptor] = ACTIONS(4796), - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(5846), - [anon_sym_PIPE_AMP] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4796), - [anon_sym_PIPE_PIPE] = ACTIONS(4796), - [anon_sym_EQ_TILDE] = ACTIONS(5846), - [anon_sym_EQ_EQ] = ACTIONS(5846), - [anon_sym_LT] = ACTIONS(5846), - [anon_sym_GT] = ACTIONS(5846), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_AMP_GT] = ACTIONS(5846), - [anon_sym_AMP_GT_GT] = ACTIONS(4796), - [anon_sym_LT_AMP] = ACTIONS(4796), - [anon_sym_GT_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(5846), - [anon_sym_LT_LT_DASH] = ACTIONS(4796), - [anon_sym_LT_LT_LT] = ACTIONS(4796), - [sym__special_characters] = ACTIONS(5846), - [anon_sym_DQUOTE] = ACTIONS(4796), - [anon_sym_DOLLAR] = ACTIONS(5846), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), - [anon_sym_BQUOTE] = ACTIONS(4796), - [anon_sym_LT_LPAREN] = ACTIONS(4796), - [anon_sym_GT_LPAREN] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4798), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6384), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2493] = { - [sym_file_descriptor] = ACTIONS(4859), - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_PIPE_AMP] = ACTIONS(4859), - [anon_sym_AMP_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4859), - [anon_sym_EQ_TILDE] = ACTIONS(5848), - [anon_sym_EQ_EQ] = ACTIONS(5848), - [anon_sym_LT] = ACTIONS(5848), - [anon_sym_GT] = ACTIONS(5848), - [anon_sym_GT_GT] = ACTIONS(4859), - [anon_sym_AMP_GT] = ACTIONS(5848), - [anon_sym_AMP_GT_GT] = ACTIONS(4859), - [anon_sym_LT_AMP] = ACTIONS(4859), - [anon_sym_GT_AMP] = ACTIONS(4859), - [anon_sym_LT_LT] = ACTIONS(5848), - [anon_sym_LT_LT_DASH] = ACTIONS(4859), - [anon_sym_LT_LT_LT] = ACTIONS(4859), - [sym__special_characters] = ACTIONS(5848), - [anon_sym_DQUOTE] = ACTIONS(4859), - [anon_sym_DOLLAR] = ACTIONS(5848), - [sym_raw_string] = ACTIONS(4859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4859), - [anon_sym_LT_LPAREN] = ACTIONS(4859), - [anon_sym_GT_LPAREN] = ACTIONS(4859), + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(4636), + [anon_sym_PIPE_AMP] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [sym__special_characters] = ACTIONS(4636), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_DOLLAR] = ACTIONS(4636), + [sym_raw_string] = ACTIONS(3410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), + [anon_sym_BQUOTE] = ACTIONS(3410), + [anon_sym_LT_LPAREN] = ACTIONS(3410), + [anon_sym_GT_LPAREN] = ACTIONS(3410), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4861), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4636), + [sym_word] = ACTIONS(3412), }, [2494] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6380), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(6386), }, [2495] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6382), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6388), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2496] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6384), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6390), }, [2497] = { - [anon_sym_RBRACE] = ACTIONS(6384), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6372), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2498] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3113), - [anon_sym_RBRACE] = ACTIONS(6386), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3114), + [anon_sym_RBRACE] = ACTIONS(6392), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2499] = { + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(4646), + [anon_sym_PIPE_AMP] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [sym__special_characters] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_DOLLAR] = ACTIONS(4646), + [sym_raw_string] = ACTIONS(3422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), + [anon_sym_BQUOTE] = ACTIONS(3422), + [anon_sym_LT_LPAREN] = ACTIONS(3422), + [anon_sym_GT_LPAREN] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4646), + [sym_word] = ACTIONS(3424), + }, + [2500] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3116), + [anon_sym_RBRACE] = ACTIONS(6394), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2501] = { + [sym_file_descriptor] = ACTIONS(4802), + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(5860), + [anon_sym_PIPE_AMP] = ACTIONS(4802), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [anon_sym_EQ_TILDE] = ACTIONS(5860), + [anon_sym_EQ_EQ] = ACTIONS(5860), + [anon_sym_LT] = ACTIONS(5860), + [anon_sym_GT] = ACTIONS(5860), + [anon_sym_GT_GT] = ACTIONS(4802), + [anon_sym_AMP_GT] = ACTIONS(5860), + [anon_sym_AMP_GT_GT] = ACTIONS(4802), + [anon_sym_LT_AMP] = ACTIONS(4802), + [anon_sym_GT_AMP] = ACTIONS(4802), + [anon_sym_LT_LT] = ACTIONS(5860), + [anon_sym_LT_LT_DASH] = ACTIONS(4802), + [anon_sym_LT_LT_LT] = ACTIONS(4802), + [sym__special_characters] = ACTIONS(5860), + [anon_sym_DQUOTE] = ACTIONS(4802), + [anon_sym_DOLLAR] = ACTIONS(5860), + [sym_raw_string] = ACTIONS(4802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), + [anon_sym_BQUOTE] = ACTIONS(4802), + [anon_sym_LT_LPAREN] = ACTIONS(4802), + [anon_sym_GT_LPAREN] = ACTIONS(4802), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4804), + }, + [2502] = { + [sym_file_descriptor] = ACTIONS(4808), + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_PIPE_AMP] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), + [anon_sym_EQ_TILDE] = ACTIONS(5862), + [anon_sym_EQ_EQ] = ACTIONS(5862), + [anon_sym_LT] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5862), + [anon_sym_GT_GT] = ACTIONS(4808), + [anon_sym_AMP_GT] = ACTIONS(5862), + [anon_sym_AMP_GT_GT] = ACTIONS(4808), + [anon_sym_LT_AMP] = ACTIONS(4808), + [anon_sym_GT_AMP] = ACTIONS(4808), + [anon_sym_LT_LT] = ACTIONS(5862), + [anon_sym_LT_LT_DASH] = ACTIONS(4808), + [anon_sym_LT_LT_LT] = ACTIONS(4808), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4808), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), + [anon_sym_BQUOTE] = ACTIONS(4808), + [anon_sym_LT_LPAREN] = ACTIONS(4808), + [anon_sym_GT_LPAREN] = ACTIONS(4808), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4810), + }, + [2503] = { [sym_file_descriptor] = ACTIONS(4871), [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_PIPE] = ACTIONS(5864), [anon_sym_PIPE_AMP] = ACTIONS(4871), [anon_sym_AMP_AMP] = ACTIONS(4871), [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_EQ_TILDE] = ACTIONS(5858), - [anon_sym_EQ_EQ] = ACTIONS(5858), - [anon_sym_LT] = ACTIONS(5858), - [anon_sym_GT] = ACTIONS(5858), + [anon_sym_EQ_TILDE] = ACTIONS(5864), + [anon_sym_EQ_EQ] = ACTIONS(5864), + [anon_sym_LT] = ACTIONS(5864), + [anon_sym_GT] = ACTIONS(5864), [anon_sym_GT_GT] = ACTIONS(4871), - [anon_sym_AMP_GT] = ACTIONS(5858), + [anon_sym_AMP_GT] = ACTIONS(5864), [anon_sym_AMP_GT_GT] = ACTIONS(4871), [anon_sym_LT_AMP] = ACTIONS(4871), [anon_sym_GT_AMP] = ACTIONS(4871), - [anon_sym_LT_LT] = ACTIONS(5858), + [anon_sym_LT_LT] = ACTIONS(5864), [anon_sym_LT_LT_DASH] = ACTIONS(4871), [anon_sym_LT_LT_LT] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5858), + [sym__special_characters] = ACTIONS(5864), [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_DOLLAR] = ACTIONS(5864), [sym_raw_string] = ACTIONS(4871), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), @@ -67426,117 +67592,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(4873), }, - [2500] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3115), - [anon_sym_RBRACE] = ACTIONS(6388), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2504] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6396), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2501] = { - [sym_file_descriptor] = ACTIONS(4877), - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_PIPE_AMP] = ACTIONS(4877), - [anon_sym_AMP_AMP] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4877), - [anon_sym_EQ_TILDE] = ACTIONS(5862), - [anon_sym_EQ_EQ] = ACTIONS(5862), - [anon_sym_LT] = ACTIONS(5862), - [anon_sym_GT] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(4877), - [anon_sym_AMP_GT] = ACTIONS(5862), - [anon_sym_AMP_GT_GT] = ACTIONS(4877), - [anon_sym_LT_AMP] = ACTIONS(4877), - [anon_sym_GT_AMP] = ACTIONS(4877), - [anon_sym_LT_LT] = ACTIONS(5862), - [anon_sym_LT_LT_DASH] = ACTIONS(4877), - [anon_sym_LT_LT_LT] = ACTIONS(4877), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(4877), - [anon_sym_LT_LPAREN] = ACTIONS(4877), - [anon_sym_GT_LPAREN] = ACTIONS(4877), + [2505] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6398), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4879), }, - [2502] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3117), - [anon_sym_RBRACE] = ACTIONS(6390), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2506] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6400), + [sym_comment] = ACTIONS(56), + }, + [2507] = { + [anon_sym_RBRACE] = ACTIONS(6400), + [sym_comment] = ACTIONS(56), + }, + [2508] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3121), + [anon_sym_RBRACE] = ACTIONS(6402), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2503] = { + [2509] = { [sym_file_descriptor] = ACTIONS(4883), [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_PIPE] = ACTIONS(5874), [anon_sym_PIPE_AMP] = ACTIONS(4883), [anon_sym_AMP_AMP] = ACTIONS(4883), [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_EQ_TILDE] = ACTIONS(5866), - [anon_sym_EQ_EQ] = ACTIONS(5866), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), + [anon_sym_EQ_TILDE] = ACTIONS(5874), + [anon_sym_EQ_EQ] = ACTIONS(5874), + [anon_sym_LT] = ACTIONS(5874), + [anon_sym_GT] = ACTIONS(5874), [anon_sym_GT_GT] = ACTIONS(4883), - [anon_sym_AMP_GT] = ACTIONS(5866), + [anon_sym_AMP_GT] = ACTIONS(5874), [anon_sym_AMP_GT_GT] = ACTIONS(4883), [anon_sym_LT_AMP] = ACTIONS(4883), [anon_sym_GT_AMP] = ACTIONS(4883), - [anon_sym_LT_LT] = ACTIONS(5866), + [anon_sym_LT_LT] = ACTIONS(5874), [anon_sym_LT_LT_DASH] = ACTIONS(4883), [anon_sym_LT_LT_LT] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5866), + [sym__special_characters] = ACTIONS(5874), [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5866), + [anon_sym_DOLLAR] = ACTIONS(5874), [sym_raw_string] = ACTIONS(4883), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), @@ -67546,57 +67697,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(4885), }, - [2504] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6392), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2510] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3123), + [anon_sym_RBRACE] = ACTIONS(6404), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2505] = { + [2511] = { [sym_file_descriptor] = ACTIONS(4889), [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_PIPE] = ACTIONS(5878), [anon_sym_PIPE_AMP] = ACTIONS(4889), [anon_sym_AMP_AMP] = ACTIONS(4889), [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_EQ_TILDE] = ACTIONS(5870), - [anon_sym_EQ_EQ] = ACTIONS(5870), - [anon_sym_LT] = ACTIONS(5870), - [anon_sym_GT] = ACTIONS(5870), + [anon_sym_EQ_TILDE] = ACTIONS(5878), + [anon_sym_EQ_EQ] = ACTIONS(5878), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_GT] = ACTIONS(5878), [anon_sym_GT_GT] = ACTIONS(4889), - [anon_sym_AMP_GT] = ACTIONS(5870), + [anon_sym_AMP_GT] = ACTIONS(5878), [anon_sym_AMP_GT_GT] = ACTIONS(4889), [anon_sym_LT_AMP] = ACTIONS(4889), [anon_sym_GT_AMP] = ACTIONS(4889), - [anon_sym_LT_LT] = ACTIONS(5870), + [anon_sym_LT_LT] = ACTIONS(5878), [anon_sym_LT_LT_DASH] = ACTIONS(4889), [anon_sym_LT_LT_LT] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5870), + [sym__special_characters] = ACTIONS(5878), [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5870), + [anon_sym_DOLLAR] = ACTIONS(5878), [sym_raw_string] = ACTIONS(4889), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), @@ -67606,1676 +67757,1691 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(4891), }, - [2506] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6394), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2507] = { - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(3056), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - }, - [2508] = { - [aux_sym_concatenation_repeat1] = STATE(2508), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(6396), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_GT] = ACTIONS(3056), - [anon_sym_GT_GT] = ACTIONS(1886), - [anon_sym_AMP_GT] = ACTIONS(3056), - [anon_sym_AMP_GT_GT] = ACTIONS(1886), - [anon_sym_LT_AMP] = ACTIONS(1886), - [anon_sym_GT_AMP] = ACTIONS(1886), - [anon_sym_LT_LT] = ACTIONS(3056), - [anon_sym_LT_LT_DASH] = ACTIONS(1886), - [anon_sym_LT_LT_LT] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - }, - [2509] = { - [sym_file_descriptor] = ACTIONS(1923), - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_PIPE_AMP] = ACTIONS(1923), - [anon_sym_AMP_AMP] = ACTIONS(1923), - [anon_sym_PIPE_PIPE] = ACTIONS(1923), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(1923), - [anon_sym_AMP_GT] = ACTIONS(3061), - [anon_sym_AMP_GT_GT] = ACTIONS(1923), - [anon_sym_LT_AMP] = ACTIONS(1923), - [anon_sym_GT_AMP] = ACTIONS(1923), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_LT_LT_DASH] = ACTIONS(1923), - [anon_sym_LT_LT_LT] = ACTIONS(1923), - [anon_sym_BQUOTE] = ACTIONS(1923), - [sym_comment] = ACTIONS(56), - }, - [2510] = { - [sym_concatenation] = STATE(3123), - [sym_string] = STATE(3122), - [sym_simple_expansion] = STATE(3122), - [sym_string_expansion] = STATE(3122), - [sym_expansion] = STATE(3122), - [sym_command_substitution] = STATE(3122), - [sym_process_substitution] = STATE(3122), - [anon_sym_RBRACE] = ACTIONS(6399), - [sym__special_characters] = ACTIONS(6401), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6403), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6405), - }, - [2511] = { - [sym_file_descriptor] = ACTIONS(1968), - [sym__concat] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1968), - [anon_sym_PIPE_PIPE] = ACTIONS(1968), - [anon_sym_LT] = ACTIONS(3071), - [anon_sym_GT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(1968), - [anon_sym_AMP_GT] = ACTIONS(3071), - [anon_sym_AMP_GT_GT] = ACTIONS(1968), - [anon_sym_LT_AMP] = ACTIONS(1968), - [anon_sym_GT_AMP] = ACTIONS(1968), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_LT_LT_DASH] = ACTIONS(1968), - [anon_sym_LT_LT_LT] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - }, [2512] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3125), + [anon_sym_RBRACE] = ACTIONS(6406), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6407), + [sym_word] = ACTIONS(866), }, [2513] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6409), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(4895), + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(5882), + [anon_sym_PIPE_AMP] = ACTIONS(4895), + [anon_sym_AMP_AMP] = ACTIONS(4895), + [anon_sym_PIPE_PIPE] = ACTIONS(4895), + [anon_sym_EQ_TILDE] = ACTIONS(5882), + [anon_sym_EQ_EQ] = ACTIONS(5882), + [anon_sym_LT] = ACTIONS(5882), + [anon_sym_GT] = ACTIONS(5882), + [anon_sym_GT_GT] = ACTIONS(4895), + [anon_sym_AMP_GT] = ACTIONS(5882), + [anon_sym_AMP_GT_GT] = ACTIONS(4895), + [anon_sym_LT_AMP] = ACTIONS(4895), + [anon_sym_GT_AMP] = ACTIONS(4895), + [anon_sym_LT_LT] = ACTIONS(5882), + [anon_sym_LT_LT_DASH] = ACTIONS(4895), + [anon_sym_LT_LT_LT] = ACTIONS(4895), + [sym__special_characters] = ACTIONS(5882), + [anon_sym_DQUOTE] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(5882), + [sym_raw_string] = ACTIONS(4895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(4895), + [anon_sym_LT_LPAREN] = ACTIONS(4895), + [anon_sym_GT_LPAREN] = ACTIONS(4895), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4897), }, [2514] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(6411), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6408), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2515] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3129), - [anon_sym_RBRACE] = ACTIONS(6413), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6415), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(4901), + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(5886), + [anon_sym_PIPE_AMP] = ACTIONS(4901), + [anon_sym_AMP_AMP] = ACTIONS(4901), + [anon_sym_PIPE_PIPE] = ACTIONS(4901), + [anon_sym_EQ_TILDE] = ACTIONS(5886), + [anon_sym_EQ_EQ] = ACTIONS(5886), + [anon_sym_LT] = ACTIONS(5886), + [anon_sym_GT] = ACTIONS(5886), + [anon_sym_GT_GT] = ACTIONS(4901), + [anon_sym_AMP_GT] = ACTIONS(5886), + [anon_sym_AMP_GT_GT] = ACTIONS(4901), + [anon_sym_LT_AMP] = ACTIONS(4901), + [anon_sym_GT_AMP] = ACTIONS(4901), + [anon_sym_LT_LT] = ACTIONS(5886), + [anon_sym_LT_LT_DASH] = ACTIONS(4901), + [anon_sym_LT_LT_LT] = ACTIONS(4901), + [sym__special_characters] = ACTIONS(5886), + [anon_sym_DQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(5886), + [sym_raw_string] = ACTIONS(4901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4901), + [anon_sym_LT_LPAREN] = ACTIONS(4901), + [anon_sym_GT_LPAREN] = ACTIONS(4901), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4903), }, [2516] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3132), - [anon_sym_RBRACE] = ACTIONS(6417), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6419), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6410), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2517] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3134), - [anon_sym_RBRACE] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6421), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(3066), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(3066), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), }, [2518] = { - [sym_file_descriptor] = ACTIONS(2022), - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PIPE_AMP] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(2022), - [anon_sym_AMP_GT] = ACTIONS(3089), - [anon_sym_AMP_GT_GT] = ACTIONS(2022), - [anon_sym_LT_AMP] = ACTIONS(2022), - [anon_sym_GT_AMP] = ACTIONS(2022), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_LT_LT_DASH] = ACTIONS(2022), - [anon_sym_LT_LT_LT] = ACTIONS(2022), - [anon_sym_BQUOTE] = ACTIONS(2022), + [aux_sym_concatenation_repeat1] = STATE(2518), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(6412), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(3066), + [anon_sym_GT] = ACTIONS(3066), + [anon_sym_GT_GT] = ACTIONS(1890), + [anon_sym_AMP_GT] = ACTIONS(3066), + [anon_sym_AMP_GT_GT] = ACTIONS(1890), + [anon_sym_LT_AMP] = ACTIONS(1890), + [anon_sym_GT_AMP] = ACTIONS(1890), + [anon_sym_LT_LT] = ACTIONS(3066), + [anon_sym_LT_LT_DASH] = ACTIONS(1890), + [anon_sym_LT_LT_LT] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), [sym_comment] = ACTIONS(56), }, [2519] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6423), + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [anon_sym_LT] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3071), + [anon_sym_GT_GT] = ACTIONS(1927), + [anon_sym_AMP_GT] = ACTIONS(3071), + [anon_sym_AMP_GT_GT] = ACTIONS(1927), + [anon_sym_LT_AMP] = ACTIONS(1927), + [anon_sym_GT_AMP] = ACTIONS(1927), + [anon_sym_LT_LT] = ACTIONS(3071), + [anon_sym_LT_LT_DASH] = ACTIONS(1927), + [anon_sym_LT_LT_LT] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), + [sym_comment] = ACTIONS(56), }, [2520] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6425), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(3131), + [sym_string] = STATE(3130), + [sym_simple_expansion] = STATE(3130), + [sym_string_expansion] = STATE(3130), + [sym_expansion] = STATE(3130), + [sym_command_substitution] = STATE(3130), + [sym_process_substitution] = STATE(3130), + [anon_sym_RBRACE] = ACTIONS(6415), + [sym__special_characters] = ACTIONS(6417), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6419), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6421), }, [2521] = { - [sym_file_descriptor] = ACTIONS(2030), - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(2030), - [anon_sym_AMP_AMP] = ACTIONS(2030), - [anon_sym_PIPE_PIPE] = ACTIONS(2030), - [anon_sym_LT] = ACTIONS(3095), - [anon_sym_GT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(2030), - [anon_sym_AMP_GT] = ACTIONS(3095), - [anon_sym_AMP_GT_GT] = ACTIONS(2030), - [anon_sym_LT_AMP] = ACTIONS(2030), - [anon_sym_GT_AMP] = ACTIONS(2030), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_LT_LT_DASH] = ACTIONS(2030), - [anon_sym_LT_LT_LT] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), + [sym_file_descriptor] = ACTIONS(1972), + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(3081), + [anon_sym_PIPE_AMP] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_PIPE_PIPE] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_GT] = ACTIONS(3081), + [anon_sym_GT_GT] = ACTIONS(1972), + [anon_sym_AMP_GT] = ACTIONS(3081), + [anon_sym_AMP_GT_GT] = ACTIONS(1972), + [anon_sym_LT_AMP] = ACTIONS(1972), + [anon_sym_GT_AMP] = ACTIONS(1972), + [anon_sym_LT_LT] = ACTIONS(3081), + [anon_sym_LT_LT_DASH] = ACTIONS(1972), + [anon_sym_LT_LT_LT] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), [sym_comment] = ACTIONS(56), }, [2522] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6427), + [sym_regex_without_right_brace] = ACTIONS(6423), }, [2523] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6399), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6425), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2524] = { - [sym_file_descriptor] = ACTIONS(2190), - [sym__concat] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(3099), - [anon_sym_GT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_AMP_GT] = ACTIONS(3099), - [anon_sym_AMP_GT_GT] = ACTIONS(2190), - [anon_sym_LT_AMP] = ACTIONS(2190), - [anon_sym_GT_AMP] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_LT_LT_DASH] = ACTIONS(2190), - [anon_sym_LT_LT_LT] = ACTIONS(2190), - [anon_sym_BQUOTE] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(6427), [sym_comment] = ACTIONS(56), }, [2525] = { - [sym_file_descriptor] = ACTIONS(2396), - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_PIPE_AMP] = ACTIONS(2396), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_GT_GT] = ACTIONS(2396), - [anon_sym_AMP_GT] = ACTIONS(3101), - [anon_sym_AMP_GT_GT] = ACTIONS(2396), - [anon_sym_LT_AMP] = ACTIONS(2396), - [anon_sym_GT_AMP] = ACTIONS(2396), - [anon_sym_LT_LT] = ACTIONS(3101), - [anon_sym_LT_LT_DASH] = ACTIONS(2396), - [anon_sym_LT_LT_LT] = ACTIONS(2396), - [anon_sym_BQUOTE] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3137), + [anon_sym_RBRACE] = ACTIONS(6429), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6431), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2526] = { - [sym_file_descriptor] = ACTIONS(3283), - [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_GT] = ACTIONS(3285), - [anon_sym_GT_GT] = ACTIONS(3285), - [anon_sym_AMP_GT] = ACTIONS(3285), - [anon_sym_AMP_GT_GT] = ACTIONS(3285), - [anon_sym_LT_AMP] = ACTIONS(3285), - [anon_sym_GT_AMP] = ACTIONS(3285), - [anon_sym_LT_LT] = ACTIONS(3285), - [anon_sym_LT_LT_DASH] = ACTIONS(3285), - [anon_sym_LT_LT_LT] = ACTIONS(3285), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3140), + [anon_sym_RBRACE] = ACTIONS(6433), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6435), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), + [sym_word] = ACTIONS(866), }, [2527] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6429), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3142), + [anon_sym_RBRACE] = ACTIONS(6415), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6437), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2528] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6431), + [sym_file_descriptor] = ACTIONS(2026), + [sym__concat] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_PIPE_AMP] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_LT] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3099), + [anon_sym_GT_GT] = ACTIONS(2026), + [anon_sym_AMP_GT] = ACTIONS(3099), + [anon_sym_AMP_GT_GT] = ACTIONS(2026), + [anon_sym_LT_AMP] = ACTIONS(2026), + [anon_sym_GT_AMP] = ACTIONS(2026), + [anon_sym_LT_LT] = ACTIONS(3099), + [anon_sym_LT_LT_DASH] = ACTIONS(2026), + [anon_sym_LT_LT_LT] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2026), [sym_comment] = ACTIONS(56), }, [2529] = { - [anon_sym_RBRACE] = ACTIONS(6431), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6439), }, [2530] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3141), - [anon_sym_RBRACE] = ACTIONS(6433), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6441), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2531] = { - [sym_file_descriptor] = ACTIONS(3347), - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_GT] = ACTIONS(3349), - [anon_sym_GT_GT] = ACTIONS(3349), - [anon_sym_AMP_GT] = ACTIONS(3349), - [anon_sym_AMP_GT_GT] = ACTIONS(3349), - [anon_sym_LT_AMP] = ACTIONS(3349), - [anon_sym_GT_AMP] = ACTIONS(3349), - [anon_sym_LT_LT] = ACTIONS(3349), - [anon_sym_LT_LT_DASH] = ACTIONS(3349), - [anon_sym_LT_LT_LT] = ACTIONS(3349), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), + [sym_file_descriptor] = ACTIONS(2034), + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PIPE_AMP] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_PIPE_PIPE] = ACTIONS(2034), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_GT] = ACTIONS(3105), + [anon_sym_GT_GT] = ACTIONS(2034), + [anon_sym_AMP_GT] = ACTIONS(3105), + [anon_sym_AMP_GT_GT] = ACTIONS(2034), + [anon_sym_LT_AMP] = ACTIONS(2034), + [anon_sym_GT_AMP] = ACTIONS(2034), + [anon_sym_LT_LT] = ACTIONS(3105), + [anon_sym_LT_LT_DASH] = ACTIONS(2034), + [anon_sym_LT_LT_LT] = ACTIONS(2034), + [anon_sym_BQUOTE] = ACTIONS(2034), + [sym_comment] = ACTIONS(56), }, [2532] = { - [sym_concatenation] = STATE(3144), - [sym_string] = STATE(3143), - [sym_simple_expansion] = STATE(3143), - [sym_string_expansion] = STATE(3143), - [sym_expansion] = STATE(3143), - [sym_command_substitution] = STATE(3143), - [sym_process_substitution] = STATE(3143), - [anon_sym_RBRACE] = ACTIONS(6431), - [sym__special_characters] = ACTIONS(6435), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6437), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6439), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6443), }, [2533] = { - [sym_file_descriptor] = ACTIONS(3392), - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [anon_sym_LT] = ACTIONS(3394), - [anon_sym_GT] = ACTIONS(3394), - [anon_sym_GT_GT] = ACTIONS(3394), - [anon_sym_AMP_GT] = ACTIONS(3394), - [anon_sym_AMP_GT_GT] = ACTIONS(3394), - [anon_sym_LT_AMP] = ACTIONS(3394), - [anon_sym_GT_AMP] = ACTIONS(3394), - [anon_sym_LT_LT] = ACTIONS(3394), - [anon_sym_LT_LT_DASH] = ACTIONS(3394), - [anon_sym_LT_LT_LT] = ACTIONS(3394), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6415), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), + [sym_word] = ACTIONS(866), }, [2534] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6441), + [sym_file_descriptor] = ACTIONS(2196), + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(3109), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(3109), + [anon_sym_GT] = ACTIONS(3109), + [anon_sym_GT_GT] = ACTIONS(2196), + [anon_sym_AMP_GT] = ACTIONS(3109), + [anon_sym_AMP_GT_GT] = ACTIONS(2196), + [anon_sym_LT_AMP] = ACTIONS(2196), + [anon_sym_GT_AMP] = ACTIONS(2196), + [anon_sym_LT_LT] = ACTIONS(3109), + [anon_sym_LT_LT_DASH] = ACTIONS(2196), + [anon_sym_LT_LT_LT] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), + [sym_comment] = ACTIONS(56), }, [2535] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6443), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(2402), + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_PIPE_AMP] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [anon_sym_LT] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3111), + [anon_sym_GT_GT] = ACTIONS(2402), + [anon_sym_AMP_GT] = ACTIONS(3111), + [anon_sym_AMP_GT_GT] = ACTIONS(2402), + [anon_sym_LT_AMP] = ACTIONS(2402), + [anon_sym_GT_AMP] = ACTIONS(2402), + [anon_sym_LT_LT] = ACTIONS(3111), + [anon_sym_LT_LT_DASH] = ACTIONS(2402), + [anon_sym_LT_LT_LT] = ACTIONS(2402), + [anon_sym_BQUOTE] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), }, [2536] = { - [sym_file_descriptor] = ACTIONS(3400), - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(3402), - [anon_sym_GT] = ACTIONS(3402), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_AMP_GT] = ACTIONS(3402), - [anon_sym_AMP_GT_GT] = ACTIONS(3402), - [anon_sym_LT_AMP] = ACTIONS(3402), - [anon_sym_GT_AMP] = ACTIONS(3402), - [anon_sym_LT_LT] = ACTIONS(3402), - [anon_sym_LT_LT_DASH] = ACTIONS(3402), - [anon_sym_LT_LT_LT] = ACTIONS(3402), + [sym_file_descriptor] = ACTIONS(3293), + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_GT] = ACTIONS(3295), + [anon_sym_GT_GT] = ACTIONS(3295), + [anon_sym_AMP_GT] = ACTIONS(3295), + [anon_sym_AMP_GT_GT] = ACTIONS(3295), + [anon_sym_LT_AMP] = ACTIONS(3295), + [anon_sym_GT_AMP] = ACTIONS(3295), + [anon_sym_LT_LT] = ACTIONS(3295), + [anon_sym_LT_LT_DASH] = ACTIONS(3295), + [anon_sym_LT_LT_LT] = ACTIONS(3295), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), }, [2537] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6445), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6445), + [sym_comment] = ACTIONS(56), }, [2538] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), [anon_sym_RBRACE] = ACTIONS(6447), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_comment] = ACTIONS(56), }, [2539] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6449), + [anon_sym_RBRACE] = ACTIONS(6447), + [sym_comment] = ACTIONS(56), }, [2540] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6431), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3149), + [anon_sym_RBRACE] = ACTIONS(6449), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2541] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3151), - [anon_sym_RBRACE] = ACTIONS(6451), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(3357), + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_AMP_GT] = ACTIONS(3359), + [anon_sym_AMP_GT_GT] = ACTIONS(3359), + [anon_sym_LT_AMP] = ACTIONS(3359), + [anon_sym_GT_AMP] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(3359), + [anon_sym_LT_LT_DASH] = ACTIONS(3359), + [anon_sym_LT_LT_LT] = ACTIONS(3359), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), }, [2542] = { - [sym_file_descriptor] = ACTIONS(3412), - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [anon_sym_LT] = ACTIONS(3414), - [anon_sym_GT] = ACTIONS(3414), - [anon_sym_GT_GT] = ACTIONS(3414), - [anon_sym_AMP_GT] = ACTIONS(3414), - [anon_sym_AMP_GT_GT] = ACTIONS(3414), - [anon_sym_LT_AMP] = ACTIONS(3414), - [anon_sym_GT_AMP] = ACTIONS(3414), - [anon_sym_LT_LT] = ACTIONS(3414), - [anon_sym_LT_LT_DASH] = ACTIONS(3414), - [anon_sym_LT_LT_LT] = ACTIONS(3414), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), + [sym_concatenation] = STATE(3152), + [sym_string] = STATE(3151), + [sym_simple_expansion] = STATE(3151), + [sym_string_expansion] = STATE(3151), + [sym_expansion] = STATE(3151), + [sym_command_substitution] = STATE(3151), + [sym_process_substitution] = STATE(3151), + [anon_sym_RBRACE] = ACTIONS(6447), + [sym__special_characters] = ACTIONS(6451), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6453), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6455), }, [2543] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3153), - [anon_sym_RBRACE] = ACTIONS(6453), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(3402), + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_GT] = ACTIONS(3404), + [anon_sym_GT_GT] = ACTIONS(3404), + [anon_sym_AMP_GT] = ACTIONS(3404), + [anon_sym_AMP_GT_GT] = ACTIONS(3404), + [anon_sym_LT_AMP] = ACTIONS(3404), + [anon_sym_GT_AMP] = ACTIONS(3404), + [anon_sym_LT_LT] = ACTIONS(3404), + [anon_sym_LT_LT_DASH] = ACTIONS(3404), + [anon_sym_LT_LT_LT] = ACTIONS(3404), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), }, [2544] = { - [sym_concatenation] = STATE(3157), - [sym_string] = STATE(3156), - [sym_simple_expansion] = STATE(3156), - [sym_string_expansion] = STATE(3156), - [sym_expansion] = STATE(3156), - [sym_command_substitution] = STATE(3156), - [sym_process_substitution] = STATE(3156), - [anon_sym_RBRACE] = ACTIONS(6455), - [sym__special_characters] = ACTIONS(6457), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6459), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6461), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6457), }, [2545] = { - [sym__heredoc_middle] = ACTIONS(1968), - [sym__heredoc_end] = ACTIONS(1968), - [anon_sym_DOLLAR] = ACTIONS(3071), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6459), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2546] = { + [sym_file_descriptor] = ACTIONS(3410), + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_GT] = ACTIONS(3412), + [anon_sym_AMP_GT_GT] = ACTIONS(3412), + [anon_sym_LT_AMP] = ACTIONS(3412), + [anon_sym_GT_AMP] = ACTIONS(3412), + [anon_sym_LT_LT] = ACTIONS(3412), + [anon_sym_LT_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT_LT] = ACTIONS(3412), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6463), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), }, [2547] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6465), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(6461), }, [2548] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(6467), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6463), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2549] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3163), - [anon_sym_RBRACE] = ACTIONS(6469), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6471), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(6465), }, [2550] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3166), - [anon_sym_RBRACE] = ACTIONS(6473), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6475), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6447), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2551] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3168), - [anon_sym_RBRACE] = ACTIONS(6455), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6477), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3159), + [anon_sym_RBRACE] = ACTIONS(6467), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2552] = { - [sym__heredoc_middle] = ACTIONS(2022), - [sym__heredoc_end] = ACTIONS(2022), - [anon_sym_DOLLAR] = ACTIONS(3089), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2022), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(3422), + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(3424), + [anon_sym_AMP_GT] = ACTIONS(3424), + [anon_sym_AMP_GT_GT] = ACTIONS(3424), + [anon_sym_LT_AMP] = ACTIONS(3424), + [anon_sym_GT_AMP] = ACTIONS(3424), + [anon_sym_LT_LT] = ACTIONS(3424), + [anon_sym_LT_LT_DASH] = ACTIONS(3424), + [anon_sym_LT_LT_LT] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), }, [2553] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3161), + [anon_sym_RBRACE] = ACTIONS(6469), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6479), + [sym_word] = ACTIONS(866), }, [2554] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6481), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(3165), + [sym_string] = STATE(3164), + [sym_simple_expansion] = STATE(3164), + [sym_string_expansion] = STATE(3164), + [sym_expansion] = STATE(3164), + [sym_command_substitution] = STATE(3164), + [sym_process_substitution] = STATE(3164), + [anon_sym_RBRACE] = ACTIONS(6471), + [sym__special_characters] = ACTIONS(6473), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6477), }, [2555] = { - [sym__heredoc_middle] = ACTIONS(2030), - [sym__heredoc_end] = ACTIONS(2030), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2030), + [sym__heredoc_middle] = ACTIONS(1972), + [sym__heredoc_end] = ACTIONS(1972), + [anon_sym_DOLLAR] = ACTIONS(3081), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1972), [sym_comment] = ACTIONS(56), }, [2556] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6483), + [sym_regex_without_right_brace] = ACTIONS(6479), }, [2557] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6455), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6481), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2558] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_RBRACK] = ACTIONS(4790), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(6483), [sym_comment] = ACTIONS(56), }, [2559] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_RBRACK] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3171), + [anon_sym_RBRACE] = ACTIONS(6485), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6487), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2560] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_RBRACK] = ACTIONS(4859), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3174), + [anon_sym_RBRACE] = ACTIONS(6489), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6491), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2561] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6485), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3176), + [anon_sym_RBRACE] = ACTIONS(6471), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6493), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2562] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6487), + [sym__heredoc_middle] = ACTIONS(2026), + [sym__heredoc_end] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(3099), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2026), [sym_comment] = ACTIONS(56), }, [2563] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6489), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6495), }, [2564] = { - [anon_sym_RBRACE] = ACTIONS(6489), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6497), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2565] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3176), - [anon_sym_RBRACE] = ACTIONS(6491), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__heredoc_middle] = ACTIONS(2034), + [sym__heredoc_end] = ACTIONS(2034), + [anon_sym_DOLLAR] = ACTIONS(3105), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2034), + [sym_comment] = ACTIONS(56), }, [2566] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6499), + }, + [2567] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6471), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2568] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_RBRACK] = ACTIONS(4802), + [sym_comment] = ACTIONS(56), + }, + [2569] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_RBRACK] = ACTIONS(4808), + [sym_comment] = ACTIONS(56), + }, + [2570] = { [sym__concat] = ACTIONS(4871), [anon_sym_RBRACK] = ACTIONS(4871), [sym_comment] = ACTIONS(56), }, - [2567] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3178), - [anon_sym_RBRACE] = ACTIONS(6493), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2571] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6501), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2568] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_RBRACK] = ACTIONS(4877), + [2572] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6503), [sym_comment] = ACTIONS(56), }, - [2569] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3180), - [anon_sym_RBRACE] = ACTIONS(6495), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [2573] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6505), + [sym_comment] = ACTIONS(56), }, - [2570] = { + [2574] = { + [anon_sym_RBRACE] = ACTIONS(6505), + [sym_comment] = ACTIONS(56), + }, + [2575] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3184), + [anon_sym_RBRACE] = ACTIONS(6507), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2576] = { [sym__concat] = ACTIONS(4883), [anon_sym_RBRACK] = ACTIONS(4883), [sym_comment] = ACTIONS(56), }, - [2571] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6497), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2577] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3186), + [anon_sym_RBRACE] = ACTIONS(6509), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2572] = { + [2578] = { [sym__concat] = ACTIONS(4889), [anon_sym_RBRACK] = ACTIONS(4889), [sym_comment] = ACTIONS(56), }, - [2573] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6499), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2574] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_RPAREN] = ACTIONS(3283), - [sym__special_characters] = ACTIONS(4602), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(4602), - [sym_raw_string] = ACTIONS(3283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), - [anon_sym_BQUOTE] = ACTIONS(3283), - [anon_sym_LT_LPAREN] = ACTIONS(3283), - [anon_sym_GT_LPAREN] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4602), - }, - [2575] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6501), - [sym_comment] = ACTIONS(56), - }, - [2576] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6503), - [sym_comment] = ACTIONS(56), - }, - [2577] = { - [anon_sym_RBRACE] = ACTIONS(6503), - [sym_comment] = ACTIONS(56), - }, - [2578] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3186), - [anon_sym_RBRACE] = ACTIONS(6505), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [2579] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_RPAREN] = ACTIONS(3347), - [sym__special_characters] = ACTIONS(4610), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(3347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), - [anon_sym_BQUOTE] = ACTIONS(3347), - [anon_sym_LT_LPAREN] = ACTIONS(3347), - [anon_sym_GT_LPAREN] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4610), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3188), + [anon_sym_RBRACE] = ACTIONS(6511), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2580] = { - [sym_concatenation] = STATE(3189), - [sym_string] = STATE(3188), - [sym_simple_expansion] = STATE(3188), - [sym_string_expansion] = STATE(3188), - [sym_expansion] = STATE(3188), - [sym_command_substitution] = STATE(3188), - [sym_process_substitution] = STATE(3188), - [anon_sym_RBRACE] = ACTIONS(6503), - [sym__special_characters] = ACTIONS(6507), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6509), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [sym__concat] = ACTIONS(4895), + [anon_sym_RBRACK] = ACTIONS(4895), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6511), }, [2581] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_RPAREN] = ACTIONS(3392), - [sym__special_characters] = ACTIONS(4618), - [anon_sym_DQUOTE] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(4618), - [sym_raw_string] = ACTIONS(3392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), - [anon_sym_BQUOTE] = ACTIONS(3392), - [anon_sym_LT_LPAREN] = ACTIONS(3392), - [anon_sym_GT_LPAREN] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4618), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6513), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2582] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6513), + [sym__concat] = ACTIONS(4901), + [anon_sym_RBRACK] = ACTIONS(4901), + [sym_comment] = ACTIONS(56), }, [2583] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), [anon_sym_RBRACE] = ACTIONS(6515), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2584] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_RPAREN] = ACTIONS(3400), - [sym__special_characters] = ACTIONS(4624), - [anon_sym_DQUOTE] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(4624), - [sym_raw_string] = ACTIONS(3400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), - [anon_sym_BQUOTE] = ACTIONS(3400), - [anon_sym_LT_LPAREN] = ACTIONS(3400), - [anon_sym_GT_LPAREN] = ACTIONS(3400), + [sym__concat] = ACTIONS(3293), + [anon_sym_RPAREN] = ACTIONS(3293), + [sym__special_characters] = ACTIONS(4614), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4614), + [sym_raw_string] = ACTIONS(3293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3293), + [anon_sym_LT_LPAREN] = ACTIONS(3293), + [anon_sym_GT_LPAREN] = ACTIONS(3293), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4624), + [sym_word] = ACTIONS(4614), }, [2585] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6517), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6517), + [sym_comment] = ACTIONS(56), }, [2586] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), [anon_sym_RBRACE] = ACTIONS(6519), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_comment] = ACTIONS(56), }, [2587] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6521), + [anon_sym_RBRACE] = ACTIONS(6519), + [sym_comment] = ACTIONS(56), }, [2588] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6503), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3194), + [anon_sym_RBRACE] = ACTIONS(6521), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2589] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3196), - [anon_sym_RBRACE] = ACTIONS(6523), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(3357), + [anon_sym_RPAREN] = ACTIONS(3357), + [sym__special_characters] = ACTIONS(4622), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(4622), + [sym_raw_string] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3357), + [anon_sym_LT_LPAREN] = ACTIONS(3357), + [anon_sym_GT_LPAREN] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4622), }, [2590] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_RPAREN] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(4634), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(4634), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), + [sym_concatenation] = STATE(3197), + [sym_string] = STATE(3196), + [sym_simple_expansion] = STATE(3196), + [sym_string_expansion] = STATE(3196), + [sym_expansion] = STATE(3196), + [sym_command_substitution] = STATE(3196), + [sym_process_substitution] = STATE(3196), + [anon_sym_RBRACE] = ACTIONS(6519), + [sym__special_characters] = ACTIONS(6523), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4634), + [sym_word] = ACTIONS(6527), }, [2591] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3198), - [anon_sym_RBRACE] = ACTIONS(6525), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(3402), + [anon_sym_RPAREN] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(4630), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4630), }, [2592] = { - [sym_file_descriptor] = ACTIONS(4790), - [sym__concat] = ACTIONS(4790), - [sym_variable_name] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_AMP_GT] = ACTIONS(4792), - [anon_sym_AMP_GT_GT] = ACTIONS(4792), - [anon_sym_LT_AMP] = ACTIONS(4792), - [anon_sym_GT_AMP] = ACTIONS(4792), - [sym__special_characters] = ACTIONS(4792), - [anon_sym_DQUOTE] = ACTIONS(4792), - [anon_sym_DOLLAR] = ACTIONS(4792), - [sym_raw_string] = ACTIONS(4792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), - [anon_sym_BQUOTE] = ACTIONS(4792), - [anon_sym_LT_LPAREN] = ACTIONS(4792), - [anon_sym_GT_LPAREN] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4792), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), + [sym_regex_without_right_brace] = ACTIONS(6529), }, [2593] = { - [sym_file_descriptor] = ACTIONS(4796), - [sym__concat] = ACTIONS(4796), - [sym_variable_name] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4798), - [anon_sym_GT] = ACTIONS(4798), - [anon_sym_GT_GT] = ACTIONS(4798), - [anon_sym_AMP_GT] = ACTIONS(4798), - [anon_sym_AMP_GT_GT] = ACTIONS(4798), - [anon_sym_LT_AMP] = ACTIONS(4798), - [anon_sym_GT_AMP] = ACTIONS(4798), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4798), - [anon_sym_DOLLAR] = ACTIONS(4798), - [sym_raw_string] = ACTIONS(4798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), - [anon_sym_BQUOTE] = ACTIONS(4798), - [anon_sym_LT_LPAREN] = ACTIONS(4798), - [anon_sym_GT_LPAREN] = ACTIONS(4798), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6531), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4798), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), + [sym_word] = ACTIONS(866), }, [2594] = { - [sym_file_descriptor] = ACTIONS(4859), - [sym__concat] = ACTIONS(4859), - [sym_variable_name] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_LT] = ACTIONS(4861), - [anon_sym_GT] = ACTIONS(4861), - [anon_sym_GT_GT] = ACTIONS(4861), - [anon_sym_AMP_GT] = ACTIONS(4861), - [anon_sym_AMP_GT_GT] = ACTIONS(4861), - [anon_sym_LT_AMP] = ACTIONS(4861), - [anon_sym_GT_AMP] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4861), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), + [sym__concat] = ACTIONS(3410), + [anon_sym_RPAREN] = ACTIONS(3410), + [sym__special_characters] = ACTIONS(4636), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_DOLLAR] = ACTIONS(4636), + [sym_raw_string] = ACTIONS(3410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), + [anon_sym_BQUOTE] = ACTIONS(3410), + [anon_sym_LT_LPAREN] = ACTIONS(3410), + [anon_sym_GT_LPAREN] = ACTIONS(3410), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4636), }, [2595] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6527), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(6533), }, [2596] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6529), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6535), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2597] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6531), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6537), }, [2598] = { - [anon_sym_RBRACE] = ACTIONS(6531), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6519), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2599] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3203), - [anon_sym_RBRACE] = ACTIONS(6533), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3204), + [anon_sym_RBRACE] = ACTIONS(6539), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2600] = { + [sym__concat] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [sym__special_characters] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_DOLLAR] = ACTIONS(4646), + [sym_raw_string] = ACTIONS(3422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), + [anon_sym_BQUOTE] = ACTIONS(3422), + [anon_sym_LT_LPAREN] = ACTIONS(3422), + [anon_sym_GT_LPAREN] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4646), + }, + [2601] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3206), + [anon_sym_RBRACE] = ACTIONS(6541), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2602] = { + [sym_file_descriptor] = ACTIONS(4802), + [sym__concat] = ACTIONS(4802), + [sym_variable_name] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_GT_GT] = ACTIONS(4804), + [anon_sym_AMP_GT] = ACTIONS(4804), + [anon_sym_AMP_GT_GT] = ACTIONS(4804), + [anon_sym_LT_AMP] = ACTIONS(4804), + [anon_sym_GT_AMP] = ACTIONS(4804), + [sym__special_characters] = ACTIONS(4804), + [anon_sym_DQUOTE] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4804), + [sym_raw_string] = ACTIONS(4804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), + [anon_sym_BQUOTE] = ACTIONS(4804), + [anon_sym_LT_LPAREN] = ACTIONS(4804), + [anon_sym_GT_LPAREN] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), + }, + [2603] = { + [sym_file_descriptor] = ACTIONS(4808), + [sym__concat] = ACTIONS(4808), + [sym_variable_name] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_GT_GT] = ACTIONS(4810), + [anon_sym_AMP_GT] = ACTIONS(4810), + [anon_sym_AMP_GT_GT] = ACTIONS(4810), + [anon_sym_LT_AMP] = ACTIONS(4810), + [anon_sym_GT_AMP] = ACTIONS(4810), + [sym__special_characters] = ACTIONS(4810), + [anon_sym_DQUOTE] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4810), + [sym_raw_string] = ACTIONS(4810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), + [anon_sym_BQUOTE] = ACTIONS(4810), + [anon_sym_LT_LPAREN] = ACTIONS(4810), + [anon_sym_GT_LPAREN] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), + }, + [2604] = { [sym_file_descriptor] = ACTIONS(4871), [sym__concat] = ACTIONS(4871), [sym_variable_name] = ACTIONS(4871), @@ -69306,96 +69472,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4873), [anon_sym_AMP] = ACTIONS(4873), }, - [2601] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3205), - [anon_sym_RBRACE] = ACTIONS(6535), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2605] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6543), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2602] = { - [sym_file_descriptor] = ACTIONS(4877), - [sym__concat] = ACTIONS(4877), - [sym_variable_name] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_GT_GT] = ACTIONS(4879), - [anon_sym_AMP_GT] = ACTIONS(4879), - [anon_sym_AMP_GT_GT] = ACTIONS(4879), - [anon_sym_LT_AMP] = ACTIONS(4879), - [anon_sym_GT_AMP] = ACTIONS(4879), - [sym__special_characters] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4879), - [sym_raw_string] = ACTIONS(4879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), - [anon_sym_BQUOTE] = ACTIONS(4879), - [anon_sym_LT_LPAREN] = ACTIONS(4879), - [anon_sym_GT_LPAREN] = ACTIONS(4879), + [2606] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6545), + [sym_comment] = ACTIONS(56), + }, + [2607] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6547), + [sym_comment] = ACTIONS(56), + }, + [2608] = { + [anon_sym_RBRACE] = ACTIONS(6547), + [sym_comment] = ACTIONS(56), + }, + [2609] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3211), + [anon_sym_RBRACE] = ACTIONS(6549), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), + [sym_word] = ACTIONS(866), }, - [2603] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3207), - [anon_sym_RBRACE] = ACTIONS(6537), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2604] = { + [2610] = { [sym_file_descriptor] = ACTIONS(4883), [sym__concat] = ACTIONS(4883), [sym_variable_name] = ACTIONS(4883), @@ -69426,36 +69577,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4885), [anon_sym_AMP] = ACTIONS(4885), }, - [2605] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6539), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2611] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3213), + [anon_sym_RBRACE] = ACTIONS(6551), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2606] = { + [2612] = { [sym_file_descriptor] = ACTIONS(4889), [sym__concat] = ACTIONS(4889), [sym_variable_name] = ACTIONS(4889), @@ -69486,441 +69637,484 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4891), [anon_sym_AMP] = ACTIONS(4891), }, - [2607] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6541), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2608] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [sym__special_characters] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_DOLLAR] = ACTIONS(3285), - [sym_raw_string] = ACTIONS(3285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), - [anon_sym_BQUOTE] = ACTIONS(3285), - [anon_sym_LT_LPAREN] = ACTIONS(3285), - [anon_sym_GT_LPAREN] = ACTIONS(3285), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - }, - [2609] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6543), - [sym_comment] = ACTIONS(56), - }, - [2610] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6545), - [sym_comment] = ACTIONS(56), - }, - [2611] = { - [anon_sym_RBRACE] = ACTIONS(6545), - [sym_comment] = ACTIONS(56), - }, - [2612] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3213), - [anon_sym_RBRACE] = ACTIONS(6547), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [2613] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [sym__special_characters] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3349), - [sym_raw_string] = ACTIONS(3349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), - [anon_sym_BQUOTE] = ACTIONS(3349), - [anon_sym_LT_LPAREN] = ACTIONS(3349), - [anon_sym_GT_LPAREN] = ACTIONS(3349), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3215), + [anon_sym_RBRACE] = ACTIONS(6553), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), + [sym_word] = ACTIONS(866), }, [2614] = { - [sym_concatenation] = STATE(3216), - [sym_string] = STATE(3215), - [sym_simple_expansion] = STATE(3215), - [sym_string_expansion] = STATE(3215), - [sym_expansion] = STATE(3215), - [sym_command_substitution] = STATE(3215), - [sym_process_substitution] = STATE(3215), - [anon_sym_RBRACE] = ACTIONS(6545), - [sym__special_characters] = ACTIONS(6549), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6551), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6553), + [sym_file_descriptor] = ACTIONS(4895), + [sym__concat] = ACTIONS(4895), + [sym_variable_name] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_GT_GT] = ACTIONS(4897), + [anon_sym_AMP_GT] = ACTIONS(4897), + [anon_sym_AMP_GT_GT] = ACTIONS(4897), + [anon_sym_LT_AMP] = ACTIONS(4897), + [anon_sym_GT_AMP] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(4897), + [anon_sym_DQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR] = ACTIONS(4897), + [sym_raw_string] = ACTIONS(4897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), + [anon_sym_BQUOTE] = ACTIONS(4897), + [anon_sym_LT_LPAREN] = ACTIONS(4897), + [anon_sym_GT_LPAREN] = ACTIONS(4897), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4897), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), }, [2615] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [sym__special_characters] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_DOLLAR] = ACTIONS(3394), - [sym_raw_string] = ACTIONS(3394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), - [anon_sym_BQUOTE] = ACTIONS(3394), - [anon_sym_LT_LPAREN] = ACTIONS(3394), - [anon_sym_GT_LPAREN] = ACTIONS(3394), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6555), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3394), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), + [sym_word] = ACTIONS(866), }, [2616] = { + [sym_file_descriptor] = ACTIONS(4901), + [sym__concat] = ACTIONS(4901), + [sym_variable_name] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [anon_sym_LT] = ACTIONS(4903), + [anon_sym_GT] = ACTIONS(4903), + [anon_sym_GT_GT] = ACTIONS(4903), + [anon_sym_AMP_GT] = ACTIONS(4903), + [anon_sym_AMP_GT_GT] = ACTIONS(4903), + [anon_sym_LT_AMP] = ACTIONS(4903), + [anon_sym_GT_AMP] = ACTIONS(4903), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4903), + [sym_raw_string] = ACTIONS(4903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), + [anon_sym_BQUOTE] = ACTIONS(4903), + [anon_sym_LT_LPAREN] = ACTIONS(4903), + [anon_sym_GT_LPAREN] = ACTIONS(4903), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6555), + [sym_word] = ACTIONS(4903), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), }, [2617] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), [anon_sym_RBRACE] = ACTIONS(6557), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2618] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(3402), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), + [sym__concat] = ACTIONS(3293), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), + [anon_sym_BQUOTE] = ACTIONS(3295), + [anon_sym_LT_LPAREN] = ACTIONS(3295), + [anon_sym_GT_LPAREN] = ACTIONS(3295), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3402), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), + [sym_word] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), }, [2619] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6559), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6559), + [sym_comment] = ACTIONS(56), }, [2620] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), [anon_sym_RBRACE] = ACTIONS(6561), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_comment] = ACTIONS(56), }, [2621] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6563), + [anon_sym_RBRACE] = ACTIONS(6561), + [sym_comment] = ACTIONS(56), }, [2622] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6545), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3221), + [anon_sym_RBRACE] = ACTIONS(6563), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2623] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3223), - [anon_sym_RBRACE] = ACTIONS(6565), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3357), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), }, [2624] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_DOLLAR] = ACTIONS(3414), - [sym_raw_string] = ACTIONS(3414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), - [anon_sym_BQUOTE] = ACTIONS(3414), - [anon_sym_LT_LPAREN] = ACTIONS(3414), - [anon_sym_GT_LPAREN] = ACTIONS(3414), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), + [sym_concatenation] = STATE(3224), + [sym_string] = STATE(3223), + [sym_simple_expansion] = STATE(3223), + [sym_string_expansion] = STATE(3223), + [sym_expansion] = STATE(3223), + [sym_command_substitution] = STATE(3223), + [sym_process_substitution] = STATE(3223), + [anon_sym_RBRACE] = ACTIONS(6561), + [sym__special_characters] = ACTIONS(6565), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6567), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6569), }, [2625] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3225), - [anon_sym_RBRACE] = ACTIONS(6567), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3402), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [sym__special_characters] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_DOLLAR] = ACTIONS(3404), + [sym_raw_string] = ACTIONS(3404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), + [anon_sym_BQUOTE] = ACTIONS(3404), + [anon_sym_LT_LPAREN] = ACTIONS(3404), + [anon_sym_GT_LPAREN] = ACTIONS(3404), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), }, [2626] = { - [anon_sym_esac] = ACTIONS(2671), - [anon_sym_PIPE] = ACTIONS(2671), - [anon_sym_RPAREN] = ACTIONS(2671), - [anon_sym_SEMI_SEMI] = ACTIONS(2671), - [anon_sym_PIPE_AMP] = ACTIONS(2671), - [anon_sym_AMP_AMP] = ACTIONS(2671), - [anon_sym_PIPE_PIPE] = ACTIONS(2671), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2671), - [anon_sym_LF] = ACTIONS(2671), - [anon_sym_AMP] = ACTIONS(2671), + [sym_regex_without_right_brace] = ACTIONS(6571), }, [2627] = { - [sym__terminated_statement] = STATE(691), - [sym_for_statement] = STATE(692), - [sym_while_statement] = STATE(692), - [sym_if_statement] = STATE(692), - [sym_case_statement] = STATE(692), - [sym_function_definition] = STATE(692), - [sym_subshell] = STATE(692), - [sym_pipeline] = STATE(692), - [sym_list] = STATE(692), - [sym_command] = STATE(692), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(692), - [sym_variable_assignment] = STATE(693), - [sym_declaration_command] = STATE(692), - [sym_unset_command] = STATE(692), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1311), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(6569), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6573), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2628] = { - [sym__terminated_statement] = STATE(699), - [sym_for_statement] = STATE(700), - [sym_while_statement] = STATE(700), - [sym_if_statement] = STATE(700), - [sym_case_statement] = STATE(700), - [sym_function_definition] = STATE(700), - [sym_subshell] = STATE(700), - [sym_pipeline] = STATE(700), - [sym_list] = STATE(700), - [sym_command] = STATE(700), + [sym__concat] = ACTIONS(3410), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(3412), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), + }, + [2629] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6575), + }, + [2630] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6577), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2631] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6579), + }, + [2632] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6561), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2633] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3231), + [anon_sym_RBRACE] = ACTIONS(6581), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2634] = { + [sym__concat] = ACTIONS(3422), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(3424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), + [anon_sym_BQUOTE] = ACTIONS(3424), + [anon_sym_LT_LPAREN] = ACTIONS(3424), + [anon_sym_GT_LPAREN] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), + }, + [2635] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3233), + [anon_sym_RBRACE] = ACTIONS(6583), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2636] = { + [sym__terminated_statement] = STATE(702), + [sym_for_statement] = STATE(703), + [sym_while_statement] = STATE(703), + [sym_if_statement] = STATE(703), + [sym_case_statement] = STATE(703), + [sym_function_definition] = STATE(703), + [sym_subshell] = STATE(703), + [sym_pipeline] = STATE(703), + [sym_list] = STATE(703), + [sym_command] = STATE(703), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(700), - [sym_variable_assignment] = STATE(703), - [sym_declaration_command] = STATE(700), - [sym_unset_command] = STATE(700), + [sym_bracket_command] = STATE(703), + [sym_variable_assignment] = STATE(706), + [sym_declaration_command] = STATE(703), + [sym_unset_command] = STATE(703), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -69930,16 +70124,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1320), + [aux_sym_program_repeat1] = STATE(1326), [aux_sym_command_repeat1] = STATE(33), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(12), [anon_sym_for] = ACTIONS(16), [anon_sym_while] = ACTIONS(18), [anon_sym_if] = ACTIONS(20), - [anon_sym_fi] = ACTIONS(6571), - [anon_sym_elif] = ACTIONS(6571), - [anon_sym_else] = ACTIONS(6571), + [anon_sym_fi] = ACTIONS(6585), + [anon_sym_elif] = ACTIONS(6585), + [anon_sym_else] = ACTIONS(6585), [anon_sym_case] = ACTIONS(22), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), @@ -69971,53 +70165,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [2629] = { - [anon_sym_esac] = ACTIONS(6573), - [anon_sym_PIPE] = ACTIONS(6573), - [anon_sym_RPAREN] = ACTIONS(6573), - [anon_sym_SEMI_SEMI] = ACTIONS(6573), - [anon_sym_PIPE_AMP] = ACTIONS(6573), - [anon_sym_AMP_AMP] = ACTIONS(6573), - [anon_sym_PIPE_PIPE] = ACTIONS(6573), + [2637] = { + [anon_sym_esac] = ACTIONS(6587), + [anon_sym_PIPE] = ACTIONS(6587), + [anon_sym_RPAREN] = ACTIONS(6587), + [anon_sym_SEMI_SEMI] = ACTIONS(6587), + [anon_sym_PIPE_AMP] = ACTIONS(6587), + [anon_sym_AMP_AMP] = ACTIONS(6587), + [anon_sym_PIPE_PIPE] = ACTIONS(6587), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6573), - [anon_sym_LF] = ACTIONS(6573), - [anon_sym_AMP] = ACTIONS(6573), + [anon_sym_SEMI] = ACTIONS(6587), + [anon_sym_LF] = ACTIONS(6587), + [anon_sym_AMP] = ACTIONS(6587), }, - [2630] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1886), + [2638] = { + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1890), [sym_comment] = ACTIONS(56), }, - [2631] = { - [aux_sym_concatenation_repeat1] = STATE(1990), - [sym__concat] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(6575), - [anon_sym_RPAREN] = ACTIONS(6575), + [2639] = { + [aux_sym_concatenation_repeat1] = STATE(1998), + [sym__concat] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(6589), + [anon_sym_RPAREN] = ACTIONS(6589), [sym_comment] = ACTIONS(56), }, - [2632] = { - [aux_sym_concatenation_repeat1] = STATE(1990), - [sym__concat] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(6577), - [anon_sym_RPAREN] = ACTIONS(6577), + [2640] = { + [aux_sym_concatenation_repeat1] = STATE(1998), + [sym__concat] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(6591), + [anon_sym_RPAREN] = ACTIONS(6591), [sym_comment] = ACTIONS(56), }, - [2633] = { - [anon_sym_PIPE] = ACTIONS(6577), - [anon_sym_RPAREN] = ACTIONS(6577), + [2641] = { + [anon_sym_PIPE] = ACTIONS(6591), + [anon_sym_RPAREN] = ACTIONS(6591), [sym_comment] = ACTIONS(56), }, - [2634] = { - [sym__assignment] = STATE(3228), + [2642] = { + [sym__assignment] = STATE(3235), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(6579), - [anon_sym_PLUS_EQ] = ACTIONS(6579), + [anon_sym_EQ] = ACTIONS(6593), + [anon_sym_PLUS_EQ] = ACTIONS(6593), [sym_comment] = ACTIONS(56), }, - [2635] = { - [sym__terminated_statement] = STATE(3229), + [2643] = { + [sym__terminated_statement] = STATE(3236), [sym_for_statement] = STATE(40), [sym_while_statement] = STATE(40), [sym_if_statement] = STATE(40), @@ -70078,25 +70272,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [2636] = { - [anon_sym_esac] = ACTIONS(6581), - [sym__special_characters] = ACTIONS(6583), - [anon_sym_DQUOTE] = ACTIONS(6585), - [anon_sym_DOLLAR] = ACTIONS(6583), - [sym_raw_string] = ACTIONS(6585), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6585), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6585), - [anon_sym_BQUOTE] = ACTIONS(6585), - [anon_sym_LT_LPAREN] = ACTIONS(6585), - [anon_sym_GT_LPAREN] = ACTIONS(6585), + [2644] = { + [anon_sym_esac] = ACTIONS(6595), + [sym__special_characters] = ACTIONS(6597), + [anon_sym_DQUOTE] = ACTIONS(6599), + [anon_sym_DOLLAR] = ACTIONS(6597), + [sym_raw_string] = ACTIONS(6599), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6599), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6599), + [anon_sym_BQUOTE] = ACTIONS(6599), + [anon_sym_LT_LPAREN] = ACTIONS(6599), + [anon_sym_GT_LPAREN] = ACTIONS(6599), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6587), + [sym_word] = ACTIONS(6601), }, - [2637] = { + [2645] = { [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6589), + [sym_word] = ACTIONS(6603), }, - [2638] = { + [2646] = { [sym_concatenation] = STATE(84), [sym_string] = STATE(79), [sym_simple_expansion] = STATE(79), @@ -70104,7 +70298,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(79), [sym_command_substitution] = STATE(79), [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(3231), + [aux_sym_command_repeat2] = STATE(3238), [anon_sym_EQ_TILDE] = ACTIONS(122), [anon_sym_EQ_EQ] = ACTIONS(122), [sym__special_characters] = ACTIONS(124), @@ -70119,7 +70313,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(140), }, - [2639] = { + [2647] = { [sym_concatenation] = STATE(95), [sym_string] = STATE(90), [sym_simple_expansion] = STATE(90), @@ -70127,7 +70321,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(90), [sym_command_substitution] = STATE(90), [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(3232), + [aux_sym_command_repeat2] = STATE(3239), [anon_sym_EQ_TILDE] = ACTIONS(142), [anon_sym_EQ_EQ] = ACTIONS(142), [sym__special_characters] = ACTIONS(144), @@ -70142,75 +70336,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(160), }, - [2640] = { - [sym_variable_assignment] = STATE(3243), - [sym_subscript] = STATE(3244), - [sym_concatenation] = STATE(3243), - [sym_string] = STATE(3237), - [sym_simple_expansion] = STATE(3237), - [sym_string_expansion] = STATE(3237), - [sym_expansion] = STATE(3237), - [sym_command_substitution] = STATE(3237), - [sym_process_substitution] = STATE(3237), - [aux_sym_declaration_command_repeat1] = STATE(3245), - [sym_variable_name] = ACTIONS(6591), + [2648] = { + [sym_variable_assignment] = STATE(3250), + [sym_subscript] = STATE(3251), + [sym_concatenation] = STATE(3250), + [sym_string] = STATE(3244), + [sym_simple_expansion] = STATE(3244), + [sym_string_expansion] = STATE(3244), + [sym_expansion] = STATE(3244), + [sym_command_substitution] = STATE(3244), + [sym_process_substitution] = STATE(3244), + [aux_sym_declaration_command_repeat1] = STATE(3252), + [sym_variable_name] = ACTIONS(6605), [anon_sym_esac] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(164), [anon_sym_SEMI_SEMI] = ACTIONS(164), [anon_sym_PIPE_AMP] = ACTIONS(164), [anon_sym_AMP_AMP] = ACTIONS(164), [anon_sym_PIPE_PIPE] = ACTIONS(164), - [sym__special_characters] = ACTIONS(6593), - [anon_sym_DQUOTE] = ACTIONS(6595), - [anon_sym_DOLLAR] = ACTIONS(6597), - [sym_raw_string] = ACTIONS(6599), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6601), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6603), - [anon_sym_BQUOTE] = ACTIONS(6605), - [anon_sym_LT_LPAREN] = ACTIONS(6607), - [anon_sym_GT_LPAREN] = ACTIONS(6607), + [sym__special_characters] = ACTIONS(6607), + [anon_sym_DQUOTE] = ACTIONS(6609), + [anon_sym_DOLLAR] = ACTIONS(6611), + [sym_raw_string] = ACTIONS(6613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6615), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6617), + [anon_sym_BQUOTE] = ACTIONS(6619), + [anon_sym_LT_LPAREN] = ACTIONS(6621), + [anon_sym_GT_LPAREN] = ACTIONS(6621), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6609), - [sym_word] = ACTIONS(6599), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6623), + [sym_word] = ACTIONS(6613), [anon_sym_SEMI] = ACTIONS(164), [anon_sym_LF] = ACTIONS(164), [anon_sym_AMP] = ACTIONS(164), }, - [2641] = { - [sym_concatenation] = STATE(3255), - [sym_string] = STATE(3249), - [sym_simple_expansion] = STATE(3249), - [sym_string_expansion] = STATE(3249), - [sym_expansion] = STATE(3249), - [sym_command_substitution] = STATE(3249), - [sym_process_substitution] = STATE(3249), - [aux_sym_unset_command_repeat1] = STATE(3256), + [2649] = { + [sym_concatenation] = STATE(3262), + [sym_string] = STATE(3256), + [sym_simple_expansion] = STATE(3256), + [sym_string_expansion] = STATE(3256), + [sym_expansion] = STATE(3256), + [sym_command_substitution] = STATE(3256), + [sym_process_substitution] = STATE(3256), + [aux_sym_unset_command_repeat1] = STATE(3263), [anon_sym_esac] = ACTIONS(186), [anon_sym_PIPE] = ACTIONS(186), [anon_sym_SEMI_SEMI] = ACTIONS(186), [anon_sym_PIPE_AMP] = ACTIONS(186), [anon_sym_AMP_AMP] = ACTIONS(186), [anon_sym_PIPE_PIPE] = ACTIONS(186), - [sym__special_characters] = ACTIONS(6611), - [anon_sym_DQUOTE] = ACTIONS(6613), - [anon_sym_DOLLAR] = ACTIONS(6615), - [sym_raw_string] = ACTIONS(6617), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6619), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6621), - [anon_sym_BQUOTE] = ACTIONS(6623), - [anon_sym_LT_LPAREN] = ACTIONS(6625), - [anon_sym_GT_LPAREN] = ACTIONS(6625), + [sym__special_characters] = ACTIONS(6625), + [anon_sym_DQUOTE] = ACTIONS(6627), + [anon_sym_DOLLAR] = ACTIONS(6629), + [sym_raw_string] = ACTIONS(6631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6635), + [anon_sym_BQUOTE] = ACTIONS(6637), + [anon_sym_LT_LPAREN] = ACTIONS(6639), + [anon_sym_GT_LPAREN] = ACTIONS(6639), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6627), - [sym_word] = ACTIONS(6617), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6641), + [sym_word] = ACTIONS(6631), [anon_sym_SEMI] = ACTIONS(186), [anon_sym_LF] = ACTIONS(186), [anon_sym_AMP] = ACTIONS(186), }, - [2642] = { - [aux_sym_concatenation_repeat1] = STATE(3258), + [2650] = { + [aux_sym_concatenation_repeat1] = STATE(3265), [sym_file_descriptor] = ACTIONS(224), - [sym__concat] = ACTIONS(6629), + [sym__concat] = ACTIONS(6643), [anon_sym_esac] = ACTIONS(228), [anon_sym_PIPE] = ACTIONS(228), [anon_sym_SEMI_SEMI] = ACTIONS(228), @@ -70244,12 +70438,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(228), [anon_sym_AMP] = ACTIONS(228), }, - [2643] = { + [2651] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(3260), - [anon_sym_DQUOTE] = ACTIONS(6631), + [aux_sym_string_repeat1] = STATE(3267), + [anon_sym_DQUOTE] = ACTIONS(6645), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -70257,25 +70451,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [2644] = { - [sym_string] = STATE(3262), - [anon_sym_DQUOTE] = ACTIONS(5541), - [anon_sym_DOLLAR] = ACTIONS(6633), - [sym_raw_string] = ACTIONS(6635), - [anon_sym_POUND] = ACTIONS(6633), - [anon_sym_DASH] = ACTIONS(6633), + [2652] = { + [sym_string] = STATE(3269), + [anon_sym_DQUOTE] = ACTIONS(5557), + [anon_sym_DOLLAR] = ACTIONS(6647), + [sym_raw_string] = ACTIONS(6649), + [anon_sym_POUND] = ACTIONS(6647), + [anon_sym_DASH] = ACTIONS(6647), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6637), - [anon_sym_STAR] = ACTIONS(6633), - [anon_sym_AT] = ACTIONS(6633), - [anon_sym_QMARK] = ACTIONS(6633), - [anon_sym_0] = ACTIONS(6639), - [anon_sym__] = ACTIONS(6639), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6651), + [anon_sym_STAR] = ACTIONS(6647), + [anon_sym_AT] = ACTIONS(6647), + [anon_sym_QMARK] = ACTIONS(6647), + [anon_sym_0] = ACTIONS(6653), + [anon_sym__] = ACTIONS(6653), }, - [2645] = { - [aux_sym_concatenation_repeat1] = STATE(3258), + [2653] = { + [aux_sym_concatenation_repeat1] = STATE(3265), [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(6629), + [sym__concat] = ACTIONS(6643), [anon_sym_esac] = ACTIONS(252), [anon_sym_PIPE] = ACTIONS(252), [anon_sym_SEMI_SEMI] = ACTIONS(252), @@ -70309,35 +70503,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(252), [anon_sym_AMP] = ACTIONS(252), }, - [2646] = { - [sym_subscript] = STATE(3268), - [sym_variable_name] = ACTIONS(6641), - [anon_sym_DOLLAR] = ACTIONS(6643), - [anon_sym_POUND] = ACTIONS(6645), - [anon_sym_DASH] = ACTIONS(6643), + [2654] = { + [sym_subscript] = STATE(3275), + [sym_variable_name] = ACTIONS(6655), + [anon_sym_DOLLAR] = ACTIONS(6657), + [anon_sym_POUND] = ACTIONS(6659), + [anon_sym_DASH] = ACTIONS(6657), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6647), - [anon_sym_STAR] = ACTIONS(6643), - [anon_sym_AT] = ACTIONS(6643), - [anon_sym_QMARK] = ACTIONS(6643), - [anon_sym_0] = ACTIONS(6649), - [anon_sym__] = ACTIONS(6649), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6661), + [anon_sym_STAR] = ACTIONS(6657), + [anon_sym_AT] = ACTIONS(6657), + [anon_sym_QMARK] = ACTIONS(6657), + [anon_sym_0] = ACTIONS(6663), + [anon_sym__] = ACTIONS(6663), }, - [2647] = { - [sym_for_statement] = STATE(3269), - [sym_while_statement] = STATE(3269), - [sym_if_statement] = STATE(3269), - [sym_case_statement] = STATE(3269), - [sym_function_definition] = STATE(3269), - [sym_subshell] = STATE(3269), - [sym_pipeline] = STATE(3269), - [sym_list] = STATE(3269), - [sym_command] = STATE(3269), + [2655] = { + [sym_for_statement] = STATE(3276), + [sym_while_statement] = STATE(3276), + [sym_if_statement] = STATE(3276), + [sym_case_statement] = STATE(3276), + [sym_function_definition] = STATE(3276), + [sym_subshell] = STATE(3276), + [sym_pipeline] = STATE(3276), + [sym_list] = STATE(3276), + [sym_command] = STATE(3276), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(3269), - [sym_variable_assignment] = STATE(3270), - [sym_declaration_command] = STATE(3269), - [sym_unset_command] = STATE(3269), + [sym_bracket_command] = STATE(3276), + [sym_variable_assignment] = STATE(3277), + [sym_declaration_command] = STATE(3276), + [sym_unset_command] = STATE(3276), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -70384,21 +70578,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [2648] = { - [sym_for_statement] = STATE(3271), - [sym_while_statement] = STATE(3271), - [sym_if_statement] = STATE(3271), - [sym_case_statement] = STATE(3271), - [sym_function_definition] = STATE(3271), - [sym_subshell] = STATE(3271), - [sym_pipeline] = STATE(3271), - [sym_list] = STATE(3271), - [sym_command] = STATE(3271), + [2656] = { + [sym_for_statement] = STATE(3278), + [sym_while_statement] = STATE(3278), + [sym_if_statement] = STATE(3278), + [sym_case_statement] = STATE(3278), + [sym_function_definition] = STATE(3278), + [sym_subshell] = STATE(3278), + [sym_pipeline] = STATE(3278), + [sym_list] = STATE(3278), + [sym_command] = STATE(3278), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(3271), - [sym_variable_assignment] = STATE(3272), - [sym_declaration_command] = STATE(3271), - [sym_unset_command] = STATE(3271), + [sym_bracket_command] = STATE(3278), + [sym_variable_assignment] = STATE(3279), + [sym_declaration_command] = STATE(3278), + [sym_unset_command] = STATE(3278), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -70445,21 +70639,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [2649] = { - [sym_for_statement] = STATE(3273), - [sym_while_statement] = STATE(3273), - [sym_if_statement] = STATE(3273), - [sym_case_statement] = STATE(3273), - [sym_function_definition] = STATE(3273), - [sym_subshell] = STATE(3273), - [sym_pipeline] = STATE(3273), - [sym_list] = STATE(3273), - [sym_command] = STATE(3273), + [2657] = { + [sym_for_statement] = STATE(3280), + [sym_while_statement] = STATE(3280), + [sym_if_statement] = STATE(3280), + [sym_case_statement] = STATE(3280), + [sym_function_definition] = STATE(3280), + [sym_subshell] = STATE(3280), + [sym_pipeline] = STATE(3280), + [sym_list] = STATE(3280), + [sym_command] = STATE(3280), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(3273), - [sym_variable_assignment] = STATE(3274), - [sym_declaration_command] = STATE(3273), - [sym_unset_command] = STATE(3273), + [sym_bracket_command] = STATE(3280), + [sym_variable_assignment] = STATE(3281), + [sym_declaration_command] = STATE(3280), + [sym_unset_command] = STATE(3280), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -70506,14 +70700,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [2650] = { - [aux_sym_concatenation_repeat1] = STATE(3258), + [2658] = { + [aux_sym_concatenation_repeat1] = STATE(3265), [sym_file_descriptor] = ACTIONS(250), - [sym__concat] = ACTIONS(6629), + [sym__concat] = ACTIONS(6643), [anon_sym_esac] = ACTIONS(252), [anon_sym_PIPE] = ACTIONS(252), [anon_sym_SEMI_SEMI] = ACTIONS(252), - [anon_sym_LPAREN] = ACTIONS(6651), + [anon_sym_LPAREN] = ACTIONS(6665), [anon_sym_PIPE_AMP] = ACTIONS(252), [anon_sym_AMP_AMP] = ACTIONS(252), [anon_sym_PIPE_PIPE] = ACTIONS(252), @@ -70544,7 +70738,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(252), [anon_sym_AMP] = ACTIONS(252), }, - [2651] = { + [2659] = { [sym_file_descriptor] = ACTIONS(340), [sym_variable_name] = ACTIONS(340), [anon_sym_for] = ACTIONS(342), @@ -70583,74 +70777,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(344), }, - [2652] = { - [anon_sym_esac] = ACTIONS(6653), - [anon_sym_PIPE] = ACTIONS(6655), - [anon_sym_SEMI_SEMI] = ACTIONS(6657), - [anon_sym_PIPE_AMP] = ACTIONS(6655), - [anon_sym_AMP_AMP] = ACTIONS(6659), - [anon_sym_PIPE_PIPE] = ACTIONS(6659), + [2660] = { + [anon_sym_esac] = ACTIONS(6667), + [anon_sym_PIPE] = ACTIONS(6669), + [anon_sym_SEMI_SEMI] = ACTIONS(6671), + [anon_sym_PIPE_AMP] = ACTIONS(6669), + [anon_sym_AMP_AMP] = ACTIONS(6673), + [anon_sym_PIPE_PIPE] = ACTIONS(6673), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6661), - [anon_sym_LF] = ACTIONS(6661), - [anon_sym_AMP] = ACTIONS(6661), + [anon_sym_SEMI] = ACTIONS(6675), + [anon_sym_LF] = ACTIONS(6675), + [anon_sym_AMP] = ACTIONS(6675), }, - [2653] = { + [2661] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(3286), - [sym_string] = STATE(3285), - [sym_simple_expansion] = STATE(3285), - [sym_string_expansion] = STATE(3285), - [sym_expansion] = STATE(3285), - [sym_command_substitution] = STATE(3285), - [sym_process_substitution] = STATE(3285), - [aux_sym_while_statement_repeat1] = STATE(3287), - [aux_sym_command_repeat2] = STATE(3288), - [sym_file_descriptor] = ACTIONS(6663), + [sym_concatenation] = STATE(3293), + [sym_string] = STATE(3292), + [sym_simple_expansion] = STATE(3292), + [sym_string_expansion] = STATE(3292), + [sym_expansion] = STATE(3292), + [sym_command_substitution] = STATE(3292), + [sym_process_substitution] = STATE(3292), + [aux_sym_while_statement_repeat1] = STATE(3294), + [aux_sym_command_repeat2] = STATE(3295), + [sym_file_descriptor] = ACTIONS(6677), [anon_sym_esac] = ACTIONS(354), [anon_sym_PIPE] = ACTIONS(354), [anon_sym_SEMI_SEMI] = ACTIONS(354), [anon_sym_PIPE_AMP] = ACTIONS(354), [anon_sym_AMP_AMP] = ACTIONS(354), [anon_sym_PIPE_PIPE] = ACTIONS(354), - [anon_sym_EQ_TILDE] = ACTIONS(6665), - [anon_sym_EQ_EQ] = ACTIONS(6665), - [anon_sym_LT] = ACTIONS(6667), - [anon_sym_GT] = ACTIONS(6667), - [anon_sym_GT_GT] = ACTIONS(6667), - [anon_sym_AMP_GT] = ACTIONS(6667), - [anon_sym_AMP_GT_GT] = ACTIONS(6667), - [anon_sym_LT_AMP] = ACTIONS(6667), - [anon_sym_GT_AMP] = ACTIONS(6667), + [anon_sym_EQ_TILDE] = ACTIONS(6679), + [anon_sym_EQ_EQ] = ACTIONS(6679), + [anon_sym_LT] = ACTIONS(6681), + [anon_sym_GT] = ACTIONS(6681), + [anon_sym_GT_GT] = ACTIONS(6681), + [anon_sym_AMP_GT] = ACTIONS(6681), + [anon_sym_AMP_GT_GT] = ACTIONS(6681), + [anon_sym_LT_AMP] = ACTIONS(6681), + [anon_sym_GT_AMP] = ACTIONS(6681), [anon_sym_LT_LT] = ACTIONS(360), [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6669), - [sym__special_characters] = ACTIONS(6671), - [anon_sym_DQUOTE] = ACTIONS(6673), - [anon_sym_DOLLAR] = ACTIONS(6675), - [sym_raw_string] = ACTIONS(6677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6681), - [anon_sym_BQUOTE] = ACTIONS(6683), - [anon_sym_LT_LPAREN] = ACTIONS(6685), - [anon_sym_GT_LPAREN] = ACTIONS(6685), + [anon_sym_LT_LT_LT] = ACTIONS(6683), + [sym__special_characters] = ACTIONS(6685), + [anon_sym_DQUOTE] = ACTIONS(6687), + [anon_sym_DOLLAR] = ACTIONS(6689), + [sym_raw_string] = ACTIONS(6691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6695), + [anon_sym_BQUOTE] = ACTIONS(6697), + [anon_sym_LT_LPAREN] = ACTIONS(6699), + [anon_sym_GT_LPAREN] = ACTIONS(6699), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6677), + [sym_word] = ACTIONS(6691), [anon_sym_SEMI] = ACTIONS(354), [anon_sym_LF] = ACTIONS(354), [anon_sym_AMP] = ACTIONS(354), }, - [2654] = { + [2662] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_esac] = ACTIONS(6653), - [anon_sym_PIPE] = ACTIONS(6655), - [anon_sym_SEMI_SEMI] = ACTIONS(6657), - [anon_sym_PIPE_AMP] = ACTIONS(6655), - [anon_sym_AMP_AMP] = ACTIONS(6659), - [anon_sym_PIPE_PIPE] = ACTIONS(6659), + [anon_sym_esac] = ACTIONS(6667), + [anon_sym_PIPE] = ACTIONS(6669), + [anon_sym_SEMI_SEMI] = ACTIONS(6671), + [anon_sym_PIPE_AMP] = ACTIONS(6669), + [anon_sym_AMP_AMP] = ACTIONS(6673), + [anon_sym_PIPE_PIPE] = ACTIONS(6673), [anon_sym_LT] = ACTIONS(382), [anon_sym_GT] = ACTIONS(382), [anon_sym_GT_GT] = ACTIONS(382), @@ -70669,17 +70863,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(6661), - [anon_sym_LF] = ACTIONS(6661), - [anon_sym_AMP] = ACTIONS(6661), + [anon_sym_SEMI] = ACTIONS(6675), + [anon_sym_LF] = ACTIONS(6675), + [anon_sym_AMP] = ACTIONS(6675), }, - [2655] = { - [sym__assignment] = STATE(3228), - [anon_sym_EQ] = ACTIONS(6579), - [anon_sym_PLUS_EQ] = ACTIONS(6579), + [2663] = { + [sym__assignment] = STATE(3235), + [anon_sym_EQ] = ACTIONS(6593), + [anon_sym_PLUS_EQ] = ACTIONS(6593), [sym_comment] = ACTIONS(56), }, - [2656] = { + [2664] = { [sym_file_descriptor] = ACTIONS(250), [anon_sym_esac] = ACTIONS(252), [anon_sym_PIPE] = ACTIONS(252), @@ -70714,52 +70908,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(252), [anon_sym_AMP] = ACTIONS(252), }, - [2657] = { - [sym__terminated_statement] = STATE(2651), - [sym_for_statement] = STATE(3290), - [sym_while_statement] = STATE(3290), - [sym_if_statement] = STATE(3290), - [sym_case_statement] = STATE(3290), - [sym_function_definition] = STATE(3290), - [sym_subshell] = STATE(3290), - [sym_pipeline] = STATE(3290), - [sym_list] = STATE(3290), - [sym_command] = STATE(3290), - [sym_command_name] = STATE(2653), - [sym_bracket_command] = STATE(3290), - [sym_variable_assignment] = STATE(3291), - [sym_declaration_command] = STATE(3290), - [sym_unset_command] = STATE(3290), - [sym_subscript] = STATE(2655), + [2665] = { + [sym__terminated_statement] = STATE(2659), + [sym_for_statement] = STATE(3297), + [sym_while_statement] = STATE(3297), + [sym_if_statement] = STATE(3297), + [sym_case_statement] = STATE(3297), + [sym_function_definition] = STATE(3297), + [sym_subshell] = STATE(3297), + [sym_pipeline] = STATE(3297), + [sym_list] = STATE(3297), + [sym_command] = STATE(3297), + [sym_command_name] = STATE(2661), + [sym_bracket_command] = STATE(3297), + [sym_variable_assignment] = STATE(3298), + [sym_declaration_command] = STATE(3297), + [sym_unset_command] = STATE(3297), + [sym_subscript] = STATE(2663), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2656), - [sym_string] = STATE(2645), - [sym_simple_expansion] = STATE(2645), - [sym_string_expansion] = STATE(2645), - [sym_expansion] = STATE(2645), - [sym_command_substitution] = STATE(2645), - [sym_process_substitution] = STATE(2645), - [aux_sym_program_repeat1] = STATE(3292), - [aux_sym_command_repeat1] = STATE(2658), + [sym_concatenation] = STATE(2664), + [sym_string] = STATE(2653), + [sym_simple_expansion] = STATE(2653), + [sym_string_expansion] = STATE(2653), + [sym_expansion] = STATE(2653), + [sym_command_substitution] = STATE(2653), + [sym_process_substitution] = STATE(2653), + [aux_sym_program_repeat1] = STATE(3299), + [aux_sym_command_repeat1] = STATE(2666), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5521), + [sym_variable_name] = ACTIONS(5537), [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5523), + [anon_sym_while] = ACTIONS(5539), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(6581), - [anon_sym_SEMI_SEMI] = ACTIONS(6687), - [anon_sym_function] = ACTIONS(5529), + [anon_sym_esac] = ACTIONS(6595), + [anon_sym_SEMI_SEMI] = ACTIONS(6701), + [anon_sym_function] = ACTIONS(5545), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), - [anon_sym_declare] = ACTIONS(5535), - [anon_sym_typeset] = ACTIONS(5535), - [anon_sym_export] = ACTIONS(5535), - [anon_sym_readonly] = ACTIONS(5535), - [anon_sym_local] = ACTIONS(5535), - [anon_sym_unset] = ACTIONS(5537), - [anon_sym_unsetenv] = ACTIONS(5537), + [anon_sym_LBRACK] = ACTIONS(5547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), + [anon_sym_declare] = ACTIONS(5551), + [anon_sym_typeset] = ACTIONS(5551), + [anon_sym_export] = ACTIONS(5551), + [anon_sym_readonly] = ACTIONS(5551), + [anon_sym_local] = ACTIONS(5551), + [anon_sym_unset] = ACTIONS(5553), + [anon_sym_unsetenv] = ACTIONS(5553), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -70767,30 +70961,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5539), - [anon_sym_DQUOTE] = ACTIONS(5541), - [anon_sym_DOLLAR] = ACTIONS(5543), - [sym_raw_string] = ACTIONS(5545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), - [anon_sym_BQUOTE] = ACTIONS(5551), - [anon_sym_LT_LPAREN] = ACTIONS(5553), - [anon_sym_GT_LPAREN] = ACTIONS(5553), + [sym__special_characters] = ACTIONS(5555), + [anon_sym_DQUOTE] = ACTIONS(5557), + [anon_sym_DOLLAR] = ACTIONS(5559), + [sym_raw_string] = ACTIONS(5561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), + [anon_sym_BQUOTE] = ACTIONS(5567), + [anon_sym_LT_LPAREN] = ACTIONS(5569), + [anon_sym_GT_LPAREN] = ACTIONS(5569), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5555), + [sym_word] = ACTIONS(5571), }, - [2658] = { - [sym_command_name] = STATE(3293), + [2666] = { + [sym_command_name] = STATE(3300), [sym_variable_assignment] = STATE(30), [sym_subscript] = STATE(214), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2656), - [sym_string] = STATE(2645), - [sym_simple_expansion] = STATE(2645), - [sym_string_expansion] = STATE(2645), - [sym_expansion] = STATE(2645), - [sym_command_substitution] = STATE(2645), - [sym_process_substitution] = STATE(2645), + [sym_concatenation] = STATE(2664), + [sym_string] = STATE(2653), + [sym_simple_expansion] = STATE(2653), + [sym_string_expansion] = STATE(2653), + [sym_expansion] = STATE(2653), + [sym_command_substitution] = STATE(2653), + [sym_process_substitution] = STATE(2653), [aux_sym_command_repeat1] = STATE(215), [sym_file_descriptor] = ACTIONS(10), [sym_variable_name] = ACTIONS(388), @@ -70801,64 +70995,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(6689), - [anon_sym_DQUOTE] = ACTIONS(5541), - [anon_sym_DOLLAR] = ACTIONS(5543), - [sym_raw_string] = ACTIONS(5545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), - [anon_sym_BQUOTE] = ACTIONS(5551), - [anon_sym_LT_LPAREN] = ACTIONS(5553), - [anon_sym_GT_LPAREN] = ACTIONS(5553), + [sym__special_characters] = ACTIONS(6703), + [anon_sym_DQUOTE] = ACTIONS(5557), + [anon_sym_DOLLAR] = ACTIONS(5559), + [sym_raw_string] = ACTIONS(5561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), + [anon_sym_BQUOTE] = ACTIONS(5567), + [anon_sym_LT_LPAREN] = ACTIONS(5569), + [anon_sym_GT_LPAREN] = ACTIONS(5569), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6691), + [sym_word] = ACTIONS(6705), }, - [2659] = { - [sym__terminated_statement] = STATE(2651), - [sym_for_statement] = STATE(3290), - [sym_while_statement] = STATE(3290), - [sym_if_statement] = STATE(3290), - [sym_case_statement] = STATE(3290), - [sym_function_definition] = STATE(3290), - [sym_subshell] = STATE(3290), - [sym_pipeline] = STATE(3290), - [sym_list] = STATE(3290), - [sym_command] = STATE(3290), - [sym_command_name] = STATE(2653), - [sym_bracket_command] = STATE(3290), - [sym_variable_assignment] = STATE(3291), - [sym_declaration_command] = STATE(3290), - [sym_unset_command] = STATE(3290), - [sym_subscript] = STATE(2655), + [2667] = { + [sym__terminated_statement] = STATE(2659), + [sym_for_statement] = STATE(3297), + [sym_while_statement] = STATE(3297), + [sym_if_statement] = STATE(3297), + [sym_case_statement] = STATE(3297), + [sym_function_definition] = STATE(3297), + [sym_subshell] = STATE(3297), + [sym_pipeline] = STATE(3297), + [sym_list] = STATE(3297), + [sym_command] = STATE(3297), + [sym_command_name] = STATE(2661), + [sym_bracket_command] = STATE(3297), + [sym_variable_assignment] = STATE(3298), + [sym_declaration_command] = STATE(3297), + [sym_unset_command] = STATE(3297), + [sym_subscript] = STATE(2663), [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2656), - [sym_string] = STATE(2645), - [sym_simple_expansion] = STATE(2645), - [sym_string_expansion] = STATE(2645), - [sym_expansion] = STATE(2645), - [sym_command_substitution] = STATE(2645), - [sym_process_substitution] = STATE(2645), - [aux_sym_program_repeat1] = STATE(3294), - [aux_sym_command_repeat1] = STATE(2658), + [sym_concatenation] = STATE(2664), + [sym_string] = STATE(2653), + [sym_simple_expansion] = STATE(2653), + [sym_string_expansion] = STATE(2653), + [sym_expansion] = STATE(2653), + [sym_command_substitution] = STATE(2653), + [sym_process_substitution] = STATE(2653), + [aux_sym_program_repeat1] = STATE(3301), + [aux_sym_command_repeat1] = STATE(2666), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5521), + [sym_variable_name] = ACTIONS(5537), [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5523), + [anon_sym_while] = ACTIONS(5539), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(6581), - [anon_sym_SEMI_SEMI] = ACTIONS(6687), - [anon_sym_function] = ACTIONS(5529), + [anon_sym_esac] = ACTIONS(6595), + [anon_sym_SEMI_SEMI] = ACTIONS(6701), + [anon_sym_function] = ACTIONS(5545), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), - [anon_sym_declare] = ACTIONS(5535), - [anon_sym_typeset] = ACTIONS(5535), - [anon_sym_export] = ACTIONS(5535), - [anon_sym_readonly] = ACTIONS(5535), - [anon_sym_local] = ACTIONS(5535), - [anon_sym_unset] = ACTIONS(5537), - [anon_sym_unsetenv] = ACTIONS(5537), + [anon_sym_LBRACK] = ACTIONS(5547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), + [anon_sym_declare] = ACTIONS(5551), + [anon_sym_typeset] = ACTIONS(5551), + [anon_sym_export] = ACTIONS(5551), + [anon_sym_readonly] = ACTIONS(5551), + [anon_sym_local] = ACTIONS(5551), + [anon_sym_unset] = ACTIONS(5553), + [anon_sym_unsetenv] = ACTIONS(5553), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -70866,72 +71060,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5539), - [anon_sym_DQUOTE] = ACTIONS(5541), - [anon_sym_DOLLAR] = ACTIONS(5543), - [sym_raw_string] = ACTIONS(5545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), - [anon_sym_BQUOTE] = ACTIONS(5551), - [anon_sym_LT_LPAREN] = ACTIONS(5553), - [anon_sym_GT_LPAREN] = ACTIONS(5553), + [sym__special_characters] = ACTIONS(5555), + [anon_sym_DQUOTE] = ACTIONS(5557), + [anon_sym_DOLLAR] = ACTIONS(5559), + [sym_raw_string] = ACTIONS(5561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), + [anon_sym_BQUOTE] = ACTIONS(5567), + [anon_sym_LT_LPAREN] = ACTIONS(5569), + [anon_sym_GT_LPAREN] = ACTIONS(5569), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5555), + [sym_word] = ACTIONS(5571), }, - [2660] = { - [aux_sym_case_item_repeat1] = STATE(2660), - [anon_sym_PIPE] = ACTIONS(6693), - [anon_sym_RPAREN] = ACTIONS(6577), + [2668] = { + [aux_sym_case_item_repeat1] = STATE(2668), + [anon_sym_PIPE] = ACTIONS(6707), + [anon_sym_RPAREN] = ACTIONS(6591), [sym_comment] = ACTIONS(56), }, - [2661] = { - [aux_sym_concatenation_repeat1] = STATE(2661), - [sym__concat] = ACTIONS(6696), - [anon_sym_PIPE] = ACTIONS(1886), - [anon_sym_RPAREN] = ACTIONS(1886), + [2669] = { + [aux_sym_concatenation_repeat1] = STATE(2669), + [sym__concat] = ACTIONS(6710), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(1890), [sym_comment] = ACTIONS(56), }, - [2662] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1923), - [anon_sym_RPAREN] = ACTIONS(1923), + [2670] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1927), + [anon_sym_RPAREN] = ACTIONS(1927), [sym_comment] = ACTIONS(56), }, - [2663] = { - [anon_sym_esac] = ACTIONS(6699), - [sym__special_characters] = ACTIONS(6701), - [anon_sym_DQUOTE] = ACTIONS(6703), - [anon_sym_DOLLAR] = ACTIONS(6701), - [sym_raw_string] = ACTIONS(6703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6703), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), - [anon_sym_BQUOTE] = ACTIONS(6703), - [anon_sym_LT_LPAREN] = ACTIONS(6703), - [anon_sym_GT_LPAREN] = ACTIONS(6703), + [2671] = { + [anon_sym_esac] = ACTIONS(6713), + [sym__special_characters] = ACTIONS(6715), + [anon_sym_DQUOTE] = ACTIONS(6717), + [anon_sym_DOLLAR] = ACTIONS(6715), + [sym_raw_string] = ACTIONS(6717), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6717), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6717), + [anon_sym_BQUOTE] = ACTIONS(6717), + [anon_sym_LT_LPAREN] = ACTIONS(6717), + [anon_sym_GT_LPAREN] = ACTIONS(6717), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6705), + [sym_word] = ACTIONS(6719), }, - [2664] = { - [anon_sym_esac] = ACTIONS(6707), - [anon_sym_PIPE] = ACTIONS(6655), - [anon_sym_SEMI_SEMI] = ACTIONS(6709), - [anon_sym_PIPE_AMP] = ACTIONS(6655), - [anon_sym_AMP_AMP] = ACTIONS(6659), - [anon_sym_PIPE_PIPE] = ACTIONS(6659), + [2672] = { + [anon_sym_esac] = ACTIONS(6721), + [anon_sym_PIPE] = ACTIONS(6669), + [anon_sym_SEMI_SEMI] = ACTIONS(6723), + [anon_sym_PIPE_AMP] = ACTIONS(6669), + [anon_sym_AMP_AMP] = ACTIONS(6673), + [anon_sym_PIPE_PIPE] = ACTIONS(6673), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6661), - [anon_sym_LF] = ACTIONS(6661), - [anon_sym_AMP] = ACTIONS(6661), + [anon_sym_SEMI] = ACTIONS(6675), + [anon_sym_LF] = ACTIONS(6675), + [anon_sym_AMP] = ACTIONS(6675), }, - [2665] = { + [2673] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_esac] = ACTIONS(6707), - [anon_sym_PIPE] = ACTIONS(6655), - [anon_sym_SEMI_SEMI] = ACTIONS(6709), - [anon_sym_PIPE_AMP] = ACTIONS(6655), - [anon_sym_AMP_AMP] = ACTIONS(6659), - [anon_sym_PIPE_PIPE] = ACTIONS(6659), + [anon_sym_esac] = ACTIONS(6721), + [anon_sym_PIPE] = ACTIONS(6669), + [anon_sym_SEMI_SEMI] = ACTIONS(6723), + [anon_sym_PIPE_AMP] = ACTIONS(6669), + [anon_sym_AMP_AMP] = ACTIONS(6673), + [anon_sym_PIPE_PIPE] = ACTIONS(6673), [anon_sym_LT] = ACTIONS(382), [anon_sym_GT] = ACTIONS(382), [anon_sym_GT_GT] = ACTIONS(382), @@ -70950,545 +71144,460 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(6661), - [anon_sym_LF] = ACTIONS(6661), - [anon_sym_AMP] = ACTIONS(6661), - }, - [2666] = { - [sym__terminated_statement] = STATE(2651), - [sym_for_statement] = STATE(3297), - [sym_while_statement] = STATE(3297), - [sym_if_statement] = STATE(3297), - [sym_case_statement] = STATE(3297), - [sym_function_definition] = STATE(3297), - [sym_subshell] = STATE(3297), - [sym_pipeline] = STATE(3297), - [sym_list] = STATE(3297), - [sym_command] = STATE(3297), - [sym_command_name] = STATE(2653), - [sym_bracket_command] = STATE(3297), - [sym_variable_assignment] = STATE(3298), - [sym_declaration_command] = STATE(3297), - [sym_unset_command] = STATE(3297), - [sym_subscript] = STATE(2655), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2656), - [sym_string] = STATE(2645), - [sym_simple_expansion] = STATE(2645), - [sym_string_expansion] = STATE(2645), - [sym_expansion] = STATE(2645), - [sym_command_substitution] = STATE(2645), - [sym_process_substitution] = STATE(2645), - [aux_sym_program_repeat1] = STATE(3292), - [aux_sym_command_repeat1] = STATE(2658), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5521), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5523), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(6699), - [anon_sym_SEMI_SEMI] = ACTIONS(6711), - [anon_sym_function] = ACTIONS(5529), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), - [anon_sym_declare] = ACTIONS(5535), - [anon_sym_typeset] = ACTIONS(5535), - [anon_sym_export] = ACTIONS(5535), - [anon_sym_readonly] = ACTIONS(5535), - [anon_sym_local] = ACTIONS(5535), - [anon_sym_unset] = ACTIONS(5537), - [anon_sym_unsetenv] = ACTIONS(5537), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5539), - [anon_sym_DQUOTE] = ACTIONS(5541), - [anon_sym_DOLLAR] = ACTIONS(5543), - [sym_raw_string] = ACTIONS(5545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), - [anon_sym_BQUOTE] = ACTIONS(5551), - [anon_sym_LT_LPAREN] = ACTIONS(5553), - [anon_sym_GT_LPAREN] = ACTIONS(5553), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5555), - }, - [2667] = { - [sym__terminated_statement] = STATE(2651), - [sym_for_statement] = STATE(3297), - [sym_while_statement] = STATE(3297), - [sym_if_statement] = STATE(3297), - [sym_case_statement] = STATE(3297), - [sym_function_definition] = STATE(3297), - [sym_subshell] = STATE(3297), - [sym_pipeline] = STATE(3297), - [sym_list] = STATE(3297), - [sym_command] = STATE(3297), - [sym_command_name] = STATE(2653), - [sym_bracket_command] = STATE(3297), - [sym_variable_assignment] = STATE(3298), - [sym_declaration_command] = STATE(3297), - [sym_unset_command] = STATE(3297), - [sym_subscript] = STATE(2655), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2656), - [sym_string] = STATE(2645), - [sym_simple_expansion] = STATE(2645), - [sym_string_expansion] = STATE(2645), - [sym_expansion] = STATE(2645), - [sym_command_substitution] = STATE(2645), - [sym_process_substitution] = STATE(2645), - [aux_sym_program_repeat1] = STATE(3299), - [aux_sym_command_repeat1] = STATE(2658), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5521), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5523), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(6699), - [anon_sym_SEMI_SEMI] = ACTIONS(6711), - [anon_sym_function] = ACTIONS(5529), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), - [anon_sym_declare] = ACTIONS(5535), - [anon_sym_typeset] = ACTIONS(5535), - [anon_sym_export] = ACTIONS(5535), - [anon_sym_readonly] = ACTIONS(5535), - [anon_sym_local] = ACTIONS(5535), - [anon_sym_unset] = ACTIONS(5537), - [anon_sym_unsetenv] = ACTIONS(5537), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5539), - [anon_sym_DQUOTE] = ACTIONS(5541), - [anon_sym_DOLLAR] = ACTIONS(5543), - [sym_raw_string] = ACTIONS(5545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), - [anon_sym_BQUOTE] = ACTIONS(5551), - [anon_sym_LT_LPAREN] = ACTIONS(5553), - [anon_sym_GT_LPAREN] = ACTIONS(5553), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5555), - }, - [2668] = { - [sym_concatenation] = STATE(3303), - [sym_string] = STATE(3302), - [sym_simple_expansion] = STATE(3302), - [sym_string_expansion] = STATE(3302), - [sym_expansion] = STATE(3302), - [sym_command_substitution] = STATE(3302), - [sym_process_substitution] = STATE(3302), - [anon_sym_RBRACE] = ACTIONS(6713), - [sym__special_characters] = ACTIONS(6715), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6717), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6719), - }, - [2669] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1968), - [anon_sym_RPAREN] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), - }, - [2670] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6721), - }, - [2671] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6723), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2672] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(6725), - [sym_comment] = ACTIONS(56), - }, - [2673] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3309), - [anon_sym_RBRACE] = ACTIONS(6727), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6729), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(6675), + [anon_sym_LF] = ACTIONS(6675), + [anon_sym_AMP] = ACTIONS(6675), }, [2674] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3312), - [anon_sym_RBRACE] = ACTIONS(6731), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6733), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__terminated_statement] = STATE(2659), + [sym_for_statement] = STATE(3304), + [sym_while_statement] = STATE(3304), + [sym_if_statement] = STATE(3304), + [sym_case_statement] = STATE(3304), + [sym_function_definition] = STATE(3304), + [sym_subshell] = STATE(3304), + [sym_pipeline] = STATE(3304), + [sym_list] = STATE(3304), + [sym_command] = STATE(3304), + [sym_command_name] = STATE(2661), + [sym_bracket_command] = STATE(3304), + [sym_variable_assignment] = STATE(3305), + [sym_declaration_command] = STATE(3304), + [sym_unset_command] = STATE(3304), + [sym_subscript] = STATE(2663), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(2664), + [sym_string] = STATE(2653), + [sym_simple_expansion] = STATE(2653), + [sym_string_expansion] = STATE(2653), + [sym_expansion] = STATE(2653), + [sym_command_substitution] = STATE(2653), + [sym_process_substitution] = STATE(2653), + [aux_sym_program_repeat1] = STATE(3299), + [aux_sym_command_repeat1] = STATE(2666), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(5537), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(5539), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_esac] = ACTIONS(6713), + [anon_sym_SEMI_SEMI] = ACTIONS(6725), + [anon_sym_function] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(5547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), + [anon_sym_declare] = ACTIONS(5551), + [anon_sym_typeset] = ACTIONS(5551), + [anon_sym_export] = ACTIONS(5551), + [anon_sym_readonly] = ACTIONS(5551), + [anon_sym_local] = ACTIONS(5551), + [anon_sym_unset] = ACTIONS(5553), + [anon_sym_unsetenv] = ACTIONS(5553), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(5555), + [anon_sym_DQUOTE] = ACTIONS(5557), + [anon_sym_DOLLAR] = ACTIONS(5559), + [sym_raw_string] = ACTIONS(5561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), + [anon_sym_BQUOTE] = ACTIONS(5567), + [anon_sym_LT_LPAREN] = ACTIONS(5569), + [anon_sym_GT_LPAREN] = ACTIONS(5569), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5571), }, [2675] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3314), - [anon_sym_RBRACE] = ACTIONS(6713), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6735), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__terminated_statement] = STATE(2659), + [sym_for_statement] = STATE(3304), + [sym_while_statement] = STATE(3304), + [sym_if_statement] = STATE(3304), + [sym_case_statement] = STATE(3304), + [sym_function_definition] = STATE(3304), + [sym_subshell] = STATE(3304), + [sym_pipeline] = STATE(3304), + [sym_list] = STATE(3304), + [sym_command] = STATE(3304), + [sym_command_name] = STATE(2661), + [sym_bracket_command] = STATE(3304), + [sym_variable_assignment] = STATE(3305), + [sym_declaration_command] = STATE(3304), + [sym_unset_command] = STATE(3304), + [sym_subscript] = STATE(2663), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(2664), + [sym_string] = STATE(2653), + [sym_simple_expansion] = STATE(2653), + [sym_string_expansion] = STATE(2653), + [sym_expansion] = STATE(2653), + [sym_command_substitution] = STATE(2653), + [sym_process_substitution] = STATE(2653), + [aux_sym_program_repeat1] = STATE(3306), + [aux_sym_command_repeat1] = STATE(2666), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(5537), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(5539), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_esac] = ACTIONS(6713), + [anon_sym_SEMI_SEMI] = ACTIONS(6725), + [anon_sym_function] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(5547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), + [anon_sym_declare] = ACTIONS(5551), + [anon_sym_typeset] = ACTIONS(5551), + [anon_sym_export] = ACTIONS(5551), + [anon_sym_readonly] = ACTIONS(5551), + [anon_sym_local] = ACTIONS(5551), + [anon_sym_unset] = ACTIONS(5553), + [anon_sym_unsetenv] = ACTIONS(5553), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(5555), + [anon_sym_DQUOTE] = ACTIONS(5557), + [anon_sym_DOLLAR] = ACTIONS(5559), + [sym_raw_string] = ACTIONS(5561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), + [anon_sym_BQUOTE] = ACTIONS(5567), + [anon_sym_LT_LPAREN] = ACTIONS(5569), + [anon_sym_GT_LPAREN] = ACTIONS(5569), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5571), }, [2676] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2022), - [anon_sym_RPAREN] = ACTIONS(2022), + [sym_concatenation] = STATE(3310), + [sym_string] = STATE(3309), + [sym_simple_expansion] = STATE(3309), + [sym_string_expansion] = STATE(3309), + [sym_expansion] = STATE(3309), + [sym_command_substitution] = STATE(3309), + [sym_process_substitution] = STATE(3309), + [anon_sym_RBRACE] = ACTIONS(6727), + [sym__special_characters] = ACTIONS(6729), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6731), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6733), }, [2677] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6737), + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_RPAREN] = ACTIONS(1972), + [sym_comment] = ACTIONS(56), }, [2678] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6739), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(6735), }, [2679] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2030), - [anon_sym_RPAREN] = ACTIONS(2030), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6737), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2680] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6741), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(6739), + [sym_comment] = ACTIONS(56), }, [2681] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6713), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3316), + [anon_sym_RBRACE] = ACTIONS(6741), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6743), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2682] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_RPAREN] = ACTIONS(2190), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3319), + [anon_sym_RBRACE] = ACTIONS(6745), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6747), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2683] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2396), - [anon_sym_RPAREN] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3321), + [anon_sym_RBRACE] = ACTIONS(6727), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6749), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2684] = { - [anon_sym_esac] = ACTIONS(6743), - [anon_sym_PIPE] = ACTIONS(6743), - [anon_sym_RPAREN] = ACTIONS(6743), - [anon_sym_SEMI_SEMI] = ACTIONS(6743), - [anon_sym_PIPE_AMP] = ACTIONS(6743), - [anon_sym_AMP_AMP] = ACTIONS(6743), - [anon_sym_PIPE_PIPE] = ACTIONS(6743), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6743), - [anon_sym_LF] = ACTIONS(6743), - [anon_sym_AMP] = ACTIONS(6743), + [sym__concat] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2026), + [anon_sym_RPAREN] = ACTIONS(2026), + [sym_comment] = ACTIONS(56), }, [2685] = { - [aux_sym_case_item_repeat1] = STATE(3319), - [aux_sym_concatenation_repeat1] = STATE(1990), - [sym__concat] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4320), - [anon_sym_RPAREN] = ACTIONS(6745), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6751), }, [2686] = { - [aux_sym_case_item_repeat1] = STATE(3321), - [aux_sym_concatenation_repeat1] = STATE(1990), - [sym__concat] = ACTIONS(4318), - [anon_sym_PIPE] = ACTIONS(4320), - [anon_sym_RPAREN] = ACTIONS(6747), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6753), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2687] = { - [aux_sym_case_item_repeat1] = STATE(3321), - [anon_sym_PIPE] = ACTIONS(4320), - [anon_sym_RPAREN] = ACTIONS(6747), + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2034), + [anon_sym_RPAREN] = ACTIONS(2034), [sym_comment] = ACTIONS(56), }, [2688] = { - [anon_sym_esac] = ACTIONS(6749), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6755), }, [2689] = { - [anon_sym_esac] = ACTIONS(6751), - [anon_sym_PIPE] = ACTIONS(6751), - [anon_sym_RPAREN] = ACTIONS(6751), - [anon_sym_SEMI_SEMI] = ACTIONS(6751), - [anon_sym_PIPE_AMP] = ACTIONS(6751), - [anon_sym_AMP_AMP] = ACTIONS(6751), - [anon_sym_PIPE_PIPE] = ACTIONS(6751), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6727), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6751), - [anon_sym_LF] = ACTIONS(6751), - [anon_sym_AMP] = ACTIONS(6751), + [sym_word] = ACTIONS(866), }, [2690] = { - [anon_sym_esac] = ACTIONS(6753), + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2196), + [anon_sym_RPAREN] = ACTIONS(2196), [sym_comment] = ACTIONS(56), }, [2691] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_in] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2402), + [anon_sym_RPAREN] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), }, [2692] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_in] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), + [anon_sym_esac] = ACTIONS(6757), + [anon_sym_PIPE] = ACTIONS(6757), + [anon_sym_RPAREN] = ACTIONS(6757), + [anon_sym_SEMI_SEMI] = ACTIONS(6757), + [anon_sym_PIPE_AMP] = ACTIONS(6757), + [anon_sym_AMP_AMP] = ACTIONS(6757), + [anon_sym_PIPE_PIPE] = ACTIONS(6757), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(6757), + [anon_sym_LF] = ACTIONS(6757), + [anon_sym_AMP] = ACTIONS(6757), }, [2693] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_in] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), + [aux_sym_case_item_repeat1] = STATE(3326), + [aux_sym_concatenation_repeat1] = STATE(1998), + [sym__concat] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(4332), + [anon_sym_RPAREN] = ACTIONS(6759), + [sym_comment] = ACTIONS(56), }, [2694] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_in] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), + [aux_sym_case_item_repeat1] = STATE(3328), + [aux_sym_concatenation_repeat1] = STATE(1998), + [sym__concat] = ACTIONS(4330), + [anon_sym_PIPE] = ACTIONS(4332), + [anon_sym_RPAREN] = ACTIONS(6761), + [sym_comment] = ACTIONS(56), }, [2695] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6755), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_case_item_repeat1] = STATE(3328), + [anon_sym_PIPE] = ACTIONS(4332), + [anon_sym_RPAREN] = ACTIONS(6761), + [sym_comment] = ACTIONS(56), }, [2696] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_in] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), + [anon_sym_esac] = ACTIONS(6763), + [sym_comment] = ACTIONS(56), }, [2697] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6757), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_esac] = ACTIONS(6765), + [anon_sym_PIPE] = ACTIONS(6765), + [anon_sym_RPAREN] = ACTIONS(6765), + [anon_sym_SEMI_SEMI] = ACTIONS(6765), + [anon_sym_PIPE_AMP] = ACTIONS(6765), + [anon_sym_AMP_AMP] = ACTIONS(6765), + [anon_sym_PIPE_PIPE] = ACTIONS(6765), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(6765), + [anon_sym_LF] = ACTIONS(6765), + [anon_sym_AMP] = ACTIONS(6765), }, [2698] = { + [anon_sym_esac] = ACTIONS(6767), + [sym_comment] = ACTIONS(56), + }, + [2699] = { + [sym__concat] = ACTIONS(6041), + [anon_sym_in] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), + }, + [2700] = { + [sym__concat] = ACTIONS(6045), + [anon_sym_in] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), + }, + [2701] = { [sym__concat] = ACTIONS(6049), [anon_sym_in] = ACTIONS(6051), [anon_sym_SEMI_SEMI] = ACTIONS(6051), @@ -71497,45 +71606,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6051), [anon_sym_AMP] = ACTIONS(6051), }, - [2699] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6759), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2702] = { + [sym__concat] = ACTIONS(6053), + [anon_sym_in] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), }, - [2700] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_in] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), + [2703] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6769), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), + [sym_word] = ACTIONS(866), }, - [2701] = { + [2704] = { [sym__concat] = ACTIONS(6059), [anon_sym_in] = ACTIONS(6061), [anon_sym_SEMI_SEMI] = ACTIONS(6061), @@ -71544,781 +71653,866 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6061), [anon_sym_AMP] = ACTIONS(6061), }, - [2702] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [2703] = { - [aux_sym_concatenation_repeat1] = STATE(2703), - [sym__concat] = ACTIONS(6761), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [2704] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - }, [2705] = { - [sym_concatenation] = STATE(3330), - [sym_string] = STATE(3329), - [sym_simple_expansion] = STATE(3329), - [sym_string_expansion] = STATE(3329), - [sym_expansion] = STATE(3329), - [sym_command_substitution] = STATE(3329), - [sym_process_substitution] = STATE(3329), - [anon_sym_RBRACE] = ACTIONS(6764), - [sym__special_characters] = ACTIONS(6766), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6768), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6770), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6771), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2706] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [sym__concat] = ACTIONS(6065), + [anon_sym_in] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), }, [2707] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6773), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6772), + [sym_word] = ACTIONS(866), }, [2708] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6774), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(6071), + [anon_sym_in] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), }, [2709] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(6776), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(6075), + [anon_sym_in] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), }, [2710] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3336), - [anon_sym_RBRACE] = ACTIONS(6778), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6780), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [2711] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3339), - [anon_sym_RBRACE] = ACTIONS(6782), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6784), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [aux_sym_concatenation_repeat1] = STATE(2711), + [sym__concat] = ACTIONS(6775), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [2712] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3341), - [anon_sym_RBRACE] = ACTIONS(6764), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6786), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), }, [2713] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), + [sym_concatenation] = STATE(3337), + [sym_string] = STATE(3336), + [sym_simple_expansion] = STATE(3336), + [sym_string_expansion] = STATE(3336), + [sym_expansion] = STATE(3336), + [sym_command_substitution] = STATE(3336), + [sym_process_substitution] = STATE(3336), + [anon_sym_RBRACE] = ACTIONS(6778), + [sym__special_characters] = ACTIONS(6780), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6782), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6784), }, [2714] = { + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6788), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), }, [2715] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6790), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(6786), }, [2716] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6788), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), + [sym_word] = ACTIONS(866), }, [2717] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6792), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(6790), + [sym_comment] = ACTIONS(56), }, [2718] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6764), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3343), + [anon_sym_RBRACE] = ACTIONS(6792), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6794), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2719] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3346), + [anon_sym_RBRACE] = ACTIONS(6796), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6798), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), + [sym_word] = ACTIONS(866), }, [2720] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3348), + [anon_sym_RBRACE] = ACTIONS(6778), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6800), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), + [sym_word] = ACTIONS(866), }, [2721] = { - [sym_file_descriptor] = ACTIONS(3283), - [sym__concat] = ACTIONS(3283), - [sym_variable_name] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_RPAREN] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_GT] = ACTIONS(3285), - [anon_sym_GT_GT] = ACTIONS(3285), - [anon_sym_AMP_GT] = ACTIONS(3285), - [anon_sym_AMP_GT_GT] = ACTIONS(3285), - [anon_sym_LT_AMP] = ACTIONS(3285), - [anon_sym_GT_AMP] = ACTIONS(3285), - [sym__special_characters] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_DOLLAR] = ACTIONS(3285), - [sym_raw_string] = ACTIONS(3285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), - [anon_sym_BQUOTE] = ACTIONS(3285), - [anon_sym_LT_LPAREN] = ACTIONS(3285), - [anon_sym_GT_LPAREN] = ACTIONS(3285), + [sym__concat] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), }, [2722] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6794), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6802), }, [2723] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6796), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6804), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2724] = { - [anon_sym_RBRACE] = ACTIONS(6796), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), }, [2725] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3348), - [anon_sym_RBRACE] = ACTIONS(6798), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2726] = { - [sym_file_descriptor] = ACTIONS(3347), - [sym__concat] = ACTIONS(3347), - [sym_variable_name] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_GT] = ACTIONS(3349), - [anon_sym_GT_GT] = ACTIONS(3349), - [anon_sym_AMP_GT] = ACTIONS(3349), - [anon_sym_AMP_GT_GT] = ACTIONS(3349), - [anon_sym_LT_AMP] = ACTIONS(3349), - [anon_sym_GT_AMP] = ACTIONS(3349), - [sym__special_characters] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3349), - [sym_raw_string] = ACTIONS(3349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), - [anon_sym_BQUOTE] = ACTIONS(3349), - [anon_sym_LT_LPAREN] = ACTIONS(3349), - [anon_sym_GT_LPAREN] = ACTIONS(3349), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - }, - [2727] = { - [sym_concatenation] = STATE(3351), - [sym_string] = STATE(3350), - [sym_simple_expansion] = STATE(3350), - [sym_string_expansion] = STATE(3350), - [sym_expansion] = STATE(3350), - [sym_command_substitution] = STATE(3350), - [sym_process_substitution] = STATE(3350), - [anon_sym_RBRACE] = ACTIONS(6796), - [sym__special_characters] = ACTIONS(6800), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6804), - }, - [2728] = { - [sym_file_descriptor] = ACTIONS(3392), - [sym__concat] = ACTIONS(3392), - [sym_variable_name] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [anon_sym_LT] = ACTIONS(3394), - [anon_sym_GT] = ACTIONS(3394), - [anon_sym_GT_GT] = ACTIONS(3394), - [anon_sym_AMP_GT] = ACTIONS(3394), - [anon_sym_AMP_GT_GT] = ACTIONS(3394), - [anon_sym_LT_AMP] = ACTIONS(3394), - [anon_sym_GT_AMP] = ACTIONS(3394), - [sym__special_characters] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_DOLLAR] = ACTIONS(3394), - [sym_raw_string] = ACTIONS(3394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), - [anon_sym_BQUOTE] = ACTIONS(3394), - [anon_sym_LT_LPAREN] = ACTIONS(3394), - [anon_sym_GT_LPAREN] = ACTIONS(3394), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3394), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), - }, - [2729] = { [sym_comment] = ACTIONS(182), [sym_regex_without_right_brace] = ACTIONS(6806), }, - [2730] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6808), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2726] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6778), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), + }, + [2727] = { + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + }, + [2728] = { + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + }, + [2729] = { + [sym_file_descriptor] = ACTIONS(3293), + [sym__concat] = ACTIONS(3293), + [sym_variable_name] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_RPAREN] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_GT] = ACTIONS(3295), + [anon_sym_GT_GT] = ACTIONS(3295), + [anon_sym_AMP_GT] = ACTIONS(3295), + [anon_sym_AMP_GT_GT] = ACTIONS(3295), + [anon_sym_LT_AMP] = ACTIONS(3295), + [anon_sym_GT_AMP] = ACTIONS(3295), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), + [anon_sym_BQUOTE] = ACTIONS(3295), + [anon_sym_LT_LPAREN] = ACTIONS(3295), + [anon_sym_GT_LPAREN] = ACTIONS(3295), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + }, + [2730] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6808), + [sym_comment] = ACTIONS(56), }, [2731] = { - [sym_file_descriptor] = ACTIONS(3400), - [sym__concat] = ACTIONS(3400), - [sym_variable_name] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_RPAREN] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(3402), - [anon_sym_GT] = ACTIONS(3402), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_AMP_GT] = ACTIONS(3402), - [anon_sym_AMP_GT_GT] = ACTIONS(3402), - [anon_sym_LT_AMP] = ACTIONS(3402), - [anon_sym_GT_AMP] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(3402), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3402), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6810), + [sym_comment] = ACTIONS(56), }, [2732] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6810), + [anon_sym_RBRACE] = ACTIONS(6810), + [sym_comment] = ACTIONS(56), }, [2733] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3355), [anon_sym_RBRACE] = ACTIONS(6812), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2734] = { + [sym_file_descriptor] = ACTIONS(3357), + [sym__concat] = ACTIONS(3357), + [sym_variable_name] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_AMP_GT] = ACTIONS(3359), + [anon_sym_AMP_GT_GT] = ACTIONS(3359), + [anon_sym_LT_AMP] = ACTIONS(3359), + [anon_sym_GT_AMP] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6814), + [sym_word] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), }, [2735] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6796), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(3358), + [sym_string] = STATE(3357), + [sym_simple_expansion] = STATE(3357), + [sym_string_expansion] = STATE(3357), + [sym_expansion] = STATE(3357), + [sym_command_substitution] = STATE(3357), + [sym_process_substitution] = STATE(3357), + [anon_sym_RBRACE] = ACTIONS(6810), + [sym__special_characters] = ACTIONS(6814), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6816), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6818), }, [2736] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3358), - [anon_sym_RBRACE] = ACTIONS(6816), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(3402), + [sym__concat] = ACTIONS(3402), + [sym_variable_name] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_RPAREN] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_GT] = ACTIONS(3404), + [anon_sym_GT_GT] = ACTIONS(3404), + [anon_sym_AMP_GT] = ACTIONS(3404), + [anon_sym_AMP_GT_GT] = ACTIONS(3404), + [anon_sym_LT_AMP] = ACTIONS(3404), + [anon_sym_GT_AMP] = ACTIONS(3404), + [sym__special_characters] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_DOLLAR] = ACTIONS(3404), + [sym_raw_string] = ACTIONS(3404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), + [anon_sym_BQUOTE] = ACTIONS(3404), + [anon_sym_LT_LPAREN] = ACTIONS(3404), + [anon_sym_GT_LPAREN] = ACTIONS(3404), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), }, [2737] = { - [sym_file_descriptor] = ACTIONS(3412), - [sym__concat] = ACTIONS(3412), - [sym_variable_name] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [anon_sym_LT] = ACTIONS(3414), - [anon_sym_GT] = ACTIONS(3414), - [anon_sym_GT_GT] = ACTIONS(3414), - [anon_sym_AMP_GT] = ACTIONS(3414), - [anon_sym_AMP_GT_GT] = ACTIONS(3414), - [anon_sym_LT_AMP] = ACTIONS(3414), - [anon_sym_GT_AMP] = ACTIONS(3414), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_DOLLAR] = ACTIONS(3414), - [sym_raw_string] = ACTIONS(3414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), - [anon_sym_BQUOTE] = ACTIONS(3414), - [anon_sym_LT_LPAREN] = ACTIONS(3414), - [anon_sym_GT_LPAREN] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), + [sym_regex_without_right_brace] = ACTIONS(6820), }, [2738] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3360), - [anon_sym_RBRACE] = ACTIONS(6818), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6822), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2739] = { - [aux_sym_concatenation_repeat1] = STATE(2742), - [sym__concat] = ACTIONS(5721), - [anon_sym_PIPE] = ACTIONS(4032), - [anon_sym_RPAREN] = ACTIONS(4032), - [anon_sym_SEMI_SEMI] = ACTIONS(4032), - [anon_sym_PIPE_AMP] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_PIPE_PIPE] = ACTIONS(4032), + [sym_file_descriptor] = ACTIONS(3410), + [sym__concat] = ACTIONS(3410), + [sym_variable_name] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_GT] = ACTIONS(3412), + [anon_sym_AMP_GT_GT] = ACTIONS(3412), + [anon_sym_LT_AMP] = ACTIONS(3412), + [anon_sym_GT_AMP] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(3412), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym_LF] = ACTIONS(4032), - [anon_sym_AMP] = ACTIONS(4032), + [sym_word] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), }, [2740] = { - [aux_sym_concatenation_repeat1] = STATE(2742), - [sym__concat] = ACTIONS(5721), - [anon_sym_PIPE] = ACTIONS(4034), - [anon_sym_RPAREN] = ACTIONS(4034), - [anon_sym_SEMI_SEMI] = ACTIONS(4034), - [anon_sym_PIPE_AMP] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_PIPE_PIPE] = ACTIONS(4034), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4034), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4034), + [sym_regex_without_right_brace] = ACTIONS(6824), }, [2741] = { - [sym_string] = STATE(3361), - [sym_simple_expansion] = STATE(3361), - [sym_string_expansion] = STATE(3361), - [sym_expansion] = STATE(3361), - [sym_command_substitution] = STATE(3361), - [sym_process_substitution] = STATE(3361), - [sym__special_characters] = ACTIONS(6820), - [anon_sym_DQUOTE] = ACTIONS(4460), - [anon_sym_DOLLAR] = ACTIONS(4462), - [sym_raw_string] = ACTIONS(6822), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4466), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4468), - [anon_sym_BQUOTE] = ACTIONS(4470), - [anon_sym_LT_LPAREN] = ACTIONS(4472), - [anon_sym_GT_LPAREN] = ACTIONS(4472), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6820), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6826), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2742] = { - [aux_sym_concatenation_repeat1] = STATE(3362), - [sym__concat] = ACTIONS(5721), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), + [sym_regex_without_right_brace] = ACTIONS(6828), }, [2743] = { - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_RPAREN] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6810), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), + [sym_word] = ACTIONS(866), }, [2744] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3365), + [anon_sym_RBRACE] = ACTIONS(6830), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2745] = { + [sym_file_descriptor] = ACTIONS(3422), + [sym__concat] = ACTIONS(3422), + [sym_variable_name] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(3424), + [anon_sym_AMP_GT] = ACTIONS(3424), + [anon_sym_AMP_GT_GT] = ACTIONS(3424), + [anon_sym_LT_AMP] = ACTIONS(3424), + [anon_sym_GT_AMP] = ACTIONS(3424), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(3424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), + [anon_sym_BQUOTE] = ACTIONS(3424), + [anon_sym_LT_LPAREN] = ACTIONS(3424), + [anon_sym_GT_LPAREN] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), + }, + [2746] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3367), + [anon_sym_RBRACE] = ACTIONS(6832), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2747] = { + [aux_sym_concatenation_repeat1] = STATE(2750), + [sym__concat] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_RPAREN] = ACTIONS(4044), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [anon_sym_PIPE_AMP] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4044), + }, + [2748] = { + [aux_sym_concatenation_repeat1] = STATE(2750), + [sym__concat] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(4046), + [anon_sym_RPAREN] = ACTIONS(4046), + [anon_sym_SEMI_SEMI] = ACTIONS(4046), + [anon_sym_PIPE_AMP] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_LF] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4046), + }, + [2749] = { + [sym_string] = STATE(3368), + [sym_simple_expansion] = STATE(3368), + [sym_string_expansion] = STATE(3368), + [sym_expansion] = STATE(3368), + [sym_command_substitution] = STATE(3368), + [sym_process_substitution] = STATE(3368), + [sym__special_characters] = ACTIONS(6834), + [anon_sym_DQUOTE] = ACTIONS(4472), + [anon_sym_DOLLAR] = ACTIONS(4474), + [sym_raw_string] = ACTIONS(6836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4478), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4480), + [anon_sym_BQUOTE] = ACTIONS(4482), + [anon_sym_LT_LPAREN] = ACTIONS(4484), + [anon_sym_GT_LPAREN] = ACTIONS(4484), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6834), + }, + [2750] = { + [aux_sym_concatenation_repeat1] = STATE(3369), + [sym__concat] = ACTIONS(5737), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_RPAREN] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), + }, + [2751] = { + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_RPAREN] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + }, + [2752] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(6824), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(6838), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -72326,238 +72520,169 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [2745] = { - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_RPAREN] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), - }, - [2746] = { - [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(182), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), - }, - [2747] = { - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_RPAREN] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - }, - [2748] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(6826), - [sym_comment] = ACTIONS(56), - }, - [2749] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3367), - [anon_sym_RBRACE] = ACTIONS(6828), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6830), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2750] = { - [sym_subscript] = STATE(3371), - [sym_variable_name] = ACTIONS(6832), - [anon_sym_DOLLAR] = ACTIONS(6834), - [anon_sym_DASH] = ACTIONS(6834), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6836), - [anon_sym_STAR] = ACTIONS(6834), - [anon_sym_AT] = ACTIONS(6834), - [anon_sym_QMARK] = ACTIONS(6834), - [anon_sym_0] = ACTIONS(6838), - [anon_sym__] = ACTIONS(6838), - }, - [2751] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3374), - [anon_sym_RBRACE] = ACTIONS(6840), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6842), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2752] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3377), - [anon_sym_RBRACE] = ACTIONS(6844), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(6846), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [2753] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(6848), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_RPAREN] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), }, [2754] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(6848), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_RPAREN] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), }, [2755] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(6848), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_RPAREN] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), }, [2756] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(6848), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(6840), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [2757] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(6850), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3374), + [anon_sym_RBRACE] = ACTIONS(6842), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6844), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2758] = { + [sym_subscript] = STATE(3378), + [sym_variable_name] = ACTIONS(6846), + [anon_sym_DOLLAR] = ACTIONS(6848), + [anon_sym_DASH] = ACTIONS(6848), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6850), + [anon_sym_STAR] = ACTIONS(6848), + [anon_sym_AT] = ACTIONS(6848), + [anon_sym_QMARK] = ACTIONS(6848), + [anon_sym_0] = ACTIONS(6852), + [anon_sym__] = ACTIONS(6852), + }, + [2759] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3381), + [anon_sym_RBRACE] = ACTIONS(6854), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2760] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3384), + [anon_sym_RBRACE] = ACTIONS(6858), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(6860), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2761] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(6862), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [2762] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(6850), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(6862), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -72577,156 +72702,126 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [2759] = { - [sym__concat] = ACTIONS(4790), - [sym_variable_name] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_RPAREN] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [sym__special_characters] = ACTIONS(4792), - [anon_sym_DQUOTE] = ACTIONS(4792), - [anon_sym_DOLLAR] = ACTIONS(4792), - [sym_raw_string] = ACTIONS(4792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), - [anon_sym_BQUOTE] = ACTIONS(4792), - [anon_sym_LT_LPAREN] = ACTIONS(4792), - [anon_sym_GT_LPAREN] = ACTIONS(4792), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4792), - [sym_word] = ACTIONS(4792), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - }, - [2760] = { - [sym__concat] = ACTIONS(4796), - [sym_variable_name] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_RPAREN] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4798), - [anon_sym_DOLLAR] = ACTIONS(4798), - [sym_raw_string] = ACTIONS(4798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), - [anon_sym_BQUOTE] = ACTIONS(4798), - [anon_sym_LT_LPAREN] = ACTIONS(4798), - [anon_sym_GT_LPAREN] = ACTIONS(4798), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4798), - [sym_word] = ACTIONS(4798), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), - }, - [2761] = { - [sym__concat] = ACTIONS(4859), - [sym_variable_name] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_RPAREN] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4861), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4861), - [sym_word] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), - }, - [2762] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6852), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [2763] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6854), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(6862), [sym_comment] = ACTIONS(56), }, [2764] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6856), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(6862), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [2765] = { - [anon_sym_RBRACE] = ACTIONS(6856), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(6864), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, [2766] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3384), - [anon_sym_RBRACE] = ACTIONS(6858), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(6864), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [2767] = { + [sym__concat] = ACTIONS(4802), + [sym_variable_name] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_RPAREN] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [sym__special_characters] = ACTIONS(4804), + [anon_sym_DQUOTE] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4804), + [sym_raw_string] = ACTIONS(4804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), + [anon_sym_BQUOTE] = ACTIONS(4804), + [anon_sym_LT_LPAREN] = ACTIONS(4804), + [anon_sym_GT_LPAREN] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4804), + [sym_word] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), + }, + [2768] = { + [sym__concat] = ACTIONS(4808), + [sym_variable_name] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_RPAREN] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [sym__special_characters] = ACTIONS(4810), + [anon_sym_DQUOTE] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4810), + [sym_raw_string] = ACTIONS(4810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), + [anon_sym_BQUOTE] = ACTIONS(4810), + [anon_sym_LT_LPAREN] = ACTIONS(4810), + [anon_sym_GT_LPAREN] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4810), + [sym_word] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), + }, + [2769] = { [sym__concat] = ACTIONS(4871), [sym_variable_name] = ACTIONS(4871), [anon_sym_PIPE] = ACTIONS(4873), @@ -72751,90 +72846,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4873), [anon_sym_AMP] = ACTIONS(4873), }, - [2768] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3386), - [anon_sym_RBRACE] = ACTIONS(6860), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2769] = { - [sym__concat] = ACTIONS(4877), - [sym_variable_name] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [sym__special_characters] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4879), - [sym_raw_string] = ACTIONS(4879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), - [anon_sym_BQUOTE] = ACTIONS(4879), - [anon_sym_LT_LPAREN] = ACTIONS(4879), - [anon_sym_GT_LPAREN] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4879), - [sym_word] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), - }, [2770] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3388), - [anon_sym_RBRACE] = ACTIONS(6862), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6866), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2771] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6868), + [sym_comment] = ACTIONS(56), + }, + [2772] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6870), + [sym_comment] = ACTIONS(56), + }, + [2773] = { + [anon_sym_RBRACE] = ACTIONS(6870), + [sym_comment] = ACTIONS(56), + }, + [2774] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3391), + [anon_sym_RBRACE] = ACTIONS(6872), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2775] = { [sym__concat] = ACTIONS(4883), [sym_variable_name] = ACTIONS(4883), [anon_sym_PIPE] = ACTIONS(4885), @@ -72859,36 +72945,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4885), [anon_sym_AMP] = ACTIONS(4885), }, - [2772] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6864), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2776] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3393), + [anon_sym_RBRACE] = ACTIONS(6874), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2773] = { + [2777] = { [sym__concat] = ACTIONS(4889), [sym_variable_name] = ACTIONS(4889), [anon_sym_PIPE] = ACTIONS(4891), @@ -72913,182 +72999,192 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4891), [anon_sym_AMP] = ACTIONS(4891), }, - [2774] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6866), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2775] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_RPAREN] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [sym__special_characters] = ACTIONS(4792), - [anon_sym_DQUOTE] = ACTIONS(4792), - [anon_sym_DOLLAR] = ACTIONS(4792), - [sym_raw_string] = ACTIONS(4792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), - [anon_sym_BQUOTE] = ACTIONS(4792), - [anon_sym_LT_LPAREN] = ACTIONS(4792), - [anon_sym_GT_LPAREN] = ACTIONS(4792), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4792), - [sym_word] = ACTIONS(4792), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - }, - [2776] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_RPAREN] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4798), - [anon_sym_DOLLAR] = ACTIONS(4798), - [sym_raw_string] = ACTIONS(4798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), - [anon_sym_BQUOTE] = ACTIONS(4798), - [anon_sym_LT_LPAREN] = ACTIONS(4798), - [anon_sym_GT_LPAREN] = ACTIONS(4798), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4798), - [sym_word] = ACTIONS(4798), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), - }, - [2777] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_RPAREN] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4861), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4861), - [sym_word] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), - }, [2778] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6868), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3395), + [anon_sym_RBRACE] = ACTIONS(6876), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2779] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6870), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(4895), + [sym_variable_name] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_RPAREN] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(4897), + [anon_sym_DQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR] = ACTIONS(4897), + [sym_raw_string] = ACTIONS(4897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), + [anon_sym_BQUOTE] = ACTIONS(4897), + [anon_sym_LT_LPAREN] = ACTIONS(4897), + [anon_sym_GT_LPAREN] = ACTIONS(4897), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4897), + [sym_word] = ACTIONS(4897), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), }, [2780] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6872), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6878), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2781] = { - [anon_sym_RBRACE] = ACTIONS(6872), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(4901), + [sym_variable_name] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_RPAREN] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4903), + [sym_raw_string] = ACTIONS(4903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), + [anon_sym_BQUOTE] = ACTIONS(4903), + [anon_sym_LT_LPAREN] = ACTIONS(4903), + [anon_sym_GT_LPAREN] = ACTIONS(4903), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4903), + [sym_word] = ACTIONS(4903), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), }, [2782] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3395), - [anon_sym_RBRACE] = ACTIONS(6874), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6880), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2783] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_RPAREN] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [sym__special_characters] = ACTIONS(4804), + [anon_sym_DQUOTE] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4804), + [sym_raw_string] = ACTIONS(4804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), + [anon_sym_BQUOTE] = ACTIONS(4804), + [anon_sym_LT_LPAREN] = ACTIONS(4804), + [anon_sym_GT_LPAREN] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4804), + [sym_word] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), + }, + [2784] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_RPAREN] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [sym__special_characters] = ACTIONS(4810), + [anon_sym_DQUOTE] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4810), + [sym_raw_string] = ACTIONS(4810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), + [anon_sym_BQUOTE] = ACTIONS(4810), + [anon_sym_LT_LPAREN] = ACTIONS(4810), + [anon_sym_GT_LPAREN] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4810), + [sym_word] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), + }, + [2785] = { [sym__concat] = ACTIONS(4871), [anon_sym_PIPE] = ACTIONS(4873), [anon_sym_RPAREN] = ACTIONS(4873), @@ -73112,89 +73208,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4873), [anon_sym_AMP] = ACTIONS(4873), }, - [2784] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3397), - [anon_sym_RBRACE] = ACTIONS(6876), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2785] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [sym__special_characters] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4879), - [sym_raw_string] = ACTIONS(4879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), - [anon_sym_BQUOTE] = ACTIONS(4879), - [anon_sym_LT_LPAREN] = ACTIONS(4879), - [anon_sym_GT_LPAREN] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4879), - [sym_word] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), - }, [2786] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3399), - [anon_sym_RBRACE] = ACTIONS(6878), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6882), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2787] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6884), + [sym_comment] = ACTIONS(56), + }, + [2788] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6886), + [sym_comment] = ACTIONS(56), + }, + [2789] = { + [anon_sym_RBRACE] = ACTIONS(6886), + [sym_comment] = ACTIONS(56), + }, + [2790] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3402), + [anon_sym_RBRACE] = ACTIONS(6888), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2791] = { [sym__concat] = ACTIONS(4883), [anon_sym_PIPE] = ACTIONS(4885), [anon_sym_RPAREN] = ACTIONS(4885), @@ -73218,36 +73306,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4885), [anon_sym_AMP] = ACTIONS(4885), }, - [2788] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6880), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2792] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3404), + [anon_sym_RBRACE] = ACTIONS(6890), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2789] = { + [2793] = { [sym__concat] = ACTIONS(4889), [anon_sym_PIPE] = ACTIONS(4891), [anon_sym_RPAREN] = ACTIONS(4891), @@ -73271,274 +73359,214 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4891), [anon_sym_AMP] = ACTIONS(4891), }, - [2790] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6882), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2791] = { - [sym_file_descriptor] = ACTIONS(6025), - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [anon_sym_EQ_TILDE] = ACTIONS(6027), - [anon_sym_EQ_EQ] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6027), - [anon_sym_GT] = ACTIONS(6027), - [anon_sym_GT_GT] = ACTIONS(6027), - [anon_sym_AMP_GT] = ACTIONS(6027), - [anon_sym_AMP_GT_GT] = ACTIONS(6027), - [anon_sym_LT_AMP] = ACTIONS(6027), - [anon_sym_GT_AMP] = ACTIONS(6027), - [anon_sym_LT_LT] = ACTIONS(6027), - [anon_sym_LT_LT_DASH] = ACTIONS(6027), - [anon_sym_LT_LT_LT] = ACTIONS(6027), - [sym__special_characters] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6027), - [sym_raw_string] = ACTIONS(6027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), - [anon_sym_BQUOTE] = ACTIONS(6027), - [anon_sym_LT_LPAREN] = ACTIONS(6027), - [anon_sym_GT_LPAREN] = ACTIONS(6027), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6027), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), - }, - [2792] = { - [sym_file_descriptor] = ACTIONS(6029), - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [anon_sym_EQ_TILDE] = ACTIONS(6031), - [anon_sym_EQ_EQ] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6031), - [anon_sym_GT] = ACTIONS(6031), - [anon_sym_GT_GT] = ACTIONS(6031), - [anon_sym_AMP_GT] = ACTIONS(6031), - [anon_sym_AMP_GT_GT] = ACTIONS(6031), - [anon_sym_LT_AMP] = ACTIONS(6031), - [anon_sym_GT_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6031), - [anon_sym_LT_LT_DASH] = ACTIONS(6031), - [anon_sym_LT_LT_LT] = ACTIONS(6031), - [sym__special_characters] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6031), - [sym_raw_string] = ACTIONS(6031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), - [anon_sym_BQUOTE] = ACTIONS(6031), - [anon_sym_LT_LPAREN] = ACTIONS(6031), - [anon_sym_GT_LPAREN] = ACTIONS(6031), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6031), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), - }, - [2793] = { - [sym_file_descriptor] = ACTIONS(6033), - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_RPAREN] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), - [anon_sym_EQ_TILDE] = ACTIONS(6035), - [anon_sym_EQ_EQ] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6035), - [anon_sym_GT] = ACTIONS(6035), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_AMP_GT] = ACTIONS(6035), - [anon_sym_AMP_GT_GT] = ACTIONS(6035), - [anon_sym_LT_AMP] = ACTIONS(6035), - [anon_sym_GT_AMP] = ACTIONS(6035), - [anon_sym_LT_LT] = ACTIONS(6035), - [anon_sym_LT_LT_DASH] = ACTIONS(6035), - [anon_sym_LT_LT_LT] = ACTIONS(6035), - [sym__special_characters] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6035), - [sym_raw_string] = ACTIONS(6035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), - [anon_sym_BQUOTE] = ACTIONS(6035), - [anon_sym_LT_LPAREN] = ACTIONS(6035), - [anon_sym_GT_LPAREN] = ACTIONS(6035), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6035), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), - }, [2794] = { - [sym_file_descriptor] = ACTIONS(6037), - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_RPAREN] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), - [anon_sym_EQ_TILDE] = ACTIONS(6039), - [anon_sym_EQ_EQ] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6039), - [anon_sym_GT] = ACTIONS(6039), - [anon_sym_GT_GT] = ACTIONS(6039), - [anon_sym_AMP_GT] = ACTIONS(6039), - [anon_sym_AMP_GT_GT] = ACTIONS(6039), - [anon_sym_LT_AMP] = ACTIONS(6039), - [anon_sym_GT_AMP] = ACTIONS(6039), - [anon_sym_LT_LT] = ACTIONS(6039), - [anon_sym_LT_LT_DASH] = ACTIONS(6039), - [anon_sym_LT_LT_LT] = ACTIONS(6039), - [sym__special_characters] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6039), - [sym_raw_string] = ACTIONS(6039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), - [anon_sym_BQUOTE] = ACTIONS(6039), - [anon_sym_LT_LPAREN] = ACTIONS(6039), - [anon_sym_GT_LPAREN] = ACTIONS(6039), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3406), + [anon_sym_RBRACE] = ACTIONS(6892), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6039), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), + [sym_word] = ACTIONS(866), }, [2795] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6884), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_RPAREN] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(4897), + [anon_sym_DQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR] = ACTIONS(4897), + [sym_raw_string] = ACTIONS(4897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), + [anon_sym_BQUOTE] = ACTIONS(4897), + [anon_sym_LT_LPAREN] = ACTIONS(4897), + [anon_sym_GT_LPAREN] = ACTIONS(4897), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4897), + [sym_word] = ACTIONS(4897), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), }, [2796] = { - [sym_file_descriptor] = ACTIONS(6043), - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_EQ_TILDE] = ACTIONS(6045), - [anon_sym_EQ_EQ] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_AMP_GT] = ACTIONS(6045), - [anon_sym_AMP_GT_GT] = ACTIONS(6045), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_AMP] = ACTIONS(6045), - [anon_sym_LT_LT] = ACTIONS(6045), - [anon_sym_LT_LT_DASH] = ACTIONS(6045), - [anon_sym_LT_LT_LT] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6045), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6894), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6045), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), + [sym_word] = ACTIONS(866), }, [2797] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6886), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_RPAREN] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4903), + [sym_raw_string] = ACTIONS(4903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), + [anon_sym_BQUOTE] = ACTIONS(4903), + [anon_sym_LT_LPAREN] = ACTIONS(4903), + [anon_sym_GT_LPAREN] = ACTIONS(4903), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4903), + [sym_word] = ACTIONS(4903), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), }, [2798] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6896), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2799] = { + [sym_file_descriptor] = ACTIONS(6041), + [sym__concat] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_RPAREN] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_EQ_TILDE] = ACTIONS(6043), + [anon_sym_EQ_EQ] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_GT_GT] = ACTIONS(6043), + [anon_sym_AMP_GT] = ACTIONS(6043), + [anon_sym_AMP_GT_GT] = ACTIONS(6043), + [anon_sym_LT_AMP] = ACTIONS(6043), + [anon_sym_GT_AMP] = ACTIONS(6043), + [anon_sym_LT_LT] = ACTIONS(6043), + [anon_sym_LT_LT_DASH] = ACTIONS(6043), + [anon_sym_LT_LT_LT] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6043), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6043), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6043), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), + }, + [2800] = { + [sym_file_descriptor] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_RPAREN] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [anon_sym_EQ_TILDE] = ACTIONS(6047), + [anon_sym_EQ_EQ] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_GT_GT] = ACTIONS(6047), + [anon_sym_AMP_GT] = ACTIONS(6047), + [anon_sym_AMP_GT_GT] = ACTIONS(6047), + [anon_sym_LT_AMP] = ACTIONS(6047), + [anon_sym_GT_AMP] = ACTIONS(6047), + [anon_sym_LT_LT] = ACTIONS(6047), + [anon_sym_LT_LT_DASH] = ACTIONS(6047), + [anon_sym_LT_LT_LT] = ACTIONS(6047), + [sym__special_characters] = ACTIONS(6047), + [anon_sym_DQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR] = ACTIONS(6047), + [sym_raw_string] = ACTIONS(6047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), + [anon_sym_BQUOTE] = ACTIONS(6047), + [anon_sym_LT_LPAREN] = ACTIONS(6047), + [anon_sym_GT_LPAREN] = ACTIONS(6047), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6047), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), + }, + [2801] = { [sym_file_descriptor] = ACTIONS(6049), [sym__concat] = ACTIONS(6049), [anon_sym_PIPE] = ACTIONS(6051), @@ -73574,72 +73602,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6051), [anon_sym_AMP] = ACTIONS(6051), }, - [2799] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6888), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2802] = { + [sym_file_descriptor] = ACTIONS(6053), + [sym__concat] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [anon_sym_EQ_TILDE] = ACTIONS(6055), + [anon_sym_EQ_EQ] = ACTIONS(6055), + [anon_sym_LT] = ACTIONS(6055), + [anon_sym_GT] = ACTIONS(6055), + [anon_sym_GT_GT] = ACTIONS(6055), + [anon_sym_AMP_GT] = ACTIONS(6055), + [anon_sym_AMP_GT_GT] = ACTIONS(6055), + [anon_sym_LT_AMP] = ACTIONS(6055), + [anon_sym_GT_AMP] = ACTIONS(6055), + [anon_sym_LT_LT] = ACTIONS(6055), + [anon_sym_LT_LT_DASH] = ACTIONS(6055), + [anon_sym_LT_LT_LT] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6055), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(6055), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), }, - [2800] = { - [sym_file_descriptor] = ACTIONS(6055), - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_RPAREN] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [anon_sym_EQ_TILDE] = ACTIONS(6057), - [anon_sym_EQ_EQ] = ACTIONS(6057), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_GT_GT] = ACTIONS(6057), - [anon_sym_AMP_GT] = ACTIONS(6057), - [anon_sym_AMP_GT_GT] = ACTIONS(6057), - [anon_sym_LT_AMP] = ACTIONS(6057), - [anon_sym_GT_AMP] = ACTIONS(6057), - [anon_sym_LT_LT] = ACTIONS(6057), - [anon_sym_LT_LT_DASH] = ACTIONS(6057), - [anon_sym_LT_LT_LT] = ACTIONS(6057), - [sym__special_characters] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(6057), - [anon_sym_DOLLAR] = ACTIONS(6057), - [sym_raw_string] = ACTIONS(6057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), - [anon_sym_BQUOTE] = ACTIONS(6057), - [anon_sym_LT_LPAREN] = ACTIONS(6057), - [anon_sym_GT_LPAREN] = ACTIONS(6057), + [2803] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6898), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6057), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), + [sym_word] = ACTIONS(866), }, - [2801] = { + [2804] = { [sym_file_descriptor] = ACTIONS(6059), [sym__concat] = ACTIONS(6059), [anon_sym_PIPE] = ACTIONS(6061), @@ -73675,500 +73703,557 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6061), [anon_sym_AMP] = ACTIONS(6061), }, - [2802] = { - [sym_file_descriptor] = ACTIONS(3283), - [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_RPAREN] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_GT] = ACTIONS(3285), - [anon_sym_GT_GT] = ACTIONS(3285), - [anon_sym_AMP_GT] = ACTIONS(3285), - [anon_sym_AMP_GT_GT] = ACTIONS(3285), - [anon_sym_LT_AMP] = ACTIONS(3285), - [anon_sym_GT_AMP] = ACTIONS(3285), - [anon_sym_LT_LT] = ACTIONS(3285), - [anon_sym_LT_LT_DASH] = ACTIONS(3285), - [anon_sym_LT_LT_LT] = ACTIONS(3285), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - }, - [2803] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6890), - [sym_comment] = ACTIONS(56), - }, - [2804] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6892), - [sym_comment] = ACTIONS(56), - }, [2805] = { - [anon_sym_RBRACE] = ACTIONS(6892), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6900), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2806] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3408), - [anon_sym_RBRACE] = ACTIONS(6894), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(6065), + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_RPAREN] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [anon_sym_EQ_TILDE] = ACTIONS(6067), + [anon_sym_EQ_EQ] = ACTIONS(6067), + [anon_sym_LT] = ACTIONS(6067), + [anon_sym_GT] = ACTIONS(6067), + [anon_sym_GT_GT] = ACTIONS(6067), + [anon_sym_AMP_GT] = ACTIONS(6067), + [anon_sym_AMP_GT_GT] = ACTIONS(6067), + [anon_sym_LT_AMP] = ACTIONS(6067), + [anon_sym_GT_AMP] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_LT_LT_DASH] = ACTIONS(6067), + [anon_sym_LT_LT_LT] = ACTIONS(6067), + [sym__special_characters] = ACTIONS(6067), + [anon_sym_DQUOTE] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6067), + [sym_raw_string] = ACTIONS(6067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), + [anon_sym_BQUOTE] = ACTIONS(6067), + [anon_sym_LT_LPAREN] = ACTIONS(6067), + [anon_sym_GT_LPAREN] = ACTIONS(6067), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(6067), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), }, [2807] = { - [sym_file_descriptor] = ACTIONS(3347), - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_GT] = ACTIONS(3349), - [anon_sym_GT_GT] = ACTIONS(3349), - [anon_sym_AMP_GT] = ACTIONS(3349), - [anon_sym_AMP_GT_GT] = ACTIONS(3349), - [anon_sym_LT_AMP] = ACTIONS(3349), - [anon_sym_GT_AMP] = ACTIONS(3349), - [anon_sym_LT_LT] = ACTIONS(3349), - [anon_sym_LT_LT_DASH] = ACTIONS(3349), - [anon_sym_LT_LT_LT] = ACTIONS(3349), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6902), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), + [sym_word] = ACTIONS(866), }, [2808] = { - [sym_concatenation] = STATE(3411), - [sym_string] = STATE(3410), - [sym_simple_expansion] = STATE(3410), - [sym_string_expansion] = STATE(3410), - [sym_expansion] = STATE(3410), - [sym_command_substitution] = STATE(3410), - [sym_process_substitution] = STATE(3410), - [anon_sym_RBRACE] = ACTIONS(6892), - [sym__special_characters] = ACTIONS(6896), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6898), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6900), + [sym_file_descriptor] = ACTIONS(6071), + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_RPAREN] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [anon_sym_EQ_TILDE] = ACTIONS(6073), + [anon_sym_EQ_EQ] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_GT_GT] = ACTIONS(6073), + [anon_sym_AMP_GT] = ACTIONS(6073), + [anon_sym_AMP_GT_GT] = ACTIONS(6073), + [anon_sym_LT_AMP] = ACTIONS(6073), + [anon_sym_GT_AMP] = ACTIONS(6073), + [anon_sym_LT_LT] = ACTIONS(6073), + [anon_sym_LT_LT_DASH] = ACTIONS(6073), + [anon_sym_LT_LT_LT] = ACTIONS(6073), + [sym__special_characters] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR] = ACTIONS(6073), + [sym_raw_string] = ACTIONS(6073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), + [anon_sym_BQUOTE] = ACTIONS(6073), + [anon_sym_LT_LPAREN] = ACTIONS(6073), + [anon_sym_GT_LPAREN] = ACTIONS(6073), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6073), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), }, [2809] = { - [sym_file_descriptor] = ACTIONS(3392), - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [anon_sym_LT] = ACTIONS(3394), - [anon_sym_GT] = ACTIONS(3394), - [anon_sym_GT_GT] = ACTIONS(3394), - [anon_sym_AMP_GT] = ACTIONS(3394), - [anon_sym_AMP_GT_GT] = ACTIONS(3394), - [anon_sym_LT_AMP] = ACTIONS(3394), - [anon_sym_GT_AMP] = ACTIONS(3394), - [anon_sym_LT_LT] = ACTIONS(3394), - [anon_sym_LT_LT_DASH] = ACTIONS(3394), - [anon_sym_LT_LT_LT] = ACTIONS(3394), + [sym_file_descriptor] = ACTIONS(6075), + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_RPAREN] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [anon_sym_EQ_TILDE] = ACTIONS(6077), + [anon_sym_EQ_EQ] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_AMP_GT] = ACTIONS(6077), + [anon_sym_AMP_GT_GT] = ACTIONS(6077), + [anon_sym_LT_AMP] = ACTIONS(6077), + [anon_sym_GT_AMP] = ACTIONS(6077), + [anon_sym_LT_LT] = ACTIONS(6077), + [anon_sym_LT_LT_DASH] = ACTIONS(6077), + [anon_sym_LT_LT_LT] = ACTIONS(6077), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), + [anon_sym_BQUOTE] = ACTIONS(6077), + [anon_sym_LT_LPAREN] = ACTIONS(6077), + [anon_sym_GT_LPAREN] = ACTIONS(6077), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), + [sym_word] = ACTIONS(6077), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), }, [2810] = { + [sym_file_descriptor] = ACTIONS(3293), + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_RPAREN] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_GT] = ACTIONS(3295), + [anon_sym_GT_GT] = ACTIONS(3295), + [anon_sym_AMP_GT] = ACTIONS(3295), + [anon_sym_AMP_GT_GT] = ACTIONS(3295), + [anon_sym_LT_AMP] = ACTIONS(3295), + [anon_sym_GT_AMP] = ACTIONS(3295), + [anon_sym_LT_LT] = ACTIONS(3295), + [anon_sym_LT_LT_DASH] = ACTIONS(3295), + [anon_sym_LT_LT_LT] = ACTIONS(3295), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6902), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), }, [2811] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), [anon_sym_RBRACE] = ACTIONS(6904), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_comment] = ACTIONS(56), }, [2812] = { - [sym_file_descriptor] = ACTIONS(3400), - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_RPAREN] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(3402), - [anon_sym_GT] = ACTIONS(3402), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_AMP_GT] = ACTIONS(3402), - [anon_sym_AMP_GT_GT] = ACTIONS(3402), - [anon_sym_LT_AMP] = ACTIONS(3402), - [anon_sym_GT_AMP] = ACTIONS(3402), - [anon_sym_LT_LT] = ACTIONS(3402), - [anon_sym_LT_LT_DASH] = ACTIONS(3402), - [anon_sym_LT_LT_LT] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6906), + [sym_comment] = ACTIONS(56), }, [2813] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6906), + [anon_sym_RBRACE] = ACTIONS(6906), + [sym_comment] = ACTIONS(56), }, [2814] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3415), [anon_sym_RBRACE] = ACTIONS(6908), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2815] = { + [sym_file_descriptor] = ACTIONS(3357), + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_AMP_GT] = ACTIONS(3359), + [anon_sym_AMP_GT_GT] = ACTIONS(3359), + [anon_sym_LT_AMP] = ACTIONS(3359), + [anon_sym_GT_AMP] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(3359), + [anon_sym_LT_LT_DASH] = ACTIONS(3359), + [anon_sym_LT_LT_LT] = ACTIONS(3359), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6910), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), }, [2816] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6892), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(3418), + [sym_string] = STATE(3417), + [sym_simple_expansion] = STATE(3417), + [sym_string_expansion] = STATE(3417), + [sym_expansion] = STATE(3417), + [sym_command_substitution] = STATE(3417), + [sym_process_substitution] = STATE(3417), + [anon_sym_RBRACE] = ACTIONS(6906), + [sym__special_characters] = ACTIONS(6910), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6912), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6914), }, [2817] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3418), - [anon_sym_RBRACE] = ACTIONS(6912), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(3402), + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_RPAREN] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_GT] = ACTIONS(3404), + [anon_sym_GT_GT] = ACTIONS(3404), + [anon_sym_AMP_GT] = ACTIONS(3404), + [anon_sym_AMP_GT_GT] = ACTIONS(3404), + [anon_sym_LT_AMP] = ACTIONS(3404), + [anon_sym_GT_AMP] = ACTIONS(3404), + [anon_sym_LT_LT] = ACTIONS(3404), + [anon_sym_LT_LT_DASH] = ACTIONS(3404), + [anon_sym_LT_LT_LT] = ACTIONS(3404), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), }, [2818] = { - [sym_file_descriptor] = ACTIONS(3412), - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [anon_sym_LT] = ACTIONS(3414), - [anon_sym_GT] = ACTIONS(3414), - [anon_sym_GT_GT] = ACTIONS(3414), - [anon_sym_AMP_GT] = ACTIONS(3414), - [anon_sym_AMP_GT_GT] = ACTIONS(3414), - [anon_sym_LT_AMP] = ACTIONS(3414), - [anon_sym_GT_AMP] = ACTIONS(3414), - [anon_sym_LT_LT] = ACTIONS(3414), - [anon_sym_LT_LT_DASH] = ACTIONS(3414), - [anon_sym_LT_LT_LT] = ACTIONS(3414), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), + [sym_regex_without_right_brace] = ACTIONS(6916), }, [2819] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3420), - [anon_sym_RBRACE] = ACTIONS(6914), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6918), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2820] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_EQ_TILDE] = ACTIONS(6916), - [anon_sym_EQ_EQ] = ACTIONS(6916), - [anon_sym_RBRACK] = ACTIONS(6025), - [sym__special_characters] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(6025), - [anon_sym_DOLLAR] = ACTIONS(6916), - [sym_raw_string] = ACTIONS(6025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), - [anon_sym_BQUOTE] = ACTIONS(6025), - [anon_sym_LT_LPAREN] = ACTIONS(6025), - [anon_sym_GT_LPAREN] = ACTIONS(6025), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6027), + [sym_file_descriptor] = ACTIONS(3410), + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_GT] = ACTIONS(3412), + [anon_sym_AMP_GT_GT] = ACTIONS(3412), + [anon_sym_LT_AMP] = ACTIONS(3412), + [anon_sym_GT_AMP] = ACTIONS(3412), + [anon_sym_LT_LT] = ACTIONS(3412), + [anon_sym_LT_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT_LT] = ACTIONS(3412), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), }, [2821] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_EQ_TILDE] = ACTIONS(6918), - [anon_sym_EQ_EQ] = ACTIONS(6918), - [anon_sym_RBRACK] = ACTIONS(6029), - [sym__special_characters] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(6029), - [anon_sym_DOLLAR] = ACTIONS(6918), - [sym_raw_string] = ACTIONS(6029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), - [anon_sym_BQUOTE] = ACTIONS(6029), - [anon_sym_LT_LPAREN] = ACTIONS(6029), - [anon_sym_GT_LPAREN] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6031), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6920), }, [2822] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_EQ_TILDE] = ACTIONS(6920), - [anon_sym_EQ_EQ] = ACTIONS(6920), - [anon_sym_RBRACK] = ACTIONS(6033), - [sym__special_characters] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(6033), - [anon_sym_DOLLAR] = ACTIONS(6920), - [sym_raw_string] = ACTIONS(6033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), - [anon_sym_BQUOTE] = ACTIONS(6033), - [anon_sym_LT_LPAREN] = ACTIONS(6033), - [anon_sym_GT_LPAREN] = ACTIONS(6033), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6035), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6922), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2823] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_EQ_TILDE] = ACTIONS(6922), - [anon_sym_EQ_EQ] = ACTIONS(6922), - [anon_sym_RBRACK] = ACTIONS(6037), - [sym__special_characters] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(6922), - [sym_raw_string] = ACTIONS(6037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), - [anon_sym_BQUOTE] = ACTIONS(6037), - [anon_sym_LT_LPAREN] = ACTIONS(6037), - [anon_sym_GT_LPAREN] = ACTIONS(6037), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6039), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(6924), }, [2824] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6924), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6906), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2825] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_EQ_TILDE] = ACTIONS(6926), - [anon_sym_EQ_EQ] = ACTIONS(6926), - [anon_sym_RBRACK] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6926), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6045), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3425), + [anon_sym_RBRACE] = ACTIONS(6926), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2826] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6928), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(3422), + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(3424), + [anon_sym_AMP_GT] = ACTIONS(3424), + [anon_sym_AMP_GT_GT] = ACTIONS(3424), + [anon_sym_LT_AMP] = ACTIONS(3424), + [anon_sym_GT_AMP] = ACTIONS(3424), + [anon_sym_LT_LT] = ACTIONS(3424), + [anon_sym_LT_LT_DASH] = ACTIONS(3424), + [anon_sym_LT_LT_LT] = ACTIONS(3424), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), }, [2827] = { - [sym__concat] = ACTIONS(6049), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3427), + [anon_sym_RBRACE] = ACTIONS(6928), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2828] = { + [sym__concat] = ACTIONS(6041), [anon_sym_EQ_TILDE] = ACTIONS(6930), [anon_sym_EQ_EQ] = ACTIONS(6930), + [anon_sym_RBRACK] = ACTIONS(6041), + [sym__special_characters] = ACTIONS(6043), + [anon_sym_DQUOTE] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), + [anon_sym_BQUOTE] = ACTIONS(6041), + [anon_sym_LT_LPAREN] = ACTIONS(6041), + [anon_sym_GT_LPAREN] = ACTIONS(6041), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6043), + }, + [2829] = { + [sym__concat] = ACTIONS(6045), + [anon_sym_EQ_TILDE] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6932), + [anon_sym_RBRACK] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6047), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6932), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6047), + }, + [2830] = { + [sym__concat] = ACTIONS(6049), + [anon_sym_EQ_TILDE] = ACTIONS(6934), + [anon_sym_EQ_EQ] = ACTIONS(6934), [anon_sym_RBRACK] = ACTIONS(6049), [sym__special_characters] = ACTIONS(6051), [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6930), + [anon_sym_DOLLAR] = ACTIONS(6934), [sym_raw_string] = ACTIONS(6049), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), @@ -74178,60 +74263,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(6051), }, - [2828] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6932), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2829] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_EQ_TILDE] = ACTIONS(6934), - [anon_sym_EQ_EQ] = ACTIONS(6934), - [anon_sym_RBRACK] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6057), - }, - [2830] = { - [sym__concat] = ACTIONS(6059), + [2831] = { + [sym__concat] = ACTIONS(6053), [anon_sym_EQ_TILDE] = ACTIONS(6936), [anon_sym_EQ_EQ] = ACTIONS(6936), + [anon_sym_RBRACK] = ACTIONS(6053), + [sym__special_characters] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), + [anon_sym_BQUOTE] = ACTIONS(6053), + [anon_sym_LT_LPAREN] = ACTIONS(6053), + [anon_sym_GT_LPAREN] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6055), + }, + [2832] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6938), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2833] = { + [sym__concat] = ACTIONS(6059), + [anon_sym_EQ_TILDE] = ACTIONS(6940), + [anon_sym_EQ_EQ] = ACTIONS(6940), [anon_sym_RBRACK] = ACTIONS(6059), [sym__special_characters] = ACTIONS(6061), [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6936), + [anon_sym_DOLLAR] = ACTIONS(6940), [sym_raw_string] = ACTIONS(6059), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), @@ -74241,157 +74326,157 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(6061), }, - [2831] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_EQ_TILDE] = ACTIONS(6916), - [anon_sym_EQ_EQ] = ACTIONS(6916), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6025), - [sym__special_characters] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(6025), - [anon_sym_DOLLAR] = ACTIONS(6916), - [sym_raw_string] = ACTIONS(6025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), - [anon_sym_BQUOTE] = ACTIONS(6025), - [anon_sym_LT_LPAREN] = ACTIONS(6025), - [anon_sym_GT_LPAREN] = ACTIONS(6025), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6027), - }, - [2832] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_EQ_TILDE] = ACTIONS(6918), - [anon_sym_EQ_EQ] = ACTIONS(6918), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6029), - [sym__special_characters] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(6029), - [anon_sym_DOLLAR] = ACTIONS(6918), - [sym_raw_string] = ACTIONS(6029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), - [anon_sym_BQUOTE] = ACTIONS(6029), - [anon_sym_LT_LPAREN] = ACTIONS(6029), - [anon_sym_GT_LPAREN] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6031), - }, - [2833] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_EQ_TILDE] = ACTIONS(6920), - [anon_sym_EQ_EQ] = ACTIONS(6920), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6033), - [sym__special_characters] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(6033), - [anon_sym_DOLLAR] = ACTIONS(6920), - [sym_raw_string] = ACTIONS(6033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), - [anon_sym_BQUOTE] = ACTIONS(6033), - [anon_sym_LT_LPAREN] = ACTIONS(6033), - [anon_sym_GT_LPAREN] = ACTIONS(6033), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6035), - }, [2834] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_EQ_TILDE] = ACTIONS(6922), - [anon_sym_EQ_EQ] = ACTIONS(6922), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6037), - [sym__special_characters] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(6922), - [sym_raw_string] = ACTIONS(6037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), - [anon_sym_BQUOTE] = ACTIONS(6037), - [anon_sym_LT_LPAREN] = ACTIONS(6037), - [anon_sym_GT_LPAREN] = ACTIONS(6037), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6039), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6942), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2835] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6938), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6065), + [anon_sym_EQ_TILDE] = ACTIONS(6944), + [anon_sym_EQ_EQ] = ACTIONS(6944), + [anon_sym_RBRACK] = ACTIONS(6065), + [sym__special_characters] = ACTIONS(6067), + [anon_sym_DQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR] = ACTIONS(6944), + [sym_raw_string] = ACTIONS(6065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), + [anon_sym_BQUOTE] = ACTIONS(6065), + [anon_sym_LT_LPAREN] = ACTIONS(6065), + [anon_sym_GT_LPAREN] = ACTIONS(6065), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6067), }, [2836] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_EQ_TILDE] = ACTIONS(6926), - [anon_sym_EQ_EQ] = ACTIONS(6926), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6926), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6045), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6946), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2837] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6940), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6071), + [anon_sym_EQ_TILDE] = ACTIONS(6948), + [anon_sym_EQ_EQ] = ACTIONS(6948), + [anon_sym_RBRACK] = ACTIONS(6071), + [sym__special_characters] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6948), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6073), }, [2838] = { - [sym__concat] = ACTIONS(6049), + [sym__concat] = ACTIONS(6075), + [anon_sym_EQ_TILDE] = ACTIONS(6950), + [anon_sym_EQ_EQ] = ACTIONS(6950), + [anon_sym_RBRACK] = ACTIONS(6075), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6950), + [sym_raw_string] = ACTIONS(6075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), + [anon_sym_BQUOTE] = ACTIONS(6075), + [anon_sym_LT_LPAREN] = ACTIONS(6075), + [anon_sym_GT_LPAREN] = ACTIONS(6075), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6077), + }, + [2839] = { + [sym__concat] = ACTIONS(6041), [anon_sym_EQ_TILDE] = ACTIONS(6930), [anon_sym_EQ_EQ] = ACTIONS(6930), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6041), + [sym__special_characters] = ACTIONS(6043), + [anon_sym_DQUOTE] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), + [anon_sym_BQUOTE] = ACTIONS(6041), + [anon_sym_LT_LPAREN] = ACTIONS(6041), + [anon_sym_GT_LPAREN] = ACTIONS(6041), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6043), + }, + [2840] = { + [sym__concat] = ACTIONS(6045), + [anon_sym_EQ_TILDE] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6932), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6047), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6932), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6047), + }, + [2841] = { + [sym__concat] = ACTIONS(6049), + [anon_sym_EQ_TILDE] = ACTIONS(6934), + [anon_sym_EQ_EQ] = ACTIONS(6934), [anon_sym_RBRACK_RBRACK] = ACTIONS(6049), [sym__special_characters] = ACTIONS(6051), [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6930), + [anon_sym_DOLLAR] = ACTIONS(6934), [sym_raw_string] = ACTIONS(6049), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), @@ -74401,60 +74486,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(6051), }, - [2839] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6942), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2840] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_EQ_TILDE] = ACTIONS(6934), - [anon_sym_EQ_EQ] = ACTIONS(6934), - [anon_sym_RBRACK_RBRACK] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6057), - }, - [2841] = { - [sym__concat] = ACTIONS(6059), + [2842] = { + [sym__concat] = ACTIONS(6053), [anon_sym_EQ_TILDE] = ACTIONS(6936), [anon_sym_EQ_EQ] = ACTIONS(6936), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6053), + [sym__special_characters] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), + [anon_sym_BQUOTE] = ACTIONS(6053), + [anon_sym_LT_LPAREN] = ACTIONS(6053), + [anon_sym_GT_LPAREN] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6055), + }, + [2843] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6952), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2844] = { + [sym__concat] = ACTIONS(6059), + [anon_sym_EQ_TILDE] = ACTIONS(6940), + [anon_sym_EQ_EQ] = ACTIONS(6940), [anon_sym_RBRACK_RBRACK] = ACTIONS(6059), [sym__special_characters] = ACTIONS(6061), [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6936), + [anon_sym_DOLLAR] = ACTIONS(6940), [sym_raw_string] = ACTIONS(6059), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), @@ -74464,743 +74549,725 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(6061), }, - [2842] = { - [sym__concat] = ACTIONS(6025), - [sym_variable_name] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [sym__special_characters] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6027), - [sym_raw_string] = ACTIONS(6027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), - [anon_sym_BQUOTE] = ACTIONS(6027), - [anon_sym_LT_LPAREN] = ACTIONS(6027), - [anon_sym_GT_LPAREN] = ACTIONS(6027), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6027), - [sym_word] = ACTIONS(6027), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), - }, - [2843] = { - [sym__concat] = ACTIONS(6029), - [sym_variable_name] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [sym__special_characters] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6031), - [sym_raw_string] = ACTIONS(6031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), - [anon_sym_BQUOTE] = ACTIONS(6031), - [anon_sym_LT_LPAREN] = ACTIONS(6031), - [anon_sym_GT_LPAREN] = ACTIONS(6031), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6031), - [sym_word] = ACTIONS(6031), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), - }, - [2844] = { - [sym__concat] = ACTIONS(6033), - [sym_variable_name] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), - [sym__special_characters] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6035), - [sym_raw_string] = ACTIONS(6035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), - [anon_sym_BQUOTE] = ACTIONS(6035), - [anon_sym_LT_LPAREN] = ACTIONS(6035), - [anon_sym_GT_LPAREN] = ACTIONS(6035), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6035), - [sym_word] = ACTIONS(6035), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), - }, [2845] = { - [sym__concat] = ACTIONS(6037), - [sym_variable_name] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), - [sym__special_characters] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6039), - [sym_raw_string] = ACTIONS(6039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), - [anon_sym_BQUOTE] = ACTIONS(6039), - [anon_sym_LT_LPAREN] = ACTIONS(6039), - [anon_sym_GT_LPAREN] = ACTIONS(6039), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6954), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6039), - [sym_word] = ACTIONS(6039), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), + [sym_word] = ACTIONS(866), }, [2846] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6944), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6065), + [anon_sym_EQ_TILDE] = ACTIONS(6944), + [anon_sym_EQ_EQ] = ACTIONS(6944), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6065), + [sym__special_characters] = ACTIONS(6067), + [anon_sym_DQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR] = ACTIONS(6944), + [sym_raw_string] = ACTIONS(6065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), + [anon_sym_BQUOTE] = ACTIONS(6065), + [anon_sym_LT_LPAREN] = ACTIONS(6065), + [anon_sym_GT_LPAREN] = ACTIONS(6065), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6067), }, [2847] = { - [sym__concat] = ACTIONS(6043), - [sym_variable_name] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6045), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6956), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6045), - [sym_word] = ACTIONS(6045), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), + [sym_word] = ACTIONS(866), }, [2848] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6946), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6071), + [anon_sym_EQ_TILDE] = ACTIONS(6948), + [anon_sym_EQ_EQ] = ACTIONS(6948), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6071), + [sym__special_characters] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6948), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6073), }, [2849] = { - [sym__concat] = ACTIONS(6049), - [sym_variable_name] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym_raw_string] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(6051), - [anon_sym_GT_LPAREN] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6051), - [sym_word] = ACTIONS(6051), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), + [sym__concat] = ACTIONS(6075), + [anon_sym_EQ_TILDE] = ACTIONS(6950), + [anon_sym_EQ_EQ] = ACTIONS(6950), + [anon_sym_RBRACK_RBRACK] = ACTIONS(6075), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6950), + [sym_raw_string] = ACTIONS(6075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), + [anon_sym_BQUOTE] = ACTIONS(6075), + [anon_sym_LT_LPAREN] = ACTIONS(6075), + [anon_sym_GT_LPAREN] = ACTIONS(6075), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6077), }, [2850] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6948), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2851] = { - [sym__concat] = ACTIONS(6055), - [sym_variable_name] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [sym__special_characters] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(6057), - [anon_sym_DOLLAR] = ACTIONS(6057), - [sym_raw_string] = ACTIONS(6057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), - [anon_sym_BQUOTE] = ACTIONS(6057), - [anon_sym_LT_LPAREN] = ACTIONS(6057), - [anon_sym_GT_LPAREN] = ACTIONS(6057), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6057), - [sym_word] = ACTIONS(6057), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), - }, - [2852] = { - [sym__concat] = ACTIONS(6059), - [sym_variable_name] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym_raw_string] = ACTIONS(6061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [anon_sym_LT_LPAREN] = ACTIONS(6061), - [anon_sym_GT_LPAREN] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6061), - [sym_word] = ACTIONS(6061), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [2853] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [sym__special_characters] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6027), - [sym_raw_string] = ACTIONS(6027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), - [anon_sym_BQUOTE] = ACTIONS(6027), - [anon_sym_LT_LPAREN] = ACTIONS(6027), - [anon_sym_GT_LPAREN] = ACTIONS(6027), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6027), - [sym_word] = ACTIONS(6027), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), - }, - [2854] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [sym__special_characters] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6031), - [sym_raw_string] = ACTIONS(6031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), - [anon_sym_BQUOTE] = ACTIONS(6031), - [anon_sym_LT_LPAREN] = ACTIONS(6031), - [anon_sym_GT_LPAREN] = ACTIONS(6031), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6031), - [sym_word] = ACTIONS(6031), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), - }, - [2855] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), - [sym__special_characters] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6035), - [sym_raw_string] = ACTIONS(6035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), - [anon_sym_BQUOTE] = ACTIONS(6035), - [anon_sym_LT_LPAREN] = ACTIONS(6035), - [anon_sym_GT_LPAREN] = ACTIONS(6035), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6035), - [sym_word] = ACTIONS(6035), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), - }, - [2856] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), - [sym__special_characters] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6039), - [sym_raw_string] = ACTIONS(6039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), - [anon_sym_BQUOTE] = ACTIONS(6039), - [anon_sym_LT_LPAREN] = ACTIONS(6039), - [anon_sym_GT_LPAREN] = ACTIONS(6039), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6039), - [sym_word] = ACTIONS(6039), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), - }, - [2857] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6950), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2858] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6045), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6045), - [sym_word] = ACTIONS(6045), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), - }, - [2859] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6952), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2860] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym_raw_string] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(6051), - [anon_sym_GT_LPAREN] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6051), - [sym_word] = ACTIONS(6051), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [2861] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6954), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2862] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [sym__special_characters] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(6057), - [anon_sym_DOLLAR] = ACTIONS(6057), - [sym_raw_string] = ACTIONS(6057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), - [anon_sym_BQUOTE] = ACTIONS(6057), - [anon_sym_LT_LPAREN] = ACTIONS(6057), - [anon_sym_GT_LPAREN] = ACTIONS(6057), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6057), - [sym_word] = ACTIONS(6057), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), - }, - [2863] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym_raw_string] = ACTIONS(6061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [anon_sym_LT_LPAREN] = ACTIONS(6061), - [anon_sym_GT_LPAREN] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6061), - [sym_word] = ACTIONS(6061), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [2864] = { - [sym_file_descriptor] = ACTIONS(6025), - [sym__concat] = ACTIONS(6025), - [sym_variable_name] = ACTIONS(6025), - [anon_sym_LT] = ACTIONS(6916), - [anon_sym_GT] = ACTIONS(6916), - [anon_sym_GT_GT] = ACTIONS(6025), - [anon_sym_AMP_GT] = ACTIONS(6916), - [anon_sym_AMP_GT_GT] = ACTIONS(6025), - [anon_sym_LT_AMP] = ACTIONS(6025), - [anon_sym_GT_AMP] = ACTIONS(6025), - [sym__special_characters] = ACTIONS(6916), - [anon_sym_DQUOTE] = ACTIONS(6025), - [anon_sym_DOLLAR] = ACTIONS(6916), - [sym_raw_string] = ACTIONS(6025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), - [anon_sym_BQUOTE] = ACTIONS(6025), - [anon_sym_LT_LPAREN] = ACTIONS(6025), - [anon_sym_GT_LPAREN] = ACTIONS(6025), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6916), - }, - [2865] = { - [sym_file_descriptor] = ACTIONS(6029), - [sym__concat] = ACTIONS(6029), - [sym_variable_name] = ACTIONS(6029), - [anon_sym_LT] = ACTIONS(6918), - [anon_sym_GT] = ACTIONS(6918), - [anon_sym_GT_GT] = ACTIONS(6029), - [anon_sym_AMP_GT] = ACTIONS(6918), - [anon_sym_AMP_GT_GT] = ACTIONS(6029), - [anon_sym_LT_AMP] = ACTIONS(6029), - [anon_sym_GT_AMP] = ACTIONS(6029), - [sym__special_characters] = ACTIONS(6918), - [anon_sym_DQUOTE] = ACTIONS(6029), - [anon_sym_DOLLAR] = ACTIONS(6918), - [sym_raw_string] = ACTIONS(6029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), - [anon_sym_BQUOTE] = ACTIONS(6029), - [anon_sym_LT_LPAREN] = ACTIONS(6029), - [anon_sym_GT_LPAREN] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6918), - }, - [2866] = { - [sym_file_descriptor] = ACTIONS(6033), - [sym__concat] = ACTIONS(6033), - [sym_variable_name] = ACTIONS(6033), - [anon_sym_LT] = ACTIONS(6920), - [anon_sym_GT] = ACTIONS(6920), - [anon_sym_GT_GT] = ACTIONS(6033), - [anon_sym_AMP_GT] = ACTIONS(6920), - [anon_sym_AMP_GT_GT] = ACTIONS(6033), - [anon_sym_LT_AMP] = ACTIONS(6033), - [anon_sym_GT_AMP] = ACTIONS(6033), - [sym__special_characters] = ACTIONS(6920), - [anon_sym_DQUOTE] = ACTIONS(6033), - [anon_sym_DOLLAR] = ACTIONS(6920), - [sym_raw_string] = ACTIONS(6033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), - [anon_sym_BQUOTE] = ACTIONS(6033), - [anon_sym_LT_LPAREN] = ACTIONS(6033), - [anon_sym_GT_LPAREN] = ACTIONS(6033), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6920), - }, - [2867] = { - [sym_file_descriptor] = ACTIONS(6037), - [sym__concat] = ACTIONS(6037), - [sym_variable_name] = ACTIONS(6037), - [anon_sym_LT] = ACTIONS(6922), - [anon_sym_GT] = ACTIONS(6922), - [anon_sym_GT_GT] = ACTIONS(6037), - [anon_sym_AMP_GT] = ACTIONS(6922), - [anon_sym_AMP_GT_GT] = ACTIONS(6037), - [anon_sym_LT_AMP] = ACTIONS(6037), - [anon_sym_GT_AMP] = ACTIONS(6037), - [sym__special_characters] = ACTIONS(6922), - [anon_sym_DQUOTE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(6922), - [sym_raw_string] = ACTIONS(6037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), - [anon_sym_BQUOTE] = ACTIONS(6037), - [anon_sym_LT_LPAREN] = ACTIONS(6037), - [anon_sym_GT_LPAREN] = ACTIONS(6037), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6922), - }, - [2868] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6956), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2869] = { - [sym_file_descriptor] = ACTIONS(6043), - [sym__concat] = ACTIONS(6043), - [sym_variable_name] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6926), - [anon_sym_GT] = ACTIONS(6926), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_AMP_GT] = ACTIONS(6926), - [anon_sym_AMP_GT_GT] = ACTIONS(6043), - [anon_sym_LT_AMP] = ACTIONS(6043), - [anon_sym_GT_AMP] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6926), + [sym__concat] = ACTIONS(6041), + [sym_variable_name] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6043), [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6926), + [anon_sym_DOLLAR] = ACTIONS(6043), [sym_raw_string] = ACTIONS(6043), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), [anon_sym_BQUOTE] = ACTIONS(6043), [anon_sym_LT_LPAREN] = ACTIONS(6043), [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6926), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6043), + [sym_word] = ACTIONS(6043), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), + }, + [2851] = { + [sym__concat] = ACTIONS(6045), + [sym_variable_name] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [sym__special_characters] = ACTIONS(6047), + [anon_sym_DQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR] = ACTIONS(6047), + [sym_raw_string] = ACTIONS(6047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), + [anon_sym_BQUOTE] = ACTIONS(6047), + [anon_sym_LT_LPAREN] = ACTIONS(6047), + [anon_sym_GT_LPAREN] = ACTIONS(6047), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6047), + [sym_word] = ACTIONS(6047), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), + }, + [2852] = { + [sym__concat] = ACTIONS(6049), + [sym_variable_name] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym_raw_string] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(6051), + [anon_sym_GT_LPAREN] = ACTIONS(6051), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6051), + [sym_word] = ACTIONS(6051), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), + }, + [2853] = { + [sym__concat] = ACTIONS(6053), + [sym_variable_name] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6055), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6055), + [sym_word] = ACTIONS(6055), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), + }, + [2854] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6958), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2855] = { + [sym__concat] = ACTIONS(6059), + [sym_variable_name] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym_raw_string] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), + [anon_sym_LT_LPAREN] = ACTIONS(6061), + [anon_sym_GT_LPAREN] = ACTIONS(6061), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6061), + [sym_word] = ACTIONS(6061), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), + }, + [2856] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6960), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2857] = { + [sym__concat] = ACTIONS(6065), + [sym_variable_name] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [sym__special_characters] = ACTIONS(6067), + [anon_sym_DQUOTE] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6067), + [sym_raw_string] = ACTIONS(6067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), + [anon_sym_BQUOTE] = ACTIONS(6067), + [anon_sym_LT_LPAREN] = ACTIONS(6067), + [anon_sym_GT_LPAREN] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6067), + [sym_word] = ACTIONS(6067), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), + }, + [2858] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6962), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2859] = { + [sym__concat] = ACTIONS(6071), + [sym_variable_name] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [sym__special_characters] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR] = ACTIONS(6073), + [sym_raw_string] = ACTIONS(6073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), + [anon_sym_BQUOTE] = ACTIONS(6073), + [anon_sym_LT_LPAREN] = ACTIONS(6073), + [anon_sym_GT_LPAREN] = ACTIONS(6073), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6073), + [sym_word] = ACTIONS(6073), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), + }, + [2860] = { + [sym__concat] = ACTIONS(6075), + [sym_variable_name] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), + [anon_sym_BQUOTE] = ACTIONS(6077), + [anon_sym_LT_LPAREN] = ACTIONS(6077), + [anon_sym_GT_LPAREN] = ACTIONS(6077), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6077), + [sym_word] = ACTIONS(6077), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), + }, + [2861] = { + [sym__concat] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6043), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6043), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6043), + [sym_word] = ACTIONS(6043), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), + }, + [2862] = { + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [sym__special_characters] = ACTIONS(6047), + [anon_sym_DQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR] = ACTIONS(6047), + [sym_raw_string] = ACTIONS(6047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), + [anon_sym_BQUOTE] = ACTIONS(6047), + [anon_sym_LT_LPAREN] = ACTIONS(6047), + [anon_sym_GT_LPAREN] = ACTIONS(6047), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6047), + [sym_word] = ACTIONS(6047), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), + }, + [2863] = { + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym_raw_string] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(6051), + [anon_sym_GT_LPAREN] = ACTIONS(6051), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6051), + [sym_word] = ACTIONS(6051), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), + }, + [2864] = { + [sym__concat] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6055), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6055), + [sym_word] = ACTIONS(6055), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), + }, + [2865] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6964), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2866] = { + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym_raw_string] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), + [anon_sym_LT_LPAREN] = ACTIONS(6061), + [anon_sym_GT_LPAREN] = ACTIONS(6061), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6061), + [sym_word] = ACTIONS(6061), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), + }, + [2867] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6966), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2868] = { + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [sym__special_characters] = ACTIONS(6067), + [anon_sym_DQUOTE] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6067), + [sym_raw_string] = ACTIONS(6067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), + [anon_sym_BQUOTE] = ACTIONS(6067), + [anon_sym_LT_LPAREN] = ACTIONS(6067), + [anon_sym_GT_LPAREN] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6067), + [sym_word] = ACTIONS(6067), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), + }, + [2869] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6968), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2870] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6958), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [sym__special_characters] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR] = ACTIONS(6073), + [sym_raw_string] = ACTIONS(6073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), + [anon_sym_BQUOTE] = ACTIONS(6073), + [anon_sym_LT_LPAREN] = ACTIONS(6073), + [anon_sym_GT_LPAREN] = ACTIONS(6073), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6073), + [sym_word] = ACTIONS(6073), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), }, [2871] = { + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), + [anon_sym_BQUOTE] = ACTIONS(6077), + [anon_sym_LT_LPAREN] = ACTIONS(6077), + [anon_sym_GT_LPAREN] = ACTIONS(6077), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6077), + [sym_word] = ACTIONS(6077), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), + }, + [2872] = { + [sym_file_descriptor] = ACTIONS(6041), + [sym__concat] = ACTIONS(6041), + [sym_variable_name] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(6930), + [anon_sym_GT] = ACTIONS(6930), + [anon_sym_GT_GT] = ACTIONS(6041), + [anon_sym_AMP_GT] = ACTIONS(6930), + [anon_sym_AMP_GT_GT] = ACTIONS(6041), + [anon_sym_LT_AMP] = ACTIONS(6041), + [anon_sym_GT_AMP] = ACTIONS(6041), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), + [anon_sym_BQUOTE] = ACTIONS(6041), + [anon_sym_LT_LPAREN] = ACTIONS(6041), + [anon_sym_GT_LPAREN] = ACTIONS(6041), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6930), + }, + [2873] = { + [sym_file_descriptor] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [sym_variable_name] = ACTIONS(6045), + [anon_sym_LT] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6932), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_AMP_GT] = ACTIONS(6932), + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_AMP] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6932), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6932), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6932), + }, + [2874] = { [sym_file_descriptor] = ACTIONS(6049), [sym__concat] = ACTIONS(6049), [sym_variable_name] = ACTIONS(6049), - [anon_sym_LT] = ACTIONS(6930), - [anon_sym_GT] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6934), [anon_sym_GT_GT] = ACTIONS(6049), - [anon_sym_AMP_GT] = ACTIONS(6930), + [anon_sym_AMP_GT] = ACTIONS(6934), [anon_sym_AMP_GT_GT] = ACTIONS(6049), [anon_sym_LT_AMP] = ACTIONS(6049), [anon_sym_GT_AMP] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6930), + [sym__special_characters] = ACTIONS(6934), [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6930), + [anon_sym_DOLLAR] = ACTIONS(6934), [sym_raw_string] = ACTIONS(6049), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), @@ -75208,74 +75275,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(6049), [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6930), - }, - [2872] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6960), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2873] = { - [sym_file_descriptor] = ACTIONS(6055), - [sym__concat] = ACTIONS(6055), - [sym_variable_name] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6934), - [anon_sym_GT] = ACTIONS(6934), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_AMP_GT] = ACTIONS(6934), - [anon_sym_AMP_GT_GT] = ACTIONS(6055), - [anon_sym_LT_AMP] = ACTIONS(6055), - [anon_sym_GT_AMP] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(6934), }, - [2874] = { + [2875] = { + [sym_file_descriptor] = ACTIONS(6053), + [sym__concat] = ACTIONS(6053), + [sym_variable_name] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6053), + [anon_sym_AMP_GT] = ACTIONS(6936), + [anon_sym_AMP_GT_GT] = ACTIONS(6053), + [anon_sym_LT_AMP] = ACTIONS(6053), + [anon_sym_GT_AMP] = ACTIONS(6053), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), + [anon_sym_BQUOTE] = ACTIONS(6053), + [anon_sym_LT_LPAREN] = ACTIONS(6053), + [anon_sym_GT_LPAREN] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6936), + }, + [2876] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6970), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2877] = { [sym_file_descriptor] = ACTIONS(6059), [sym__concat] = ACTIONS(6059), [sym_variable_name] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6936), - [anon_sym_GT] = ACTIONS(6936), + [anon_sym_LT] = ACTIONS(6940), + [anon_sym_GT] = ACTIONS(6940), [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_AMP_GT] = ACTIONS(6936), + [anon_sym_AMP_GT] = ACTIONS(6940), [anon_sym_AMP_GT_GT] = ACTIONS(6059), [anon_sym_LT_AMP] = ACTIONS(6059), [anon_sym_GT_AMP] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6936), + [sym__special_characters] = ACTIONS(6940), [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6936), + [anon_sym_DOLLAR] = ACTIONS(6940), [sym_raw_string] = ACTIONS(6059), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), @@ -75283,622 +75350,653 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(6059), [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6936), - }, - [2875] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_DQUOTE] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6027), - [sym__string_content] = ACTIONS(6916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), - [anon_sym_BQUOTE] = ACTIONS(6027), - [sym_comment] = ACTIONS(182), - }, - [2876] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_DQUOTE] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6031), - [sym__string_content] = ACTIONS(6918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), - [anon_sym_BQUOTE] = ACTIONS(6031), - [sym_comment] = ACTIONS(182), - }, - [2877] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_DQUOTE] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6035), - [sym__string_content] = ACTIONS(6920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), - [anon_sym_BQUOTE] = ACTIONS(6035), - [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6940), }, [2878] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_DQUOTE] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6039), - [sym__string_content] = ACTIONS(6922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), - [anon_sym_BQUOTE] = ACTIONS(6039), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6972), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2879] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6962), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(6065), + [sym__concat] = ACTIONS(6065), + [sym_variable_name] = ACTIONS(6065), + [anon_sym_LT] = ACTIONS(6944), + [anon_sym_GT] = ACTIONS(6944), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_AMP_GT] = ACTIONS(6944), + [anon_sym_AMP_GT_GT] = ACTIONS(6065), + [anon_sym_LT_AMP] = ACTIONS(6065), + [anon_sym_GT_AMP] = ACTIONS(6065), + [sym__special_characters] = ACTIONS(6944), + [anon_sym_DQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR] = ACTIONS(6944), + [sym_raw_string] = ACTIONS(6065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), + [anon_sym_BQUOTE] = ACTIONS(6065), + [anon_sym_LT_LPAREN] = ACTIONS(6065), + [anon_sym_GT_LPAREN] = ACTIONS(6065), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6944), }, [2880] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6045), - [sym__string_content] = ACTIONS(6926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6974), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2881] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6964), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(6071), + [sym__concat] = ACTIONS(6071), + [sym_variable_name] = ACTIONS(6071), + [anon_sym_LT] = ACTIONS(6948), + [anon_sym_GT] = ACTIONS(6948), + [anon_sym_GT_GT] = ACTIONS(6071), + [anon_sym_AMP_GT] = ACTIONS(6948), + [anon_sym_AMP_GT_GT] = ACTIONS(6071), + [anon_sym_LT_AMP] = ACTIONS(6071), + [anon_sym_GT_AMP] = ACTIONS(6071), + [sym__special_characters] = ACTIONS(6948), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6948), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6948), }, [2882] = { + [sym_file_descriptor] = ACTIONS(6075), + [sym__concat] = ACTIONS(6075), + [sym_variable_name] = ACTIONS(6075), + [anon_sym_LT] = ACTIONS(6950), + [anon_sym_GT] = ACTIONS(6950), + [anon_sym_GT_GT] = ACTIONS(6075), + [anon_sym_AMP_GT] = ACTIONS(6950), + [anon_sym_AMP_GT_GT] = ACTIONS(6075), + [anon_sym_LT_AMP] = ACTIONS(6075), + [anon_sym_GT_AMP] = ACTIONS(6075), + [sym__special_characters] = ACTIONS(6950), + [anon_sym_DQUOTE] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6950), + [sym_raw_string] = ACTIONS(6075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), + [anon_sym_BQUOTE] = ACTIONS(6075), + [anon_sym_LT_LPAREN] = ACTIONS(6075), + [anon_sym_GT_LPAREN] = ACTIONS(6075), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6950), + }, + [2883] = { + [sym__concat] = ACTIONS(6041), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6043), + [sym__string_content] = ACTIONS(6930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [sym_comment] = ACTIONS(182), + }, + [2884] = { + [sym__concat] = ACTIONS(6045), + [anon_sym_DQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR] = ACTIONS(6047), + [sym__string_content] = ACTIONS(6932), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), + [anon_sym_BQUOTE] = ACTIONS(6047), + [sym_comment] = ACTIONS(182), + }, + [2885] = { [sym__concat] = ACTIONS(6049), [anon_sym_DQUOTE] = ACTIONS(6051), [anon_sym_DOLLAR] = ACTIONS(6051), - [sym__string_content] = ACTIONS(6930), + [sym__string_content] = ACTIONS(6934), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), [anon_sym_BQUOTE] = ACTIONS(6051), [sym_comment] = ACTIONS(182), }, - [2883] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6966), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2884] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_DQUOTE] = ACTIONS(6057), - [anon_sym_DOLLAR] = ACTIONS(6057), - [sym__string_content] = ACTIONS(6934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), - [anon_sym_BQUOTE] = ACTIONS(6057), + [2886] = { + [sym__concat] = ACTIONS(6053), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6055), + [sym__string_content] = ACTIONS(6936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), [sym_comment] = ACTIONS(182), }, - [2885] = { + [2887] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6976), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2888] = { [sym__concat] = ACTIONS(6059), [anon_sym_DQUOTE] = ACTIONS(6061), [anon_sym_DOLLAR] = ACTIONS(6061), - [sym__string_content] = ACTIONS(6936), + [sym__string_content] = ACTIONS(6940), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), [anon_sym_BQUOTE] = ACTIONS(6061), [sym_comment] = ACTIONS(182), }, - [2886] = { - [anon_sym_RBRACE] = ACTIONS(5379), - [anon_sym_EQ] = ACTIONS(6968), - [sym__special_characters] = ACTIONS(6970), - [anon_sym_DQUOTE] = ACTIONS(5379), - [anon_sym_DOLLAR] = ACTIONS(6968), - [sym_raw_string] = ACTIONS(5379), - [anon_sym_POUND] = ACTIONS(5379), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5379), - [aux_sym_SLASH] = ACTIONS(5379), - [anon_sym_COLON] = ACTIONS(6968), - [anon_sym_COLON_QMARK] = ACTIONS(6968), - [anon_sym_COLON_DASH] = ACTIONS(6968), - [anon_sym_PERCENT] = ACTIONS(6968), - [anon_sym_DASH] = ACTIONS(6968), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5379), - [anon_sym_BQUOTE] = ACTIONS(5379), - [anon_sym_LT_LPAREN] = ACTIONS(5379), - [anon_sym_GT_LPAREN] = ACTIONS(5379), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6970), - }, - [2887] = { - [anon_sym_RBRACE] = ACTIONS(5381), - [anon_sym_EQ] = ACTIONS(6972), - [sym__special_characters] = ACTIONS(6974), - [anon_sym_DQUOTE] = ACTIONS(5381), - [anon_sym_DOLLAR] = ACTIONS(6972), - [sym_raw_string] = ACTIONS(5381), - [anon_sym_POUND] = ACTIONS(5381), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5381), - [aux_sym_SLASH] = ACTIONS(5381), - [anon_sym_COLON] = ACTIONS(6972), - [anon_sym_COLON_QMARK] = ACTIONS(6972), - [anon_sym_COLON_DASH] = ACTIONS(6972), - [anon_sym_PERCENT] = ACTIONS(6972), - [anon_sym_DASH] = ACTIONS(6972), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5381), - [anon_sym_BQUOTE] = ACTIONS(5381), - [anon_sym_LT_LPAREN] = ACTIONS(5381), - [anon_sym_GT_LPAREN] = ACTIONS(5381), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6974), - }, - [2888] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_RBRACE] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - }, [2889] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6976), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6978), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2890] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(6978), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(6065), + [anon_sym_DQUOTE] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6067), + [sym__string_content] = ACTIONS(6944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), + [anon_sym_BQUOTE] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), }, [2891] = { - [anon_sym_RBRACE] = ACTIONS(6978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6980), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2892] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3442), - [anon_sym_RBRACE] = ACTIONS(6980), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(6071), + [anon_sym_DQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR] = ACTIONS(6073), + [sym__string_content] = ACTIONS(6948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), + [anon_sym_BQUOTE] = ACTIONS(6073), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), }, [2893] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(6075), + [anon_sym_DQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym__string_content] = ACTIONS(6950), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), + [anon_sym_BQUOTE] = ACTIONS(6077), + [sym_comment] = ACTIONS(182), }, [2894] = { - [sym_concatenation] = STATE(3445), - [sym_string] = STATE(3444), - [sym_simple_expansion] = STATE(3444), - [sym_string_expansion] = STATE(3444), - [sym_expansion] = STATE(3444), - [sym_command_substitution] = STATE(3444), - [sym_process_substitution] = STATE(3444), - [anon_sym_RBRACE] = ACTIONS(6978), - [sym__special_characters] = ACTIONS(6982), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(6984), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6986), + [anon_sym_RBRACE] = ACTIONS(5397), + [anon_sym_EQ] = ACTIONS(6982), + [sym__special_characters] = ACTIONS(6984), + [anon_sym_DQUOTE] = ACTIONS(5397), + [anon_sym_DOLLAR] = ACTIONS(6982), + [sym_raw_string] = ACTIONS(5397), + [anon_sym_POUND] = ACTIONS(5397), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5397), + [aux_sym_SLASH] = ACTIONS(5397), + [anon_sym_COLON] = ACTIONS(6982), + [anon_sym_COLON_QMARK] = ACTIONS(6982), + [anon_sym_COLON_DASH] = ACTIONS(6982), + [anon_sym_PERCENT] = ACTIONS(6982), + [anon_sym_DASH] = ACTIONS(6982), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5397), + [anon_sym_BQUOTE] = ACTIONS(5397), + [anon_sym_LT_LPAREN] = ACTIONS(5397), + [anon_sym_GT_LPAREN] = ACTIONS(5397), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6984), }, [2895] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_RBRACE] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), + [anon_sym_RBRACE] = ACTIONS(5399), + [anon_sym_EQ] = ACTIONS(6986), + [sym__special_characters] = ACTIONS(6988), + [anon_sym_DQUOTE] = ACTIONS(5399), + [anon_sym_DOLLAR] = ACTIONS(6986), + [sym_raw_string] = ACTIONS(5399), + [anon_sym_POUND] = ACTIONS(5399), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5399), + [aux_sym_SLASH] = ACTIONS(5399), + [anon_sym_COLON] = ACTIONS(6986), + [anon_sym_COLON_QMARK] = ACTIONS(6986), + [anon_sym_COLON_DASH] = ACTIONS(6986), + [anon_sym_PERCENT] = ACTIONS(6986), + [anon_sym_DASH] = ACTIONS(6986), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5399), + [anon_sym_BQUOTE] = ACTIONS(5399), + [anon_sym_LT_LPAREN] = ACTIONS(5399), + [anon_sym_GT_LPAREN] = ACTIONS(5399), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6988), }, [2896] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6988), + [sym__concat] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [sym_comment] = ACTIONS(56), }, [2897] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), [anon_sym_RBRACE] = ACTIONS(6990), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_comment] = ACTIONS(56), }, [2898] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_RBRACE] = ACTIONS(3400), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(6992), [sym_comment] = ACTIONS(56), }, [2899] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6992), + [anon_sym_RBRACE] = ACTIONS(6992), + [sym_comment] = ACTIONS(56), }, [2900] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3449), [anon_sym_RBRACE] = ACTIONS(6994), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2901] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(6996), + [sym__concat] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), }, [2902] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(6978), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(3452), + [sym_string] = STATE(3451), + [sym_simple_expansion] = STATE(3451), + [sym_string_expansion] = STATE(3451), + [sym_expansion] = STATE(3451), + [sym_command_substitution] = STATE(3451), + [sym_process_substitution] = STATE(3451), + [anon_sym_RBRACE] = ACTIONS(6992), + [sym__special_characters] = ACTIONS(6996), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(6998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7000), }, [2903] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3452), - [anon_sym_RBRACE] = ACTIONS(6998), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(3402), + [anon_sym_RBRACE] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), }, [2904] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_RBRACE] = ACTIONS(3412), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7002), }, [2905] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3454), - [anon_sym_RBRACE] = ACTIONS(7000), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7004), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2906] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [anon_sym_EQ] = ACTIONS(5844), - [sym__special_characters] = ACTIONS(4792), - [anon_sym_DQUOTE] = ACTIONS(4790), - [anon_sym_DOLLAR] = ACTIONS(5844), - [sym_raw_string] = ACTIONS(4790), - [anon_sym_POUND] = ACTIONS(4790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), - [anon_sym_COLON] = ACTIONS(5844), - [anon_sym_COLON_QMARK] = ACTIONS(5844), - [anon_sym_COLON_DASH] = ACTIONS(5844), - [anon_sym_PERCENT] = ACTIONS(5844), - [anon_sym_DASH] = ACTIONS(5844), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4790), - [anon_sym_LT_LPAREN] = ACTIONS(4790), - [anon_sym_GT_LPAREN] = ACTIONS(4790), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4792), + [sym__concat] = ACTIONS(3410), + [anon_sym_RBRACE] = ACTIONS(3410), + [sym_comment] = ACTIONS(56), }, [2907] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_RBRACE] = ACTIONS(4796), - [anon_sym_EQ] = ACTIONS(5846), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4796), - [anon_sym_DOLLAR] = ACTIONS(5846), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_POUND] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), - [anon_sym_COLON] = ACTIONS(5846), - [anon_sym_COLON_QMARK] = ACTIONS(5846), - [anon_sym_COLON_DASH] = ACTIONS(5846), - [anon_sym_PERCENT] = ACTIONS(5846), - [anon_sym_DASH] = ACTIONS(5846), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), - [anon_sym_BQUOTE] = ACTIONS(4796), - [anon_sym_LT_LPAREN] = ACTIONS(4796), - [anon_sym_GT_LPAREN] = ACTIONS(4796), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4798), + [sym_regex_without_right_brace] = ACTIONS(7006), }, [2908] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_RBRACE] = ACTIONS(4859), - [anon_sym_EQ] = ACTIONS(5848), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4859), - [anon_sym_DOLLAR] = ACTIONS(5848), - [sym_raw_string] = ACTIONS(4859), - [anon_sym_POUND] = ACTIONS(4859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), - [anon_sym_COLON] = ACTIONS(5848), - [anon_sym_COLON_QMARK] = ACTIONS(5848), - [anon_sym_COLON_DASH] = ACTIONS(5848), - [anon_sym_PERCENT] = ACTIONS(5848), - [anon_sym_DASH] = ACTIONS(5848), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4859), - [anon_sym_LT_LPAREN] = ACTIONS(4859), - [anon_sym_GT_LPAREN] = ACTIONS(4859), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7008), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4861), + [sym_word] = ACTIONS(866), }, [2909] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7002), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(7010), }, [2910] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7004), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(6992), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2911] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7006), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3459), + [anon_sym_RBRACE] = ACTIONS(7012), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2912] = { - [anon_sym_RBRACE] = ACTIONS(7006), + [sym__concat] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), [sym_comment] = ACTIONS(56), }, [2913] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3459), - [anon_sym_RBRACE] = ACTIONS(7008), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3461), + [anon_sym_RBRACE] = ACTIONS(7014), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2914] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_RBRACE] = ACTIONS(4802), + [anon_sym_EQ] = ACTIONS(5860), + [sym__special_characters] = ACTIONS(4804), + [anon_sym_DQUOTE] = ACTIONS(4802), + [anon_sym_DOLLAR] = ACTIONS(5860), + [sym_raw_string] = ACTIONS(4802), + [anon_sym_POUND] = ACTIONS(4802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), + [anon_sym_COLON] = ACTIONS(5860), + [anon_sym_COLON_QMARK] = ACTIONS(5860), + [anon_sym_COLON_DASH] = ACTIONS(5860), + [anon_sym_PERCENT] = ACTIONS(5860), + [anon_sym_DASH] = ACTIONS(5860), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), + [anon_sym_BQUOTE] = ACTIONS(4802), + [anon_sym_LT_LPAREN] = ACTIONS(4802), + [anon_sym_GT_LPAREN] = ACTIONS(4802), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4804), + }, + [2915] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_RBRACE] = ACTIONS(4808), + [anon_sym_EQ] = ACTIONS(5862), + [sym__special_characters] = ACTIONS(4810), + [anon_sym_DQUOTE] = ACTIONS(4808), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4808), + [anon_sym_POUND] = ACTIONS(4808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), + [anon_sym_COLON] = ACTIONS(5862), + [anon_sym_COLON_QMARK] = ACTIONS(5862), + [anon_sym_COLON_DASH] = ACTIONS(5862), + [anon_sym_PERCENT] = ACTIONS(5862), + [anon_sym_DASH] = ACTIONS(5862), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), + [anon_sym_BQUOTE] = ACTIONS(4808), + [anon_sym_LT_LPAREN] = ACTIONS(4808), + [anon_sym_GT_LPAREN] = ACTIONS(4808), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4810), + }, + [2916] = { [sym__concat] = ACTIONS(4871), [anon_sym_RBRACE] = ACTIONS(4871), - [anon_sym_EQ] = ACTIONS(5858), + [anon_sym_EQ] = ACTIONS(5864), [sym__special_characters] = ACTIONS(4873), [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_DOLLAR] = ACTIONS(5864), [sym_raw_string] = ACTIONS(4871), [anon_sym_POUND] = ACTIONS(4871), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_COLON] = ACTIONS(5858), - [anon_sym_COLON_QMARK] = ACTIONS(5858), - [anon_sym_COLON_DASH] = ACTIONS(5858), - [anon_sym_PERCENT] = ACTIONS(5858), - [anon_sym_DASH] = ACTIONS(5858), + [anon_sym_COLON] = ACTIONS(5864), + [anon_sym_COLON_QMARK] = ACTIONS(5864), + [anon_sym_COLON_DASH] = ACTIONS(5864), + [anon_sym_PERCENT] = ACTIONS(5864), + [anon_sym_DASH] = ACTIONS(5864), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), [anon_sym_BQUOTE] = ACTIONS(4871), [anon_sym_LT_LPAREN] = ACTIONS(4871), @@ -75906,101 +76004,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(4873), }, - [2915] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3461), - [anon_sym_RBRACE] = ACTIONS(7010), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2916] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_RBRACE] = ACTIONS(4877), - [anon_sym_EQ] = ACTIONS(5862), - [sym__special_characters] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4877), - [anon_sym_POUND] = ACTIONS(4877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), - [anon_sym_COLON] = ACTIONS(5862), - [anon_sym_COLON_QMARK] = ACTIONS(5862), - [anon_sym_COLON_DASH] = ACTIONS(5862), - [anon_sym_PERCENT] = ACTIONS(5862), - [anon_sym_DASH] = ACTIONS(5862), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(4877), - [anon_sym_LT_LPAREN] = ACTIONS(4877), - [anon_sym_GT_LPAREN] = ACTIONS(4877), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4879), - }, [2917] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3463), - [anon_sym_RBRACE] = ACTIONS(7012), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7016), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2918] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7018), + [sym_comment] = ACTIONS(56), + }, + [2919] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7020), + [sym_comment] = ACTIONS(56), + }, + [2920] = { + [anon_sym_RBRACE] = ACTIONS(7020), + [sym_comment] = ACTIONS(56), + }, + [2921] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3466), + [anon_sym_RBRACE] = ACTIONS(7022), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2922] = { [sym__concat] = ACTIONS(4883), [anon_sym_RBRACE] = ACTIONS(4883), - [anon_sym_EQ] = ACTIONS(5866), + [anon_sym_EQ] = ACTIONS(5874), [sym__special_characters] = ACTIONS(4885), [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5866), + [anon_sym_DOLLAR] = ACTIONS(5874), [sym_raw_string] = ACTIONS(4883), [anon_sym_POUND] = ACTIONS(4883), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_COLON] = ACTIONS(5866), - [anon_sym_COLON_QMARK] = ACTIONS(5866), - [anon_sym_COLON_DASH] = ACTIONS(5866), - [anon_sym_PERCENT] = ACTIONS(5866), - [anon_sym_DASH] = ACTIONS(5866), + [anon_sym_COLON] = ACTIONS(5874), + [anon_sym_COLON_QMARK] = ACTIONS(5874), + [anon_sym_COLON_DASH] = ACTIONS(5874), + [anon_sym_PERCENT] = ACTIONS(5874), + [anon_sym_DASH] = ACTIONS(5874), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), [anon_sym_BQUOTE] = ACTIONS(4883), [anon_sym_LT_LPAREN] = ACTIONS(4883), @@ -76008,50 +76100,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(4885), }, - [2919] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7014), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2923] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3468), + [anon_sym_RBRACE] = ACTIONS(7024), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [2920] = { + [2924] = { [sym__concat] = ACTIONS(4889), [anon_sym_RBRACE] = ACTIONS(4889), - [anon_sym_EQ] = ACTIONS(5870), + [anon_sym_EQ] = ACTIONS(5878), [sym__special_characters] = ACTIONS(4891), [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5870), + [anon_sym_DOLLAR] = ACTIONS(5878), [sym_raw_string] = ACTIONS(4889), [anon_sym_POUND] = ACTIONS(4889), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), - [anon_sym_COLON] = ACTIONS(5870), - [anon_sym_COLON_QMARK] = ACTIONS(5870), - [anon_sym_COLON_DASH] = ACTIONS(5870), - [anon_sym_PERCENT] = ACTIONS(5870), - [anon_sym_DASH] = ACTIONS(5870), + [anon_sym_COLON] = ACTIONS(5878), + [anon_sym_COLON_QMARK] = ACTIONS(5878), + [anon_sym_COLON_DASH] = ACTIONS(5878), + [anon_sym_PERCENT] = ACTIONS(5878), + [anon_sym_DASH] = ACTIONS(5878), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), [anon_sym_BQUOTE] = ACTIONS(4889), [anon_sym_LT_LPAREN] = ACTIONS(4889), @@ -76059,603 +76151,624 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(4891), }, - [2921] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7016), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2922] = { - [sym_file_descriptor] = ACTIONS(7018), - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [anon_sym_EQ_TILDE] = ACTIONS(7020), - [anon_sym_EQ_EQ] = ACTIONS(7020), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_GT] = ACTIONS(7020), - [anon_sym_AMP_GT] = ACTIONS(7020), - [anon_sym_AMP_GT_GT] = ACTIONS(7020), - [anon_sym_LT_AMP] = ACTIONS(7020), - [anon_sym_GT_AMP] = ACTIONS(7020), - [anon_sym_LT_LT] = ACTIONS(7020), - [anon_sym_LT_LT_DASH] = ACTIONS(7020), - [anon_sym_LT_LT_LT] = ACTIONS(7020), - [sym__special_characters] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7020), - [anon_sym_DOLLAR] = ACTIONS(7020), - [sym_raw_string] = ACTIONS(7020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), - [anon_sym_BQUOTE] = ACTIONS(7020), - [anon_sym_LT_LPAREN] = ACTIONS(7020), - [anon_sym_GT_LPAREN] = ACTIONS(7020), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7020), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), - }, - [2923] = { - [sym_file_descriptor] = ACTIONS(7022), - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), - [anon_sym_EQ_TILDE] = ACTIONS(7024), - [anon_sym_EQ_EQ] = ACTIONS(7024), - [anon_sym_LT] = ACTIONS(7024), - [anon_sym_GT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_AMP_GT] = ACTIONS(7024), - [anon_sym_AMP_GT_GT] = ACTIONS(7024), - [anon_sym_LT_AMP] = ACTIONS(7024), - [anon_sym_GT_AMP] = ACTIONS(7024), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_LT_LT_DASH] = ACTIONS(7024), - [anon_sym_LT_LT_LT] = ACTIONS(7024), - [sym__special_characters] = ACTIONS(7024), - [anon_sym_DQUOTE] = ACTIONS(7024), - [anon_sym_DOLLAR] = ACTIONS(7024), - [sym_raw_string] = ACTIONS(7024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), - [anon_sym_BQUOTE] = ACTIONS(7024), - [anon_sym_LT_LPAREN] = ACTIONS(7024), - [anon_sym_GT_LPAREN] = ACTIONS(7024), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), - }, - [2924] = { - [sym_file_descriptor] = ACTIONS(7026), - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), - [anon_sym_EQ_TILDE] = ACTIONS(7028), - [anon_sym_EQ_EQ] = ACTIONS(7028), - [anon_sym_LT] = ACTIONS(7028), - [anon_sym_GT] = ACTIONS(7028), - [anon_sym_GT_GT] = ACTIONS(7028), - [anon_sym_AMP_GT] = ACTIONS(7028), - [anon_sym_AMP_GT_GT] = ACTIONS(7028), - [anon_sym_LT_AMP] = ACTIONS(7028), - [anon_sym_GT_AMP] = ACTIONS(7028), - [anon_sym_LT_LT] = ACTIONS(7028), - [anon_sym_LT_LT_DASH] = ACTIONS(7028), - [anon_sym_LT_LT_LT] = ACTIONS(7028), - [sym__special_characters] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7028), - [anon_sym_DOLLAR] = ACTIONS(7028), - [sym_raw_string] = ACTIONS(7028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), - [anon_sym_BQUOTE] = ACTIONS(7028), - [anon_sym_LT_LPAREN] = ACTIONS(7028), - [anon_sym_GT_LPAREN] = ACTIONS(7028), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7028), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), - }, [2925] = { - [sym_file_descriptor] = ACTIONS(3283), - [sym__concat] = ACTIONS(3283), - [sym_variable_name] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(4602), - [anon_sym_RPAREN] = ACTIONS(3283), - [anon_sym_PIPE_AMP] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(4602), - [anon_sym_GT] = ACTIONS(4602), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_AMP_GT] = ACTIONS(4602), - [anon_sym_AMP_GT_GT] = ACTIONS(3283), - [anon_sym_LT_AMP] = ACTIONS(3283), - [anon_sym_GT_AMP] = ACTIONS(3283), - [sym__special_characters] = ACTIONS(4602), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(4602), - [sym_raw_string] = ACTIONS(3283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), - [anon_sym_BQUOTE] = ACTIONS(3283), - [anon_sym_LT_LPAREN] = ACTIONS(3283), - [anon_sym_GT_LPAREN] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4602), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3470), + [anon_sym_RBRACE] = ACTIONS(7026), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2926] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7030), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4895), + [anon_sym_EQ] = ACTIONS(5882), + [sym__special_characters] = ACTIONS(4897), + [anon_sym_DQUOTE] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(5882), + [sym_raw_string] = ACTIONS(4895), + [anon_sym_POUND] = ACTIONS(4895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), + [anon_sym_COLON] = ACTIONS(5882), + [anon_sym_COLON_QMARK] = ACTIONS(5882), + [anon_sym_COLON_DASH] = ACTIONS(5882), + [anon_sym_PERCENT] = ACTIONS(5882), + [anon_sym_DASH] = ACTIONS(5882), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(4895), + [anon_sym_LT_LPAREN] = ACTIONS(4895), + [anon_sym_GT_LPAREN] = ACTIONS(4895), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4897), }, [2927] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7028), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2928] = { - [anon_sym_RBRACE] = ACTIONS(7032), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(4901), + [anon_sym_RBRACE] = ACTIONS(4901), + [anon_sym_EQ] = ACTIONS(5886), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(5886), + [sym_raw_string] = ACTIONS(4901), + [anon_sym_POUND] = ACTIONS(4901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), + [anon_sym_COLON] = ACTIONS(5886), + [anon_sym_COLON_QMARK] = ACTIONS(5886), + [anon_sym_COLON_DASH] = ACTIONS(5886), + [anon_sym_PERCENT] = ACTIONS(5886), + [anon_sym_DASH] = ACTIONS(5886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4901), + [anon_sym_LT_LPAREN] = ACTIONS(4901), + [anon_sym_GT_LPAREN] = ACTIONS(4901), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4903), }, [2929] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3469), - [anon_sym_RBRACE] = ACTIONS(7034), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7030), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2930] = { - [sym_file_descriptor] = ACTIONS(3347), - [sym__concat] = ACTIONS(3347), - [sym_variable_name] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_RPAREN] = ACTIONS(3347), - [anon_sym_PIPE_AMP] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(4610), - [anon_sym_GT] = ACTIONS(4610), - [anon_sym_GT_GT] = ACTIONS(3347), - [anon_sym_AMP_GT] = ACTIONS(4610), - [anon_sym_AMP_GT_GT] = ACTIONS(3347), - [anon_sym_LT_AMP] = ACTIONS(3347), - [anon_sym_GT_AMP] = ACTIONS(3347), - [sym__special_characters] = ACTIONS(4610), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(3347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), - [anon_sym_BQUOTE] = ACTIONS(3347), - [anon_sym_LT_LPAREN] = ACTIONS(3347), - [anon_sym_GT_LPAREN] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4610), + [sym_file_descriptor] = ACTIONS(7032), + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [anon_sym_EQ_TILDE] = ACTIONS(7034), + [anon_sym_EQ_EQ] = ACTIONS(7034), + [anon_sym_LT] = ACTIONS(7034), + [anon_sym_GT] = ACTIONS(7034), + [anon_sym_GT_GT] = ACTIONS(7034), + [anon_sym_AMP_GT] = ACTIONS(7034), + [anon_sym_AMP_GT_GT] = ACTIONS(7034), + [anon_sym_LT_AMP] = ACTIONS(7034), + [anon_sym_GT_AMP] = ACTIONS(7034), + [anon_sym_LT_LT] = ACTIONS(7034), + [anon_sym_LT_LT_DASH] = ACTIONS(7034), + [anon_sym_LT_LT_LT] = ACTIONS(7034), + [sym__special_characters] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [anon_sym_DOLLAR] = ACTIONS(7034), + [sym_raw_string] = ACTIONS(7034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), + [anon_sym_BQUOTE] = ACTIONS(7034), + [anon_sym_LT_LPAREN] = ACTIONS(7034), + [anon_sym_GT_LPAREN] = ACTIONS(7034), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(7034), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), }, [2931] = { - [sym_concatenation] = STATE(3472), - [sym_string] = STATE(3471), - [sym_simple_expansion] = STATE(3471), - [sym_string_expansion] = STATE(3471), - [sym_expansion] = STATE(3471), - [sym_command_substitution] = STATE(3471), - [sym_process_substitution] = STATE(3471), - [anon_sym_RBRACE] = ACTIONS(7032), - [sym__special_characters] = ACTIONS(7036), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), + [sym_file_descriptor] = ACTIONS(7036), + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [anon_sym_EQ_TILDE] = ACTIONS(7038), + [anon_sym_EQ_EQ] = ACTIONS(7038), + [anon_sym_LT] = ACTIONS(7038), + [anon_sym_GT] = ACTIONS(7038), + [anon_sym_GT_GT] = ACTIONS(7038), + [anon_sym_AMP_GT] = ACTIONS(7038), + [anon_sym_AMP_GT_GT] = ACTIONS(7038), + [anon_sym_LT_AMP] = ACTIONS(7038), + [anon_sym_GT_AMP] = ACTIONS(7038), + [anon_sym_LT_LT] = ACTIONS(7038), + [anon_sym_LT_LT_DASH] = ACTIONS(7038), + [anon_sym_LT_LT_LT] = ACTIONS(7038), + [sym__special_characters] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7038), + [anon_sym_DOLLAR] = ACTIONS(7038), [sym_raw_string] = ACTIONS(7038), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), + [anon_sym_BQUOTE] = ACTIONS(7038), + [anon_sym_LT_LPAREN] = ACTIONS(7038), + [anon_sym_GT_LPAREN] = ACTIONS(7038), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(7038), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), }, [2932] = { - [sym_file_descriptor] = ACTIONS(3392), - [sym__concat] = ACTIONS(3392), - [sym_variable_name] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(4618), - [anon_sym_RPAREN] = ACTIONS(3392), - [anon_sym_PIPE_AMP] = ACTIONS(3392), - [anon_sym_AMP_AMP] = ACTIONS(3392), - [anon_sym_PIPE_PIPE] = ACTIONS(3392), - [anon_sym_LT] = ACTIONS(4618), - [anon_sym_GT] = ACTIONS(4618), - [anon_sym_GT_GT] = ACTIONS(3392), - [anon_sym_AMP_GT] = ACTIONS(4618), - [anon_sym_AMP_GT_GT] = ACTIONS(3392), - [anon_sym_LT_AMP] = ACTIONS(3392), - [anon_sym_GT_AMP] = ACTIONS(3392), - [sym__special_characters] = ACTIONS(4618), - [anon_sym_DQUOTE] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(4618), - [sym_raw_string] = ACTIONS(3392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), - [anon_sym_BQUOTE] = ACTIONS(3392), - [anon_sym_LT_LPAREN] = ACTIONS(3392), - [anon_sym_GT_LPAREN] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4618), + [sym_file_descriptor] = ACTIONS(7040), + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [anon_sym_EQ_TILDE] = ACTIONS(7042), + [anon_sym_EQ_EQ] = ACTIONS(7042), + [anon_sym_LT] = ACTIONS(7042), + [anon_sym_GT] = ACTIONS(7042), + [anon_sym_GT_GT] = ACTIONS(7042), + [anon_sym_AMP_GT] = ACTIONS(7042), + [anon_sym_AMP_GT_GT] = ACTIONS(7042), + [anon_sym_LT_AMP] = ACTIONS(7042), + [anon_sym_GT_AMP] = ACTIONS(7042), + [anon_sym_LT_LT] = ACTIONS(7042), + [anon_sym_LT_LT_DASH] = ACTIONS(7042), + [anon_sym_LT_LT_LT] = ACTIONS(7042), + [sym__special_characters] = ACTIONS(7042), + [anon_sym_DQUOTE] = ACTIONS(7042), + [anon_sym_DOLLAR] = ACTIONS(7042), + [sym_raw_string] = ACTIONS(7042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), + [anon_sym_BQUOTE] = ACTIONS(7042), + [anon_sym_LT_LPAREN] = ACTIONS(7042), + [anon_sym_GT_LPAREN] = ACTIONS(7042), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(7042), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), }, [2933] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7042), + [sym_file_descriptor] = ACTIONS(3293), + [sym__concat] = ACTIONS(3293), + [sym_variable_name] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_PIPE_AMP] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_GT_GT] = ACTIONS(3293), + [anon_sym_AMP_GT] = ACTIONS(4614), + [anon_sym_AMP_GT_GT] = ACTIONS(3293), + [anon_sym_LT_AMP] = ACTIONS(3293), + [anon_sym_GT_AMP] = ACTIONS(3293), + [sym__special_characters] = ACTIONS(4614), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4614), + [sym_raw_string] = ACTIONS(3293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3293), + [anon_sym_LT_LPAREN] = ACTIONS(3293), + [anon_sym_GT_LPAREN] = ACTIONS(3293), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4614), }, [2934] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), [anon_sym_RBRACE] = ACTIONS(7044), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_comment] = ACTIONS(56), }, [2935] = { - [sym_file_descriptor] = ACTIONS(3400), - [sym__concat] = ACTIONS(3400), - [sym_variable_name] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(4624), - [anon_sym_RPAREN] = ACTIONS(3400), - [anon_sym_PIPE_AMP] = ACTIONS(3400), - [anon_sym_AMP_AMP] = ACTIONS(3400), - [anon_sym_PIPE_PIPE] = ACTIONS(3400), - [anon_sym_LT] = ACTIONS(4624), - [anon_sym_GT] = ACTIONS(4624), - [anon_sym_GT_GT] = ACTIONS(3400), - [anon_sym_AMP_GT] = ACTIONS(4624), - [anon_sym_AMP_GT_GT] = ACTIONS(3400), - [anon_sym_LT_AMP] = ACTIONS(3400), - [anon_sym_GT_AMP] = ACTIONS(3400), - [sym__special_characters] = ACTIONS(4624), - [anon_sym_DQUOTE] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(4624), - [sym_raw_string] = ACTIONS(3400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), - [anon_sym_BQUOTE] = ACTIONS(3400), - [anon_sym_LT_LPAREN] = ACTIONS(3400), - [anon_sym_GT_LPAREN] = ACTIONS(3400), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7046), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4624), }, [2936] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7046), + [anon_sym_RBRACE] = ACTIONS(7046), + [sym_comment] = ACTIONS(56), }, [2937] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3476), [anon_sym_RBRACE] = ACTIONS(7048), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2938] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7050), + [sym_file_descriptor] = ACTIONS(3357), + [sym__concat] = ACTIONS(3357), + [sym_variable_name] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(4622), + [anon_sym_RPAREN] = ACTIONS(3357), + [anon_sym_PIPE_AMP] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(4622), + [anon_sym_GT] = ACTIONS(4622), + [anon_sym_GT_GT] = ACTIONS(3357), + [anon_sym_AMP_GT] = ACTIONS(4622), + [anon_sym_AMP_GT_GT] = ACTIONS(3357), + [anon_sym_LT_AMP] = ACTIONS(3357), + [anon_sym_GT_AMP] = ACTIONS(3357), + [sym__special_characters] = ACTIONS(4622), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(4622), + [sym_raw_string] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3357), + [anon_sym_LT_LPAREN] = ACTIONS(3357), + [anon_sym_GT_LPAREN] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4622), }, [2939] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7032), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(3479), + [sym_string] = STATE(3478), + [sym_simple_expansion] = STATE(3478), + [sym_string_expansion] = STATE(3478), + [sym_expansion] = STATE(3478), + [sym_command_substitution] = STATE(3478), + [sym_process_substitution] = STATE(3478), + [anon_sym_RBRACE] = ACTIONS(7046), + [sym__special_characters] = ACTIONS(7050), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(7052), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7054), }, [2940] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3479), - [anon_sym_RBRACE] = ACTIONS(7052), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(3402), + [sym__concat] = ACTIONS(3402), + [sym_variable_name] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_RPAREN] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_GT] = ACTIONS(4630), + [anon_sym_AMP_GT_GT] = ACTIONS(3402), + [anon_sym_LT_AMP] = ACTIONS(3402), + [anon_sym_GT_AMP] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(4630), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4630), }, [2941] = { - [sym_file_descriptor] = ACTIONS(3412), - [sym__concat] = ACTIONS(3412), - [sym_variable_name] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(4634), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), - [anon_sym_GT_GT] = ACTIONS(3412), - [anon_sym_AMP_GT] = ACTIONS(4634), - [anon_sym_AMP_GT_GT] = ACTIONS(3412), - [anon_sym_LT_AMP] = ACTIONS(3412), - [anon_sym_GT_AMP] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(4634), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(4634), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4634), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7056), }, [2942] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3481), - [anon_sym_RBRACE] = ACTIONS(7054), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7058), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [2943] = { - [sym__terminated_statement] = STATE(691), - [sym_for_statement] = STATE(692), - [sym_while_statement] = STATE(692), - [sym_if_statement] = STATE(692), - [sym_case_statement] = STATE(692), - [sym_function_definition] = STATE(692), - [sym_subshell] = STATE(692), - [sym_pipeline] = STATE(692), - [sym_list] = STATE(692), - [sym_command] = STATE(692), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(692), - [sym_variable_assignment] = STATE(693), - [sym_declaration_command] = STATE(692), - [sym_unset_command] = STATE(692), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(3483), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(7056), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_file_descriptor] = ACTIONS(3410), + [sym__concat] = ACTIONS(3410), + [sym_variable_name] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(4636), + [anon_sym_RPAREN] = ACTIONS(3410), + [anon_sym_PIPE_AMP] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [anon_sym_LT] = ACTIONS(4636), + [anon_sym_GT] = ACTIONS(4636), + [anon_sym_GT_GT] = ACTIONS(3410), + [anon_sym_AMP_GT] = ACTIONS(4636), + [anon_sym_AMP_GT_GT] = ACTIONS(3410), + [anon_sym_LT_AMP] = ACTIONS(3410), + [anon_sym_GT_AMP] = ACTIONS(3410), + [sym__special_characters] = ACTIONS(4636), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_DOLLAR] = ACTIONS(4636), + [sym_raw_string] = ACTIONS(3410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), + [anon_sym_BQUOTE] = ACTIONS(3410), + [anon_sym_LT_LPAREN] = ACTIONS(3410), + [anon_sym_GT_LPAREN] = ACTIONS(3410), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_word] = ACTIONS(4636), }, [2944] = { - [anon_sym_PIPE] = ACTIONS(7058), - [anon_sym_RPAREN] = ACTIONS(7060), - [anon_sym_PIPE_AMP] = ACTIONS(7060), - [anon_sym_AMP_AMP] = ACTIONS(7060), - [anon_sym_PIPE_PIPE] = ACTIONS(7060), - [anon_sym_BQUOTE] = ACTIONS(7060), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7060), }, [2945] = { - [anon_sym_PIPE] = ACTIONS(7062), - [anon_sym_RPAREN] = ACTIONS(7064), - [anon_sym_PIPE_AMP] = ACTIONS(7064), - [anon_sym_AMP_AMP] = ACTIONS(7064), - [anon_sym_PIPE_PIPE] = ACTIONS(7064), - [anon_sym_BQUOTE] = ACTIONS(7064), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7062), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2946] = { - [anon_sym_fi] = ACTIONS(7066), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7064), }, [2947] = { - [anon_sym_PIPE] = ACTIONS(7068), - [anon_sym_RPAREN] = ACTIONS(7070), - [anon_sym_PIPE_AMP] = ACTIONS(7070), - [anon_sym_AMP_AMP] = ACTIONS(7070), - [anon_sym_PIPE_PIPE] = ACTIONS(7070), - [anon_sym_BQUOTE] = ACTIONS(7070), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7046), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2948] = { - [anon_sym_esac] = ACTIONS(7072), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3486), + [anon_sym_RBRACE] = ACTIONS(7066), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2949] = { + [sym_file_descriptor] = ACTIONS(3422), + [sym__concat] = ACTIONS(3422), + [sym_variable_name] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_PIPE_AMP] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_GT_GT] = ACTIONS(3422), + [anon_sym_AMP_GT] = ACTIONS(4646), + [anon_sym_AMP_GT_GT] = ACTIONS(3422), + [anon_sym_LT_AMP] = ACTIONS(3422), + [anon_sym_GT_AMP] = ACTIONS(3422), + [sym__special_characters] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_DOLLAR] = ACTIONS(4646), + [sym_raw_string] = ACTIONS(3422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), + [anon_sym_BQUOTE] = ACTIONS(3422), + [anon_sym_LT_LPAREN] = ACTIONS(3422), + [anon_sym_GT_LPAREN] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4646), + }, + [2950] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3488), + [anon_sym_RBRACE] = ACTIONS(7068), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2951] = { + [anon_sym_PIPE] = ACTIONS(7070), + [anon_sym_RPAREN] = ACTIONS(7072), + [anon_sym_PIPE_AMP] = ACTIONS(7072), + [anon_sym_AMP_AMP] = ACTIONS(7072), + [anon_sym_PIPE_PIPE] = ACTIONS(7072), + [anon_sym_BQUOTE] = ACTIONS(7072), + [sym_comment] = ACTIONS(56), + }, + [2952] = { + [anon_sym_PIPE] = ACTIONS(6116), + [anon_sym_RPAREN] = ACTIONS(4307), + [anon_sym_PIPE_AMP] = ACTIONS(4307), + [anon_sym_AMP_AMP] = ACTIONS(4307), + [anon_sym_PIPE_PIPE] = ACTIONS(4307), + [anon_sym_BQUOTE] = ACTIONS(4307), + [sym_comment] = ACTIONS(56), + }, + [2953] = { [anon_sym_PIPE] = ACTIONS(7074), [anon_sym_RPAREN] = ACTIONS(7076), [anon_sym_PIPE_AMP] = ACTIONS(7076), @@ -76664,156 +76777,182 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(7076), [sym_comment] = ACTIONS(56), }, - [2950] = { - [sym_case_item] = STATE(1332), - [sym_last_case_item] = STATE(3486), - [sym_concatenation] = STATE(1334), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_string_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [aux_sym_case_statement_repeat1] = STATE(2011), - [sym__special_characters] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4352), - }, - [2951] = { - [anon_sym_PIPE] = ACTIONS(7078), - [anon_sym_RPAREN] = ACTIONS(7080), - [anon_sym_PIPE_AMP] = ACTIONS(7080), - [anon_sym_AMP_AMP] = ACTIONS(7080), - [anon_sym_PIPE_PIPE] = ACTIONS(7080), - [anon_sym_BQUOTE] = ACTIONS(7080), - [sym_comment] = ACTIONS(56), - }, - [2952] = { - [anon_sym_esac] = ACTIONS(7082), - [sym_comment] = ACTIONS(56), - }, - [2953] = { - [anon_sym_PIPE] = ACTIONS(7084), - [anon_sym_RPAREN] = ACTIONS(7086), - [anon_sym_PIPE_AMP] = ACTIONS(7086), - [anon_sym_AMP_AMP] = ACTIONS(7086), - [anon_sym_PIPE_PIPE] = ACTIONS(7086), - [anon_sym_BQUOTE] = ACTIONS(7086), - [sym_comment] = ACTIONS(56), - }, [2954] = { - [sym_case_item] = STATE(1332), - [sym_last_case_item] = STATE(3488), - [sym_concatenation] = STATE(1334), - [sym_string] = STATE(1327), - [sym_simple_expansion] = STATE(1327), - [sym_string_expansion] = STATE(1327), - [sym_expansion] = STATE(1327), - [sym_command_substitution] = STATE(1327), - [sym_process_substitution] = STATE(1327), - [aux_sym_case_statement_repeat1] = STATE(2011), - [sym__special_characters] = ACTIONS(2697), - [anon_sym_DQUOTE] = ACTIONS(2699), - [anon_sym_DOLLAR] = ACTIONS(2701), - [sym_raw_string] = ACTIONS(2703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2705), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2707), - [anon_sym_BQUOTE] = ACTIONS(2709), - [anon_sym_LT_LPAREN] = ACTIONS(2711), - [anon_sym_GT_LPAREN] = ACTIONS(2711), + [anon_sym_fi] = ACTIONS(7078), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4352), }, [2955] = { - [anon_sym_PIPE] = ACTIONS(7088), - [anon_sym_RPAREN] = ACTIONS(7090), - [anon_sym_PIPE_AMP] = ACTIONS(7090), - [anon_sym_AMP_AMP] = ACTIONS(7090), - [anon_sym_PIPE_PIPE] = ACTIONS(7090), - [anon_sym_BQUOTE] = ACTIONS(7090), + [anon_sym_PIPE] = ACTIONS(7080), + [anon_sym_RPAREN] = ACTIONS(7082), + [anon_sym_PIPE_AMP] = ACTIONS(7082), + [anon_sym_AMP_AMP] = ACTIONS(7082), + [anon_sym_PIPE_PIPE] = ACTIONS(7082), + [anon_sym_BQUOTE] = ACTIONS(7082), [sym_comment] = ACTIONS(56), }, [2956] = { - [aux_sym_concatenation_repeat1] = STATE(2960), - [sym__concat] = ACTIONS(6136), - [anon_sym_PIPE] = ACTIONS(1241), - [anon_sym_RPAREN] = ACTIONS(1239), - [anon_sym_PIPE_AMP] = ACTIONS(1239), - [anon_sym_AMP_AMP] = ACTIONS(1239), - [anon_sym_PIPE_PIPE] = ACTIONS(1239), + [anon_sym_esac] = ACTIONS(7084), [sym_comment] = ACTIONS(56), }, [2957] = { - [aux_sym_concatenation_repeat1] = STATE(2960), - [sym__concat] = ACTIONS(6136), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_PIPE_AMP] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1243), - [anon_sym_PIPE_PIPE] = ACTIONS(1243), + [anon_sym_PIPE] = ACTIONS(7086), + [anon_sym_RPAREN] = ACTIONS(7088), + [anon_sym_PIPE_AMP] = ACTIONS(7088), + [anon_sym_AMP_AMP] = ACTIONS(7088), + [anon_sym_PIPE_PIPE] = ACTIONS(7088), + [anon_sym_BQUOTE] = ACTIONS(7088), [sym_comment] = ACTIONS(56), }, [2958] = { - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_RPAREN] = ACTIONS(1243), - [anon_sym_PIPE_AMP] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1243), - [anon_sym_PIPE_PIPE] = ACTIONS(1243), - [anon_sym_BQUOTE] = ACTIONS(1243), + [sym_case_item] = STATE(1338), + [sym_last_case_item] = STATE(3491), + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(1333), + [sym_simple_expansion] = STATE(1333), + [sym_string_expansion] = STATE(1333), + [sym_expansion] = STATE(1333), + [sym_command_substitution] = STATE(1333), + [sym_process_substitution] = STATE(1333), + [aux_sym_case_statement_repeat1] = STATE(2019), + [sym__special_characters] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(2713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4364), }, [2959] = { - [sym_string] = STATE(3489), - [sym_simple_expansion] = STATE(3489), - [sym_string_expansion] = STATE(3489), - [sym_expansion] = STATE(3489), - [sym_command_substitution] = STATE(3489), - [sym_process_substitution] = STATE(3489), - [sym__special_characters] = ACTIONS(7092), - [anon_sym_DQUOTE] = ACTIONS(4967), - [anon_sym_DOLLAR] = ACTIONS(4969), - [sym_raw_string] = ACTIONS(7094), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4973), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4975), - [anon_sym_BQUOTE] = ACTIONS(4977), - [anon_sym_LT_LPAREN] = ACTIONS(4979), - [anon_sym_GT_LPAREN] = ACTIONS(4979), + [anon_sym_PIPE] = ACTIONS(7090), + [anon_sym_RPAREN] = ACTIONS(7092), + [anon_sym_PIPE_AMP] = ACTIONS(7092), + [anon_sym_AMP_AMP] = ACTIONS(7092), + [anon_sym_PIPE_PIPE] = ACTIONS(7092), + [anon_sym_BQUOTE] = ACTIONS(7092), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7092), }, [2960] = { - [aux_sym_concatenation_repeat1] = STATE(3490), - [sym__concat] = ACTIONS(6136), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_RPAREN] = ACTIONS(788), - [anon_sym_PIPE_AMP] = ACTIONS(788), - [anon_sym_AMP_AMP] = ACTIONS(788), - [anon_sym_PIPE_PIPE] = ACTIONS(788), + [anon_sym_esac] = ACTIONS(7094), [sym_comment] = ACTIONS(56), }, [2961] = { - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_RPAREN] = ACTIONS(792), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(7096), + [anon_sym_RPAREN] = ACTIONS(7098), + [anon_sym_PIPE_AMP] = ACTIONS(7098), + [anon_sym_AMP_AMP] = ACTIONS(7098), + [anon_sym_PIPE_PIPE] = ACTIONS(7098), + [anon_sym_BQUOTE] = ACTIONS(7098), [sym_comment] = ACTIONS(56), }, [2962] = { + [sym_case_item] = STATE(1338), + [sym_last_case_item] = STATE(3493), + [sym_concatenation] = STATE(1340), + [sym_string] = STATE(1333), + [sym_simple_expansion] = STATE(1333), + [sym_string_expansion] = STATE(1333), + [sym_expansion] = STATE(1333), + [sym_command_substitution] = STATE(1333), + [sym_process_substitution] = STATE(1333), + [aux_sym_case_statement_repeat1] = STATE(2019), + [sym__special_characters] = ACTIONS(2707), + [anon_sym_DQUOTE] = ACTIONS(2709), + [anon_sym_DOLLAR] = ACTIONS(2711), + [sym_raw_string] = ACTIONS(2713), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2715), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2717), + [anon_sym_BQUOTE] = ACTIONS(2719), + [anon_sym_LT_LPAREN] = ACTIONS(2721), + [anon_sym_GT_LPAREN] = ACTIONS(2721), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4364), + }, + [2963] = { + [anon_sym_PIPE] = ACTIONS(7100), + [anon_sym_RPAREN] = ACTIONS(7102), + [anon_sym_PIPE_AMP] = ACTIONS(7102), + [anon_sym_AMP_AMP] = ACTIONS(7102), + [anon_sym_PIPE_PIPE] = ACTIONS(7102), + [anon_sym_BQUOTE] = ACTIONS(7102), + [sym_comment] = ACTIONS(56), + }, + [2964] = { + [aux_sym_concatenation_repeat1] = STATE(2968), + [sym__concat] = ACTIONS(6152), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_PIPE_AMP] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1241), + [anon_sym_PIPE_PIPE] = ACTIONS(1241), + [sym_comment] = ACTIONS(56), + }, + [2965] = { + [aux_sym_concatenation_repeat1] = STATE(2968), + [sym__concat] = ACTIONS(6152), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_PIPE_AMP] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [sym_comment] = ACTIONS(56), + }, + [2966] = { + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_PIPE_AMP] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_BQUOTE] = ACTIONS(1245), + [sym_comment] = ACTIONS(56), + }, + [2967] = { + [sym_string] = STATE(3494), + [sym_simple_expansion] = STATE(3494), + [sym_string_expansion] = STATE(3494), + [sym_expansion] = STATE(3494), + [sym_command_substitution] = STATE(3494), + [sym_process_substitution] = STATE(3494), + [sym__special_characters] = ACTIONS(7104), + [anon_sym_DQUOTE] = ACTIONS(4985), + [anon_sym_DOLLAR] = ACTIONS(4987), + [sym_raw_string] = ACTIONS(7106), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4991), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4993), + [anon_sym_BQUOTE] = ACTIONS(4995), + [anon_sym_LT_LPAREN] = ACTIONS(4997), + [anon_sym_GT_LPAREN] = ACTIONS(4997), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7104), + }, + [2968] = { + [aux_sym_concatenation_repeat1] = STATE(3495), + [sym__concat] = ACTIONS(6152), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_RPAREN] = ACTIONS(790), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [sym_comment] = ACTIONS(56), + }, + [2969] = { + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_RPAREN] = ACTIONS(794), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [sym_comment] = ACTIONS(56), + }, + [2970] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(7096), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(7108), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -76821,226 +76960,157 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [2963] = { - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_RPAREN] = ACTIONS(824), - [anon_sym_PIPE_AMP] = ACTIONS(824), - [anon_sym_AMP_AMP] = ACTIONS(824), - [anon_sym_PIPE_PIPE] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - }, - [2964] = { - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_RPAREN] = ACTIONS(828), - [anon_sym_PIPE_AMP] = ACTIONS(828), - [anon_sym_AMP_AMP] = ACTIONS(828), - [anon_sym_PIPE_PIPE] = ACTIONS(828), - [sym_comment] = ACTIONS(56), - }, - [2965] = { - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_RPAREN] = ACTIONS(832), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [sym_comment] = ACTIONS(56), - }, - [2966] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(7098), - [sym_comment] = ACTIONS(56), - }, - [2967] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3495), - [anon_sym_RBRACE] = ACTIONS(7100), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7102), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2968] = { - [sym_subscript] = STATE(3499), - [sym_variable_name] = ACTIONS(7104), - [anon_sym_DOLLAR] = ACTIONS(7106), - [anon_sym_DASH] = ACTIONS(7106), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7108), - [anon_sym_STAR] = ACTIONS(7106), - [anon_sym_AT] = ACTIONS(7106), - [anon_sym_QMARK] = ACTIONS(7106), - [anon_sym_0] = ACTIONS(7110), - [anon_sym__] = ACTIONS(7110), - }, - [2969] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3502), - [anon_sym_RBRACE] = ACTIONS(7112), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7114), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2970] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3505), - [anon_sym_RBRACE] = ACTIONS(7116), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7118), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [2971] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(7120), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_RPAREN] = ACTIONS(826), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), [sym_comment] = ACTIONS(56), }, [2972] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(7120), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_RPAREN] = ACTIONS(830), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [2973] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(7120), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_RPAREN] = ACTIONS(834), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), [sym_comment] = ACTIONS(56), }, [2974] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(7120), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(7110), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [2975] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(7122), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3500), + [anon_sym_RBRACE] = ACTIONS(7112), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7114), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [2976] = { + [sym_subscript] = STATE(3504), + [sym_variable_name] = ACTIONS(7116), + [anon_sym_DOLLAR] = ACTIONS(7118), + [anon_sym_DASH] = ACTIONS(7118), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7120), + [anon_sym_STAR] = ACTIONS(7118), + [anon_sym_AT] = ACTIONS(7118), + [anon_sym_QMARK] = ACTIONS(7118), + [anon_sym_0] = ACTIONS(7122), + [anon_sym__] = ACTIONS(7122), + }, + [2977] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3507), + [anon_sym_RBRACE] = ACTIONS(7124), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7126), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2978] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3510), + [anon_sym_RBRACE] = ACTIONS(7128), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7130), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [2979] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(7132), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [2980] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(7122), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(7132), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -77060,507 +77130,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [2977] = { - [sym_variable_name] = ACTIONS(4169), - [anon_sym_PIPE] = ACTIONS(6063), - [anon_sym_RPAREN] = ACTIONS(4169), - [anon_sym_PIPE_AMP] = ACTIONS(4169), - [anon_sym_AMP_AMP] = ACTIONS(4169), - [anon_sym_PIPE_PIPE] = ACTIONS(4169), - [sym__special_characters] = ACTIONS(6063), - [anon_sym_DQUOTE] = ACTIONS(4169), - [anon_sym_DOLLAR] = ACTIONS(6063), - [sym_raw_string] = ACTIONS(4169), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4169), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4169), - [anon_sym_BQUOTE] = ACTIONS(4169), - [anon_sym_LT_LPAREN] = ACTIONS(4169), - [anon_sym_GT_LPAREN] = ACTIONS(4169), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6063), - [sym_word] = ACTIONS(4171), - }, - [2978] = { - [sym__concat] = ACTIONS(4790), - [sym_variable_name] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_PIPE_AMP] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym__special_characters] = ACTIONS(5844), - [anon_sym_DQUOTE] = ACTIONS(4790), - [anon_sym_DOLLAR] = ACTIONS(5844), - [sym_raw_string] = ACTIONS(4790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4790), - [anon_sym_LT_LPAREN] = ACTIONS(4790), - [anon_sym_GT_LPAREN] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5844), - [sym_word] = ACTIONS(4792), - }, - [2979] = { - [sym__concat] = ACTIONS(4796), - [sym_variable_name] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(4796), - [anon_sym_PIPE_AMP] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4796), - [anon_sym_PIPE_PIPE] = ACTIONS(4796), - [sym__special_characters] = ACTIONS(5846), - [anon_sym_DQUOTE] = ACTIONS(4796), - [anon_sym_DOLLAR] = ACTIONS(5846), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), - [anon_sym_BQUOTE] = ACTIONS(4796), - [anon_sym_LT_LPAREN] = ACTIONS(4796), - [anon_sym_GT_LPAREN] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5846), - [sym_word] = ACTIONS(4798), - }, - [2980] = { - [sym__concat] = ACTIONS(4859), - [sym_variable_name] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_RPAREN] = ACTIONS(4859), - [anon_sym_PIPE_AMP] = ACTIONS(4859), - [anon_sym_AMP_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4859), - [sym__special_characters] = ACTIONS(5848), - [anon_sym_DQUOTE] = ACTIONS(4859), - [anon_sym_DOLLAR] = ACTIONS(5848), - [sym_raw_string] = ACTIONS(4859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4859), - [anon_sym_LT_LPAREN] = ACTIONS(4859), - [anon_sym_GT_LPAREN] = ACTIONS(4859), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5848), - [sym_word] = ACTIONS(4861), - }, [2981] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7124), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(7132), + [sym_comment] = ACTIONS(56), }, [2982] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7126), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(7132), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [2983] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7128), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(7134), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, [2984] = { - [anon_sym_RBRACE] = ACTIONS(7128), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(7134), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [2985] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3512), - [anon_sym_RBRACE] = ACTIONS(7130), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_variable_name] = ACTIONS(4181), + [anon_sym_PIPE] = ACTIONS(6079), + [anon_sym_RPAREN] = ACTIONS(4181), + [anon_sym_PIPE_AMP] = ACTIONS(4181), + [anon_sym_AMP_AMP] = ACTIONS(4181), + [anon_sym_PIPE_PIPE] = ACTIONS(4181), + [sym__special_characters] = ACTIONS(6079), + [anon_sym_DQUOTE] = ACTIONS(4181), + [anon_sym_DOLLAR] = ACTIONS(6079), + [sym_raw_string] = ACTIONS(4181), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4181), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4181), + [anon_sym_BQUOTE] = ACTIONS(4181), + [anon_sym_LT_LPAREN] = ACTIONS(4181), + [anon_sym_GT_LPAREN] = ACTIONS(4181), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6079), + [sym_word] = ACTIONS(4183), }, [2986] = { - [sym__concat] = ACTIONS(4871), - [sym_variable_name] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5858), - [anon_sym_RPAREN] = ACTIONS(4871), - [anon_sym_PIPE_AMP] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5858), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5858), - [sym_raw_string] = ACTIONS(4871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LT_LPAREN] = ACTIONS(4871), - [anon_sym_GT_LPAREN] = ACTIONS(4871), + [sym__concat] = ACTIONS(4802), + [sym_variable_name] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(5860), + [anon_sym_RPAREN] = ACTIONS(4802), + [anon_sym_PIPE_AMP] = ACTIONS(4802), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [sym__special_characters] = ACTIONS(5860), + [anon_sym_DQUOTE] = ACTIONS(4802), + [anon_sym_DOLLAR] = ACTIONS(5860), + [sym_raw_string] = ACTIONS(4802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), + [anon_sym_BQUOTE] = ACTIONS(4802), + [anon_sym_LT_LPAREN] = ACTIONS(4802), + [anon_sym_GT_LPAREN] = ACTIONS(4802), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5858), - [sym_word] = ACTIONS(4873), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5860), + [sym_word] = ACTIONS(4804), }, [2987] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3514), - [anon_sym_RBRACE] = ACTIONS(7132), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2988] = { - [sym__concat] = ACTIONS(4877), - [sym_variable_name] = ACTIONS(4877), + [sym__concat] = ACTIONS(4808), + [sym_variable_name] = ACTIONS(4808), [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(4877), - [anon_sym_PIPE_AMP] = ACTIONS(4877), - [anon_sym_AMP_AMP] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4877), + [anon_sym_RPAREN] = ACTIONS(4808), + [anon_sym_PIPE_AMP] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4877), + [anon_sym_DQUOTE] = ACTIONS(4808), [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(4877), - [anon_sym_LT_LPAREN] = ACTIONS(4877), - [anon_sym_GT_LPAREN] = ACTIONS(4877), + [sym_raw_string] = ACTIONS(4808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), + [anon_sym_BQUOTE] = ACTIONS(4808), + [anon_sym_LT_LPAREN] = ACTIONS(4808), + [anon_sym_GT_LPAREN] = ACTIONS(4808), [sym_comment] = ACTIONS(56), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5862), - [sym_word] = ACTIONS(4879), + [sym_word] = ACTIONS(4810), }, - [2989] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3516), - [anon_sym_RBRACE] = ACTIONS(7134), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2990] = { - [sym__concat] = ACTIONS(4883), - [sym_variable_name] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(4883), - [anon_sym_PIPE_AMP] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5866), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5866), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LT_LPAREN] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5866), - [sym_word] = ACTIONS(4885), - }, - [2991] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7136), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2992] = { - [sym__concat] = ACTIONS(4889), - [sym_variable_name] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(4889), - [anon_sym_PIPE_AMP] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5870), - [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5870), - [sym_raw_string] = ACTIONS(4889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), - [anon_sym_BQUOTE] = ACTIONS(4889), - [anon_sym_LT_LPAREN] = ACTIONS(4889), - [anon_sym_GT_LPAREN] = ACTIONS(4889), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5870), - [sym_word] = ACTIONS(4891), - }, - [2993] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7138), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2994] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_PIPE_AMP] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym__special_characters] = ACTIONS(5844), - [anon_sym_DQUOTE] = ACTIONS(4790), - [anon_sym_DOLLAR] = ACTIONS(5844), - [sym_raw_string] = ACTIONS(4790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4790), - [anon_sym_LT_LPAREN] = ACTIONS(4790), - [anon_sym_GT_LPAREN] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5844), - [sym_word] = ACTIONS(4792), - }, - [2995] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(4796), - [anon_sym_PIPE_AMP] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4796), - [anon_sym_PIPE_PIPE] = ACTIONS(4796), - [sym__special_characters] = ACTIONS(5846), - [anon_sym_DQUOTE] = ACTIONS(4796), - [anon_sym_DOLLAR] = ACTIONS(5846), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), - [anon_sym_BQUOTE] = ACTIONS(4796), - [anon_sym_LT_LPAREN] = ACTIONS(4796), - [anon_sym_GT_LPAREN] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5846), - [sym_word] = ACTIONS(4798), - }, - [2996] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_RPAREN] = ACTIONS(4859), - [anon_sym_PIPE_AMP] = ACTIONS(4859), - [anon_sym_AMP_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4859), - [sym__special_characters] = ACTIONS(5848), - [anon_sym_DQUOTE] = ACTIONS(4859), - [anon_sym_DOLLAR] = ACTIONS(5848), - [sym_raw_string] = ACTIONS(4859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4859), - [anon_sym_LT_LPAREN] = ACTIONS(4859), - [anon_sym_GT_LPAREN] = ACTIONS(4859), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5848), - [sym_word] = ACTIONS(4861), - }, - [2997] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7140), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [2998] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7142), - [sym_comment] = ACTIONS(56), - }, - [2999] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7144), - [sym_comment] = ACTIONS(56), - }, - [3000] = { - [anon_sym_RBRACE] = ACTIONS(7144), - [sym_comment] = ACTIONS(56), - }, - [3001] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3523), - [anon_sym_RBRACE] = ACTIONS(7146), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3002] = { + [2988] = { [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5858), + [sym_variable_name] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5864), [anon_sym_RPAREN] = ACTIONS(4871), [anon_sym_PIPE_AMP] = ACTIONS(4871), [anon_sym_AMP_AMP] = ACTIONS(4871), [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5858), + [sym__special_characters] = ACTIONS(5864), [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_DOLLAR] = ACTIONS(5864), [sym_raw_string] = ACTIONS(4871), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), @@ -77568,97 +77279,94 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4871), [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5858), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5864), [sym_word] = ACTIONS(4873), }, - [3003] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3525), - [anon_sym_RBRACE] = ACTIONS(7148), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2989] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7136), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [3004] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(4877), - [anon_sym_PIPE_AMP] = ACTIONS(4877), - [anon_sym_AMP_AMP] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4877), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(4877), - [anon_sym_LT_LPAREN] = ACTIONS(4877), - [anon_sym_GT_LPAREN] = ACTIONS(4877), + [2990] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7138), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5862), - [sym_word] = ACTIONS(4879), }, - [3005] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3527), - [anon_sym_RBRACE] = ACTIONS(7150), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2991] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7140), + [sym_comment] = ACTIONS(56), + }, + [2992] = { + [anon_sym_RBRACE] = ACTIONS(7140), + [sym_comment] = ACTIONS(56), + }, + [2993] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3517), + [anon_sym_RBRACE] = ACTIONS(7142), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [3006] = { + [2994] = { [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5866), + [sym_variable_name] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5874), [anon_sym_RPAREN] = ACTIONS(4883), [anon_sym_PIPE_AMP] = ACTIONS(4883), [anon_sym_AMP_AMP] = ACTIONS(4883), [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5866), + [sym__special_characters] = ACTIONS(5874), [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5866), + [anon_sym_DOLLAR] = ACTIONS(5874), [sym_raw_string] = ACTIONS(4883), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), @@ -77666,48 +77374,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4883), [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5866), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5874), [sym_word] = ACTIONS(4885), }, - [3007] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7152), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2995] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3519), + [anon_sym_RBRACE] = ACTIONS(7144), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [3008] = { + [2996] = { [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5870), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5878), [anon_sym_RPAREN] = ACTIONS(4889), [anon_sym_PIPE_AMP] = ACTIONS(4889), [anon_sym_AMP_AMP] = ACTIONS(4889), [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5870), + [sym__special_characters] = ACTIONS(5878), [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5870), + [anon_sym_DOLLAR] = ACTIONS(5878), [sym_raw_string] = ACTIONS(4889), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), @@ -77715,279 +77424,555 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4889), [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5870), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5878), [sym_word] = ACTIONS(4891), }, - [3009] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7154), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [2997] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3521), + [anon_sym_RBRACE] = ACTIONS(7146), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), + }, + [2998] = { + [sym__concat] = ACTIONS(4895), + [sym_variable_name] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(5882), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_PIPE_AMP] = ACTIONS(4895), + [anon_sym_AMP_AMP] = ACTIONS(4895), + [anon_sym_PIPE_PIPE] = ACTIONS(4895), + [sym__special_characters] = ACTIONS(5882), + [anon_sym_DQUOTE] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(5882), + [sym_raw_string] = ACTIONS(4895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(4895), + [anon_sym_LT_LPAREN] = ACTIONS(4895), + [anon_sym_GT_LPAREN] = ACTIONS(4895), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5882), + [sym_word] = ACTIONS(4897), + }, + [2999] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7148), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3000] = { + [sym__concat] = ACTIONS(4901), + [sym_variable_name] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(5886), + [anon_sym_RPAREN] = ACTIONS(4901), + [anon_sym_PIPE_AMP] = ACTIONS(4901), + [anon_sym_AMP_AMP] = ACTIONS(4901), + [anon_sym_PIPE_PIPE] = ACTIONS(4901), + [sym__special_characters] = ACTIONS(5886), + [anon_sym_DQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(5886), + [sym_raw_string] = ACTIONS(4901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4901), + [anon_sym_LT_LPAREN] = ACTIONS(4901), + [anon_sym_GT_LPAREN] = ACTIONS(4901), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5886), + [sym_word] = ACTIONS(4903), + }, + [3001] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7150), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3002] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(5860), + [anon_sym_RPAREN] = ACTIONS(4802), + [anon_sym_PIPE_AMP] = ACTIONS(4802), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [sym__special_characters] = ACTIONS(5860), + [anon_sym_DQUOTE] = ACTIONS(4802), + [anon_sym_DOLLAR] = ACTIONS(5860), + [sym_raw_string] = ACTIONS(4802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), + [anon_sym_BQUOTE] = ACTIONS(4802), + [anon_sym_LT_LPAREN] = ACTIONS(4802), + [anon_sym_GT_LPAREN] = ACTIONS(4802), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5860), + [sym_word] = ACTIONS(4804), + }, + [3003] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_RPAREN] = ACTIONS(4808), + [anon_sym_PIPE_AMP] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4808), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), + [anon_sym_BQUOTE] = ACTIONS(4808), + [anon_sym_LT_LPAREN] = ACTIONS(4808), + [anon_sym_GT_LPAREN] = ACTIONS(4808), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5862), + [sym_word] = ACTIONS(4810), + }, + [3004] = { + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5864), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_PIPE_AMP] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(5864), + [anon_sym_DQUOTE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5864), + [sym_raw_string] = ACTIONS(4871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [anon_sym_LT_LPAREN] = ACTIONS(4871), + [anon_sym_GT_LPAREN] = ACTIONS(4871), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5864), + [sym_word] = ACTIONS(4873), + }, + [3005] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7152), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3006] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7154), + [sym_comment] = ACTIONS(56), + }, + [3007] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7156), + [sym_comment] = ACTIONS(56), + }, + [3008] = { + [anon_sym_RBRACE] = ACTIONS(7156), + [sym_comment] = ACTIONS(56), + }, + [3009] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3528), + [anon_sym_RBRACE] = ACTIONS(7158), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3010] = { - [sym_file_descriptor] = ACTIONS(6025), - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6916), - [anon_sym_RPAREN] = ACTIONS(6025), - [anon_sym_PIPE_AMP] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [anon_sym_EQ_TILDE] = ACTIONS(6916), - [anon_sym_EQ_EQ] = ACTIONS(6916), - [anon_sym_LT] = ACTIONS(6916), - [anon_sym_GT] = ACTIONS(6916), - [anon_sym_GT_GT] = ACTIONS(6025), - [anon_sym_AMP_GT] = ACTIONS(6916), - [anon_sym_AMP_GT_GT] = ACTIONS(6025), - [anon_sym_LT_AMP] = ACTIONS(6025), - [anon_sym_GT_AMP] = ACTIONS(6025), - [anon_sym_LT_LT] = ACTIONS(6916), - [anon_sym_LT_LT_DASH] = ACTIONS(6025), - [anon_sym_LT_LT_LT] = ACTIONS(6025), - [sym__special_characters] = ACTIONS(6916), - [anon_sym_DQUOTE] = ACTIONS(6025), - [anon_sym_DOLLAR] = ACTIONS(6916), - [sym_raw_string] = ACTIONS(6025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), - [anon_sym_BQUOTE] = ACTIONS(6025), - [anon_sym_LT_LPAREN] = ACTIONS(6025), - [anon_sym_GT_LPAREN] = ACTIONS(6025), + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5874), + [anon_sym_RPAREN] = ACTIONS(4883), + [anon_sym_PIPE_AMP] = ACTIONS(4883), + [anon_sym_AMP_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(5874), + [anon_sym_DQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5874), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [anon_sym_LT_LPAREN] = ACTIONS(4883), + [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6027), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5874), + [sym_word] = ACTIONS(4885), }, [3011] = { - [sym_file_descriptor] = ACTIONS(6029), - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6918), - [anon_sym_RPAREN] = ACTIONS(6029), - [anon_sym_PIPE_AMP] = ACTIONS(6029), - [anon_sym_AMP_AMP] = ACTIONS(6029), - [anon_sym_PIPE_PIPE] = ACTIONS(6029), - [anon_sym_EQ_TILDE] = ACTIONS(6918), - [anon_sym_EQ_EQ] = ACTIONS(6918), - [anon_sym_LT] = ACTIONS(6918), - [anon_sym_GT] = ACTIONS(6918), - [anon_sym_GT_GT] = ACTIONS(6029), - [anon_sym_AMP_GT] = ACTIONS(6918), - [anon_sym_AMP_GT_GT] = ACTIONS(6029), - [anon_sym_LT_AMP] = ACTIONS(6029), - [anon_sym_GT_AMP] = ACTIONS(6029), - [anon_sym_LT_LT] = ACTIONS(6918), - [anon_sym_LT_LT_DASH] = ACTIONS(6029), - [anon_sym_LT_LT_LT] = ACTIONS(6029), - [sym__special_characters] = ACTIONS(6918), - [anon_sym_DQUOTE] = ACTIONS(6029), - [anon_sym_DOLLAR] = ACTIONS(6918), - [sym_raw_string] = ACTIONS(6029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), - [anon_sym_BQUOTE] = ACTIONS(6029), - [anon_sym_LT_LPAREN] = ACTIONS(6029), - [anon_sym_GT_LPAREN] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6031), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3530), + [anon_sym_RBRACE] = ACTIONS(7160), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3012] = { - [sym_file_descriptor] = ACTIONS(6033), - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6920), - [anon_sym_RPAREN] = ACTIONS(6033), - [anon_sym_PIPE_AMP] = ACTIONS(6033), - [anon_sym_AMP_AMP] = ACTIONS(6033), - [anon_sym_PIPE_PIPE] = ACTIONS(6033), - [anon_sym_EQ_TILDE] = ACTIONS(6920), - [anon_sym_EQ_EQ] = ACTIONS(6920), - [anon_sym_LT] = ACTIONS(6920), - [anon_sym_GT] = ACTIONS(6920), - [anon_sym_GT_GT] = ACTIONS(6033), - [anon_sym_AMP_GT] = ACTIONS(6920), - [anon_sym_AMP_GT_GT] = ACTIONS(6033), - [anon_sym_LT_AMP] = ACTIONS(6033), - [anon_sym_GT_AMP] = ACTIONS(6033), - [anon_sym_LT_LT] = ACTIONS(6920), - [anon_sym_LT_LT_DASH] = ACTIONS(6033), - [anon_sym_LT_LT_LT] = ACTIONS(6033), - [sym__special_characters] = ACTIONS(6920), - [anon_sym_DQUOTE] = ACTIONS(6033), - [anon_sym_DOLLAR] = ACTIONS(6920), - [sym_raw_string] = ACTIONS(6033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), - [anon_sym_BQUOTE] = ACTIONS(6033), - [anon_sym_LT_LPAREN] = ACTIONS(6033), - [anon_sym_GT_LPAREN] = ACTIONS(6033), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5878), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(5878), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5878), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6035), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5878), + [sym_word] = ACTIONS(4891), }, [3013] = { - [sym_file_descriptor] = ACTIONS(6037), - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6922), - [anon_sym_RPAREN] = ACTIONS(6037), - [anon_sym_PIPE_AMP] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(6037), - [anon_sym_PIPE_PIPE] = ACTIONS(6037), - [anon_sym_EQ_TILDE] = ACTIONS(6922), - [anon_sym_EQ_EQ] = ACTIONS(6922), - [anon_sym_LT] = ACTIONS(6922), - [anon_sym_GT] = ACTIONS(6922), - [anon_sym_GT_GT] = ACTIONS(6037), - [anon_sym_AMP_GT] = ACTIONS(6922), - [anon_sym_AMP_GT_GT] = ACTIONS(6037), - [anon_sym_LT_AMP] = ACTIONS(6037), - [anon_sym_GT_AMP] = ACTIONS(6037), - [anon_sym_LT_LT] = ACTIONS(6922), - [anon_sym_LT_LT_DASH] = ACTIONS(6037), - [anon_sym_LT_LT_LT] = ACTIONS(6037), - [sym__special_characters] = ACTIONS(6922), - [anon_sym_DQUOTE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(6922), - [sym_raw_string] = ACTIONS(6037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), - [anon_sym_BQUOTE] = ACTIONS(6037), - [anon_sym_LT_LPAREN] = ACTIONS(6037), - [anon_sym_GT_LPAREN] = ACTIONS(6037), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6039), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3532), + [anon_sym_RBRACE] = ACTIONS(7162), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3014] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7156), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(5882), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_PIPE_AMP] = ACTIONS(4895), + [anon_sym_AMP_AMP] = ACTIONS(4895), + [anon_sym_PIPE_PIPE] = ACTIONS(4895), + [sym__special_characters] = ACTIONS(5882), + [anon_sym_DQUOTE] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(5882), + [sym_raw_string] = ACTIONS(4895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(4895), + [anon_sym_LT_LPAREN] = ACTIONS(4895), + [anon_sym_GT_LPAREN] = ACTIONS(4895), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5882), + [sym_word] = ACTIONS(4897), }, [3015] = { - [sym_file_descriptor] = ACTIONS(6043), - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6926), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [anon_sym_EQ_TILDE] = ACTIONS(6926), - [anon_sym_EQ_EQ] = ACTIONS(6926), - [anon_sym_LT] = ACTIONS(6926), - [anon_sym_GT] = ACTIONS(6926), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_AMP_GT] = ACTIONS(6926), - [anon_sym_AMP_GT_GT] = ACTIONS(6043), - [anon_sym_LT_AMP] = ACTIONS(6043), - [anon_sym_GT_AMP] = ACTIONS(6043), - [anon_sym_LT_LT] = ACTIONS(6926), - [anon_sym_LT_LT_DASH] = ACTIONS(6043), - [anon_sym_LT_LT_LT] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6926), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6926), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6045), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7164), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3016] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7158), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(5886), + [anon_sym_RPAREN] = ACTIONS(4901), + [anon_sym_PIPE_AMP] = ACTIONS(4901), + [anon_sym_AMP_AMP] = ACTIONS(4901), + [anon_sym_PIPE_PIPE] = ACTIONS(4901), + [sym__special_characters] = ACTIONS(5886), + [anon_sym_DQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(5886), + [sym_raw_string] = ACTIONS(4901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4901), + [anon_sym_LT_LPAREN] = ACTIONS(4901), + [anon_sym_GT_LPAREN] = ACTIONS(4901), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5886), + [sym_word] = ACTIONS(4903), }, [3017] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7166), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3018] = { + [sym_file_descriptor] = ACTIONS(6041), + [sym__concat] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_RPAREN] = ACTIONS(6041), + [anon_sym_PIPE_AMP] = ACTIONS(6041), + [anon_sym_AMP_AMP] = ACTIONS(6041), + [anon_sym_PIPE_PIPE] = ACTIONS(6041), + [anon_sym_EQ_TILDE] = ACTIONS(6930), + [anon_sym_EQ_EQ] = ACTIONS(6930), + [anon_sym_LT] = ACTIONS(6930), + [anon_sym_GT] = ACTIONS(6930), + [anon_sym_GT_GT] = ACTIONS(6041), + [anon_sym_AMP_GT] = ACTIONS(6930), + [anon_sym_AMP_GT_GT] = ACTIONS(6041), + [anon_sym_LT_AMP] = ACTIONS(6041), + [anon_sym_GT_AMP] = ACTIONS(6041), + [anon_sym_LT_LT] = ACTIONS(6930), + [anon_sym_LT_LT_DASH] = ACTIONS(6041), + [anon_sym_LT_LT_LT] = ACTIONS(6041), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), + [anon_sym_BQUOTE] = ACTIONS(6041), + [anon_sym_LT_LPAREN] = ACTIONS(6041), + [anon_sym_GT_LPAREN] = ACTIONS(6041), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6043), + }, + [3019] = { + [sym_file_descriptor] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6932), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [anon_sym_EQ_TILDE] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6932), + [anon_sym_LT] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6932), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_AMP_GT] = ACTIONS(6932), + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_AMP] = ACTIONS(6045), + [anon_sym_LT_LT] = ACTIONS(6932), + [anon_sym_LT_LT_DASH] = ACTIONS(6045), + [anon_sym_LT_LT_LT] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6932), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6932), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6047), + }, + [3020] = { [sym_file_descriptor] = ACTIONS(6049), [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE] = ACTIONS(6934), [anon_sym_RPAREN] = ACTIONS(6049), [anon_sym_PIPE_AMP] = ACTIONS(6049), [anon_sym_AMP_AMP] = ACTIONS(6049), [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [anon_sym_EQ_TILDE] = ACTIONS(6930), - [anon_sym_EQ_EQ] = ACTIONS(6930), - [anon_sym_LT] = ACTIONS(6930), - [anon_sym_GT] = ACTIONS(6930), + [anon_sym_EQ_TILDE] = ACTIONS(6934), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6934), [anon_sym_GT_GT] = ACTIONS(6049), - [anon_sym_AMP_GT] = ACTIONS(6930), + [anon_sym_AMP_GT] = ACTIONS(6934), [anon_sym_AMP_GT_GT] = ACTIONS(6049), [anon_sym_LT_AMP] = ACTIONS(6049), [anon_sym_GT_AMP] = ACTIONS(6049), - [anon_sym_LT_LT] = ACTIONS(6930), + [anon_sym_LT_LT] = ACTIONS(6934), [anon_sym_LT_LT_DASH] = ACTIONS(6049), [anon_sym_LT_LT_LT] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6930), + [sym__special_characters] = ACTIONS(6934), [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6930), + [anon_sym_DOLLAR] = ACTIONS(6934), [sym_raw_string] = ACTIONS(6049), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), @@ -77997,90 +77982,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(6051), }, - [3018] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7160), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3019] = { - [sym_file_descriptor] = ACTIONS(6055), - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [anon_sym_EQ_TILDE] = ACTIONS(6934), - [anon_sym_EQ_EQ] = ACTIONS(6934), - [anon_sym_LT] = ACTIONS(6934), - [anon_sym_GT] = ACTIONS(6934), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_AMP_GT] = ACTIONS(6934), - [anon_sym_AMP_GT_GT] = ACTIONS(6055), - [anon_sym_LT_AMP] = ACTIONS(6055), - [anon_sym_GT_AMP] = ACTIONS(6055), - [anon_sym_LT_LT] = ACTIONS(6934), - [anon_sym_LT_LT_DASH] = ACTIONS(6055), - [anon_sym_LT_LT_LT] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6057), - }, - [3020] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), + [3021] = { + [sym_file_descriptor] = ACTIONS(6053), + [sym__concat] = ACTIONS(6053), [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [anon_sym_RPAREN] = ACTIONS(6053), + [anon_sym_PIPE_AMP] = ACTIONS(6053), + [anon_sym_AMP_AMP] = ACTIONS(6053), + [anon_sym_PIPE_PIPE] = ACTIONS(6053), [anon_sym_EQ_TILDE] = ACTIONS(6936), [anon_sym_EQ_EQ] = ACTIONS(6936), [anon_sym_LT] = ACTIONS(6936), [anon_sym_GT] = ACTIONS(6936), - [anon_sym_GT_GT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6053), [anon_sym_AMP_GT] = ACTIONS(6936), + [anon_sym_AMP_GT_GT] = ACTIONS(6053), + [anon_sym_LT_AMP] = ACTIONS(6053), + [anon_sym_GT_AMP] = ACTIONS(6053), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_LT_LT_DASH] = ACTIONS(6053), + [anon_sym_LT_LT_LT] = ACTIONS(6053), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), + [anon_sym_BQUOTE] = ACTIONS(6053), + [anon_sym_LT_LPAREN] = ACTIONS(6053), + [anon_sym_GT_LPAREN] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6055), + }, + [3022] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7168), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3023] = { + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6940), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [anon_sym_EQ_TILDE] = ACTIONS(6940), + [anon_sym_EQ_EQ] = ACTIONS(6940), + [anon_sym_LT] = ACTIONS(6940), + [anon_sym_GT] = ACTIONS(6940), + [anon_sym_GT_GT] = ACTIONS(6059), + [anon_sym_AMP_GT] = ACTIONS(6940), [anon_sym_AMP_GT_GT] = ACTIONS(6059), [anon_sym_LT_AMP] = ACTIONS(6059), [anon_sym_GT_AMP] = ACTIONS(6059), - [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6940), [anon_sym_LT_LT_DASH] = ACTIONS(6059), [anon_sym_LT_LT_LT] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6936), + [sym__special_characters] = ACTIONS(6940), [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6936), + [anon_sym_DOLLAR] = ACTIONS(6940), [sym_raw_string] = ACTIONS(6059), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), @@ -78090,751 +78075,905 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(6061), }, - [3021] = { - [sym_file_descriptor] = ACTIONS(3283), - [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(4602), - [anon_sym_RPAREN] = ACTIONS(3283), - [anon_sym_PIPE_AMP] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(4602), - [anon_sym_GT] = ACTIONS(4602), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_AMP_GT] = ACTIONS(4602), - [anon_sym_AMP_GT_GT] = ACTIONS(3283), - [anon_sym_LT_AMP] = ACTIONS(3283), - [anon_sym_GT_AMP] = ACTIONS(3283), - [anon_sym_LT_LT] = ACTIONS(4602), - [anon_sym_LT_LT_DASH] = ACTIONS(3283), - [anon_sym_LT_LT_LT] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - }, - [3022] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7162), - [sym_comment] = ACTIONS(56), - }, - [3023] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7164), - [sym_comment] = ACTIONS(56), - }, [3024] = { - [anon_sym_RBRACE] = ACTIONS(7164), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7170), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3025] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3536), - [anon_sym_RBRACE] = ACTIONS(7166), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(6065), + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6944), + [anon_sym_RPAREN] = ACTIONS(6065), + [anon_sym_PIPE_AMP] = ACTIONS(6065), + [anon_sym_AMP_AMP] = ACTIONS(6065), + [anon_sym_PIPE_PIPE] = ACTIONS(6065), + [anon_sym_EQ_TILDE] = ACTIONS(6944), + [anon_sym_EQ_EQ] = ACTIONS(6944), + [anon_sym_LT] = ACTIONS(6944), + [anon_sym_GT] = ACTIONS(6944), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_AMP_GT] = ACTIONS(6944), + [anon_sym_AMP_GT_GT] = ACTIONS(6065), + [anon_sym_LT_AMP] = ACTIONS(6065), + [anon_sym_GT_AMP] = ACTIONS(6065), + [anon_sym_LT_LT] = ACTIONS(6944), + [anon_sym_LT_LT_DASH] = ACTIONS(6065), + [anon_sym_LT_LT_LT] = ACTIONS(6065), + [sym__special_characters] = ACTIONS(6944), + [anon_sym_DQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR] = ACTIONS(6944), + [sym_raw_string] = ACTIONS(6065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), + [anon_sym_BQUOTE] = ACTIONS(6065), + [anon_sym_LT_LPAREN] = ACTIONS(6065), + [anon_sym_GT_LPAREN] = ACTIONS(6065), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6067), }, [3026] = { - [sym_file_descriptor] = ACTIONS(3347), - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_RPAREN] = ACTIONS(3347), - [anon_sym_PIPE_AMP] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(4610), - [anon_sym_GT] = ACTIONS(4610), - [anon_sym_GT_GT] = ACTIONS(3347), - [anon_sym_AMP_GT] = ACTIONS(4610), - [anon_sym_AMP_GT_GT] = ACTIONS(3347), - [anon_sym_LT_AMP] = ACTIONS(3347), - [anon_sym_GT_AMP] = ACTIONS(3347), - [anon_sym_LT_LT] = ACTIONS(4610), - [anon_sym_LT_LT_DASH] = ACTIONS(3347), - [anon_sym_LT_LT_LT] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7172), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3027] = { - [sym_concatenation] = STATE(3539), - [sym_string] = STATE(3538), - [sym_simple_expansion] = STATE(3538), - [sym_string_expansion] = STATE(3538), - [sym_expansion] = STATE(3538), - [sym_command_substitution] = STATE(3538), - [sym_process_substitution] = STATE(3538), - [anon_sym_RBRACE] = ACTIONS(7164), - [sym__special_characters] = ACTIONS(7168), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(7170), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [sym_file_descriptor] = ACTIONS(6071), + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6948), + [anon_sym_RPAREN] = ACTIONS(6071), + [anon_sym_PIPE_AMP] = ACTIONS(6071), + [anon_sym_AMP_AMP] = ACTIONS(6071), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [anon_sym_EQ_TILDE] = ACTIONS(6948), + [anon_sym_EQ_EQ] = ACTIONS(6948), + [anon_sym_LT] = ACTIONS(6948), + [anon_sym_GT] = ACTIONS(6948), + [anon_sym_GT_GT] = ACTIONS(6071), + [anon_sym_AMP_GT] = ACTIONS(6948), + [anon_sym_AMP_GT_GT] = ACTIONS(6071), + [anon_sym_LT_AMP] = ACTIONS(6071), + [anon_sym_GT_AMP] = ACTIONS(6071), + [anon_sym_LT_LT] = ACTIONS(6948), + [anon_sym_LT_LT_DASH] = ACTIONS(6071), + [anon_sym_LT_LT_LT] = ACTIONS(6071), + [sym__special_characters] = ACTIONS(6948), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6948), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7172), + [sym_word] = ACTIONS(6073), }, [3028] = { - [sym_file_descriptor] = ACTIONS(3392), - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(4618), - [anon_sym_RPAREN] = ACTIONS(3392), - [anon_sym_PIPE_AMP] = ACTIONS(3392), - [anon_sym_AMP_AMP] = ACTIONS(3392), - [anon_sym_PIPE_PIPE] = ACTIONS(3392), - [anon_sym_LT] = ACTIONS(4618), - [anon_sym_GT] = ACTIONS(4618), - [anon_sym_GT_GT] = ACTIONS(3392), - [anon_sym_AMP_GT] = ACTIONS(4618), - [anon_sym_AMP_GT_GT] = ACTIONS(3392), - [anon_sym_LT_AMP] = ACTIONS(3392), - [anon_sym_GT_AMP] = ACTIONS(3392), - [anon_sym_LT_LT] = ACTIONS(4618), - [anon_sym_LT_LT_DASH] = ACTIONS(3392), - [anon_sym_LT_LT_LT] = ACTIONS(3392), + [sym_file_descriptor] = ACTIONS(6075), + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_RPAREN] = ACTIONS(6075), + [anon_sym_PIPE_AMP] = ACTIONS(6075), + [anon_sym_AMP_AMP] = ACTIONS(6075), + [anon_sym_PIPE_PIPE] = ACTIONS(6075), + [anon_sym_EQ_TILDE] = ACTIONS(6950), + [anon_sym_EQ_EQ] = ACTIONS(6950), + [anon_sym_LT] = ACTIONS(6950), + [anon_sym_GT] = ACTIONS(6950), + [anon_sym_GT_GT] = ACTIONS(6075), + [anon_sym_AMP_GT] = ACTIONS(6950), + [anon_sym_AMP_GT_GT] = ACTIONS(6075), + [anon_sym_LT_AMP] = ACTIONS(6075), + [anon_sym_GT_AMP] = ACTIONS(6075), + [anon_sym_LT_LT] = ACTIONS(6950), + [anon_sym_LT_LT_DASH] = ACTIONS(6075), + [anon_sym_LT_LT_LT] = ACTIONS(6075), + [sym__special_characters] = ACTIONS(6950), + [anon_sym_DQUOTE] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6950), + [sym_raw_string] = ACTIONS(6075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), + [anon_sym_BQUOTE] = ACTIONS(6075), + [anon_sym_LT_LPAREN] = ACTIONS(6075), + [anon_sym_GT_LPAREN] = ACTIONS(6075), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6077), }, [3029] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7174), + [sym_file_descriptor] = ACTIONS(3293), + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_PIPE_AMP] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_GT_GT] = ACTIONS(3293), + [anon_sym_AMP_GT] = ACTIONS(4614), + [anon_sym_AMP_GT_GT] = ACTIONS(3293), + [anon_sym_LT_AMP] = ACTIONS(3293), + [anon_sym_GT_AMP] = ACTIONS(3293), + [anon_sym_LT_LT] = ACTIONS(4614), + [anon_sym_LT_LT_DASH] = ACTIONS(3293), + [anon_sym_LT_LT_LT] = ACTIONS(3293), + [sym_comment] = ACTIONS(56), }, [3030] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7176), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7174), + [sym_comment] = ACTIONS(56), }, [3031] = { - [sym_file_descriptor] = ACTIONS(3400), - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(4624), - [anon_sym_RPAREN] = ACTIONS(3400), - [anon_sym_PIPE_AMP] = ACTIONS(3400), - [anon_sym_AMP_AMP] = ACTIONS(3400), - [anon_sym_PIPE_PIPE] = ACTIONS(3400), - [anon_sym_LT] = ACTIONS(4624), - [anon_sym_GT] = ACTIONS(4624), - [anon_sym_GT_GT] = ACTIONS(3400), - [anon_sym_AMP_GT] = ACTIONS(4624), - [anon_sym_AMP_GT_GT] = ACTIONS(3400), - [anon_sym_LT_AMP] = ACTIONS(3400), - [anon_sym_GT_AMP] = ACTIONS(3400), - [anon_sym_LT_LT] = ACTIONS(4624), - [anon_sym_LT_LT_DASH] = ACTIONS(3400), - [anon_sym_LT_LT_LT] = ACTIONS(3400), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7176), [sym_comment] = ACTIONS(56), }, [3032] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7178), + [anon_sym_RBRACE] = ACTIONS(7176), + [sym_comment] = ACTIONS(56), }, [3033] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7180), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3541), + [anon_sym_RBRACE] = ACTIONS(7178), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3034] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7182), + [sym_file_descriptor] = ACTIONS(3357), + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(4622), + [anon_sym_RPAREN] = ACTIONS(3357), + [anon_sym_PIPE_AMP] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(4622), + [anon_sym_GT] = ACTIONS(4622), + [anon_sym_GT_GT] = ACTIONS(3357), + [anon_sym_AMP_GT] = ACTIONS(4622), + [anon_sym_AMP_GT_GT] = ACTIONS(3357), + [anon_sym_LT_AMP] = ACTIONS(3357), + [anon_sym_GT_AMP] = ACTIONS(3357), + [anon_sym_LT_LT] = ACTIONS(4622), + [anon_sym_LT_LT_DASH] = ACTIONS(3357), + [anon_sym_LT_LT_LT] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), }, [3035] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7164), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(3544), + [sym_string] = STATE(3543), + [sym_simple_expansion] = STATE(3543), + [sym_string_expansion] = STATE(3543), + [sym_expansion] = STATE(3543), + [sym_command_substitution] = STATE(3543), + [sym_process_substitution] = STATE(3543), + [anon_sym_RBRACE] = ACTIONS(7176), + [sym__special_characters] = ACTIONS(7180), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(7182), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7184), }, [3036] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3546), - [anon_sym_RBRACE] = ACTIONS(7184), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(3402), + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_RPAREN] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_GT] = ACTIONS(4630), + [anon_sym_AMP_GT_GT] = ACTIONS(3402), + [anon_sym_LT_AMP] = ACTIONS(3402), + [anon_sym_GT_AMP] = ACTIONS(3402), + [anon_sym_LT_LT] = ACTIONS(4630), + [anon_sym_LT_LT_DASH] = ACTIONS(3402), + [anon_sym_LT_LT_LT] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), }, [3037] = { - [sym_file_descriptor] = ACTIONS(3412), - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(4634), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), - [anon_sym_GT_GT] = ACTIONS(3412), - [anon_sym_AMP_GT] = ACTIONS(4634), - [anon_sym_AMP_GT_GT] = ACTIONS(3412), - [anon_sym_LT_AMP] = ACTIONS(3412), - [anon_sym_GT_AMP] = ACTIONS(3412), - [anon_sym_LT_LT] = ACTIONS(4634), - [anon_sym_LT_LT_DASH] = ACTIONS(3412), - [anon_sym_LT_LT_LT] = ACTIONS(3412), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7186), }, [3038] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3548), - [anon_sym_RBRACE] = ACTIONS(7186), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7188), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3039] = { - [sym_file_descriptor] = ACTIONS(3283), - [sym__concat] = ACTIONS(3283), - [sym_variable_name] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(4602), - [anon_sym_PIPE_AMP] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(4602), - [anon_sym_GT] = ACTIONS(4602), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_AMP_GT] = ACTIONS(4602), - [anon_sym_AMP_GT_GT] = ACTIONS(3283), - [anon_sym_LT_AMP] = ACTIONS(3283), - [anon_sym_GT_AMP] = ACTIONS(3283), - [sym__special_characters] = ACTIONS(4602), - [anon_sym_DQUOTE] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(4602), - [sym_raw_string] = ACTIONS(3283), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3283), - [anon_sym_BQUOTE] = ACTIONS(3283), - [anon_sym_LT_LPAREN] = ACTIONS(3283), - [anon_sym_GT_LPAREN] = ACTIONS(3283), + [sym_file_descriptor] = ACTIONS(3410), + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(4636), + [anon_sym_RPAREN] = ACTIONS(3410), + [anon_sym_PIPE_AMP] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [anon_sym_LT] = ACTIONS(4636), + [anon_sym_GT] = ACTIONS(4636), + [anon_sym_GT_GT] = ACTIONS(3410), + [anon_sym_AMP_GT] = ACTIONS(4636), + [anon_sym_AMP_GT_GT] = ACTIONS(3410), + [anon_sym_LT_AMP] = ACTIONS(3410), + [anon_sym_GT_AMP] = ACTIONS(3410), + [anon_sym_LT_LT] = ACTIONS(4636), + [anon_sym_LT_LT_DASH] = ACTIONS(3410), + [anon_sym_LT_LT_LT] = ACTIONS(3410), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4602), }, [3040] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7188), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7190), }, [3041] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7190), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7192), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3042] = { - [anon_sym_RBRACE] = ACTIONS(7190), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7194), }, [3043] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3552), - [anon_sym_RBRACE] = ACTIONS(7192), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7176), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3044] = { - [sym_file_descriptor] = ACTIONS(3347), - [sym__concat] = ACTIONS(3347), - [sym_variable_name] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_PIPE_AMP] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(4610), - [anon_sym_GT] = ACTIONS(4610), - [anon_sym_GT_GT] = ACTIONS(3347), - [anon_sym_AMP_GT] = ACTIONS(4610), - [anon_sym_AMP_GT_GT] = ACTIONS(3347), - [anon_sym_LT_AMP] = ACTIONS(3347), - [anon_sym_GT_AMP] = ACTIONS(3347), - [sym__special_characters] = ACTIONS(4610), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_DOLLAR] = ACTIONS(4610), - [sym_raw_string] = ACTIONS(3347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3347), - [anon_sym_BQUOTE] = ACTIONS(3347), - [anon_sym_LT_LPAREN] = ACTIONS(3347), - [anon_sym_GT_LPAREN] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4610), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3551), + [anon_sym_RBRACE] = ACTIONS(7196), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3045] = { - [sym_concatenation] = STATE(3555), - [sym_string] = STATE(3554), - [sym_simple_expansion] = STATE(3554), - [sym_string_expansion] = STATE(3554), - [sym_expansion] = STATE(3554), - [sym_command_substitution] = STATE(3554), - [sym_process_substitution] = STATE(3554), - [anon_sym_RBRACE] = ACTIONS(7190), - [sym__special_characters] = ACTIONS(7194), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(7196), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [sym_file_descriptor] = ACTIONS(3422), + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_PIPE_AMP] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_GT_GT] = ACTIONS(3422), + [anon_sym_AMP_GT] = ACTIONS(4646), + [anon_sym_AMP_GT_GT] = ACTIONS(3422), + [anon_sym_LT_AMP] = ACTIONS(3422), + [anon_sym_GT_AMP] = ACTIONS(3422), + [anon_sym_LT_LT] = ACTIONS(4646), + [anon_sym_LT_LT_DASH] = ACTIONS(3422), + [anon_sym_LT_LT_LT] = ACTIONS(3422), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7198), }, [3046] = { - [sym_file_descriptor] = ACTIONS(3392), - [sym__concat] = ACTIONS(3392), - [sym_variable_name] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(4618), - [anon_sym_PIPE_AMP] = ACTIONS(3392), - [anon_sym_AMP_AMP] = ACTIONS(3392), - [anon_sym_PIPE_PIPE] = ACTIONS(3392), - [anon_sym_LT] = ACTIONS(4618), - [anon_sym_GT] = ACTIONS(4618), - [anon_sym_GT_GT] = ACTIONS(3392), - [anon_sym_AMP_GT] = ACTIONS(4618), - [anon_sym_AMP_GT_GT] = ACTIONS(3392), - [anon_sym_LT_AMP] = ACTIONS(3392), - [anon_sym_GT_AMP] = ACTIONS(3392), - [sym__special_characters] = ACTIONS(4618), - [anon_sym_DQUOTE] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(4618), - [sym_raw_string] = ACTIONS(3392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3392), - [anon_sym_BQUOTE] = ACTIONS(3392), - [anon_sym_LT_LPAREN] = ACTIONS(3392), - [anon_sym_GT_LPAREN] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4618), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3553), + [anon_sym_RBRACE] = ACTIONS(7198), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3047] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7200), + [sym_file_descriptor] = ACTIONS(3293), + [sym__concat] = ACTIONS(3293), + [sym_variable_name] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_PIPE_AMP] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_GT_GT] = ACTIONS(3293), + [anon_sym_AMP_GT] = ACTIONS(4614), + [anon_sym_AMP_GT_GT] = ACTIONS(3293), + [anon_sym_LT_AMP] = ACTIONS(3293), + [anon_sym_GT_AMP] = ACTIONS(3293), + [sym__special_characters] = ACTIONS(4614), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4614), + [sym_raw_string] = ACTIONS(3293), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3293), + [anon_sym_LT_LPAREN] = ACTIONS(3293), + [anon_sym_GT_LPAREN] = ACTIONS(3293), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4614), }, [3048] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7202), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7200), + [sym_comment] = ACTIONS(56), }, [3049] = { - [sym_file_descriptor] = ACTIONS(3400), - [sym__concat] = ACTIONS(3400), - [sym_variable_name] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(4624), - [anon_sym_PIPE_AMP] = ACTIONS(3400), - [anon_sym_AMP_AMP] = ACTIONS(3400), - [anon_sym_PIPE_PIPE] = ACTIONS(3400), - [anon_sym_LT] = ACTIONS(4624), - [anon_sym_GT] = ACTIONS(4624), - [anon_sym_GT_GT] = ACTIONS(3400), - [anon_sym_AMP_GT] = ACTIONS(4624), - [anon_sym_AMP_GT_GT] = ACTIONS(3400), - [anon_sym_LT_AMP] = ACTIONS(3400), - [anon_sym_GT_AMP] = ACTIONS(3400), - [sym__special_characters] = ACTIONS(4624), - [anon_sym_DQUOTE] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(4624), - [sym_raw_string] = ACTIONS(3400), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3400), - [anon_sym_BQUOTE] = ACTIONS(3400), - [anon_sym_LT_LPAREN] = ACTIONS(3400), - [anon_sym_GT_LPAREN] = ACTIONS(3400), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7202), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4624), }, [3050] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7204), + [anon_sym_RBRACE] = ACTIONS(7202), + [sym_comment] = ACTIONS(56), }, [3051] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7206), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3557), + [anon_sym_RBRACE] = ACTIONS(7204), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3052] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7208), + [sym_file_descriptor] = ACTIONS(3357), + [sym__concat] = ACTIONS(3357), + [sym_variable_name] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(4622), + [anon_sym_PIPE_AMP] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(4622), + [anon_sym_GT] = ACTIONS(4622), + [anon_sym_GT_GT] = ACTIONS(3357), + [anon_sym_AMP_GT] = ACTIONS(4622), + [anon_sym_AMP_GT_GT] = ACTIONS(3357), + [anon_sym_LT_AMP] = ACTIONS(3357), + [anon_sym_GT_AMP] = ACTIONS(3357), + [sym__special_characters] = ACTIONS(4622), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(4622), + [sym_raw_string] = ACTIONS(3357), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3357), + [anon_sym_LT_LPAREN] = ACTIONS(3357), + [anon_sym_GT_LPAREN] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4622), }, [3053] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7190), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(3560), + [sym_string] = STATE(3559), + [sym_simple_expansion] = STATE(3559), + [sym_string_expansion] = STATE(3559), + [sym_expansion] = STATE(3559), + [sym_command_substitution] = STATE(3559), + [sym_process_substitution] = STATE(3559), + [anon_sym_RBRACE] = ACTIONS(7202), + [sym__special_characters] = ACTIONS(7206), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(7208), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7210), }, [3054] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3562), - [anon_sym_RBRACE] = ACTIONS(7210), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(3402), + [sym__concat] = ACTIONS(3402), + [sym_variable_name] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_GT] = ACTIONS(4630), + [anon_sym_AMP_GT_GT] = ACTIONS(3402), + [anon_sym_LT_AMP] = ACTIONS(3402), + [anon_sym_GT_AMP] = ACTIONS(3402), + [sym__special_characters] = ACTIONS(4630), + [anon_sym_DQUOTE] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(4630), + [sym_raw_string] = ACTIONS(3402), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [anon_sym_LT_LPAREN] = ACTIONS(3402), + [anon_sym_GT_LPAREN] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4630), }, [3055] = { - [sym_file_descriptor] = ACTIONS(3412), - [sym__concat] = ACTIONS(3412), - [sym_variable_name] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(4634), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), - [anon_sym_GT_GT] = ACTIONS(3412), - [anon_sym_AMP_GT] = ACTIONS(4634), - [anon_sym_AMP_GT_GT] = ACTIONS(3412), - [anon_sym_LT_AMP] = ACTIONS(3412), - [anon_sym_GT_AMP] = ACTIONS(3412), - [sym__special_characters] = ACTIONS(4634), - [anon_sym_DQUOTE] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(4634), - [sym_raw_string] = ACTIONS(3412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [anon_sym_LT_LPAREN] = ACTIONS(3412), - [anon_sym_GT_LPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(4634), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7212), }, [3056] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3564), - [anon_sym_RBRACE] = ACTIONS(7212), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7214), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3057] = { - [aux_sym_concatenation_repeat1] = STATE(3060), - [sym__concat] = ACTIONS(6306), - [anon_sym_PIPE] = ACTIONS(1241), - [anon_sym_PIPE_AMP] = ACTIONS(1239), - [anon_sym_AMP_AMP] = ACTIONS(1239), - [anon_sym_PIPE_PIPE] = ACTIONS(1239), - [anon_sym_BQUOTE] = ACTIONS(1239), + [sym_file_descriptor] = ACTIONS(3410), + [sym__concat] = ACTIONS(3410), + [sym_variable_name] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(4636), + [anon_sym_PIPE_AMP] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [anon_sym_LT] = ACTIONS(4636), + [anon_sym_GT] = ACTIONS(4636), + [anon_sym_GT_GT] = ACTIONS(3410), + [anon_sym_AMP_GT] = ACTIONS(4636), + [anon_sym_AMP_GT_GT] = ACTIONS(3410), + [anon_sym_LT_AMP] = ACTIONS(3410), + [anon_sym_GT_AMP] = ACTIONS(3410), + [sym__special_characters] = ACTIONS(4636), + [anon_sym_DQUOTE] = ACTIONS(3410), + [anon_sym_DOLLAR] = ACTIONS(4636), + [sym_raw_string] = ACTIONS(3410), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3410), + [anon_sym_BQUOTE] = ACTIONS(3410), + [anon_sym_LT_LPAREN] = ACTIONS(3410), + [anon_sym_GT_LPAREN] = ACTIONS(3410), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4636), }, [3058] = { - [aux_sym_concatenation_repeat1] = STATE(3060), - [sym__concat] = ACTIONS(6306), - [anon_sym_PIPE] = ACTIONS(1245), - [anon_sym_PIPE_AMP] = ACTIONS(1243), - [anon_sym_AMP_AMP] = ACTIONS(1243), - [anon_sym_PIPE_PIPE] = ACTIONS(1243), - [anon_sym_BQUOTE] = ACTIONS(1243), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7216), }, [3059] = { - [sym_string] = STATE(3565), - [sym_simple_expansion] = STATE(3565), - [sym_string_expansion] = STATE(3565), - [sym_expansion] = STATE(3565), - [sym_command_substitution] = STATE(3565), - [sym_process_substitution] = STATE(3565), - [sym__special_characters] = ACTIONS(7214), - [anon_sym_DQUOTE] = ACTIONS(5169), - [anon_sym_DOLLAR] = ACTIONS(5171), - [sym_raw_string] = ACTIONS(7216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5175), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5177), - [anon_sym_BQUOTE] = ACTIONS(5179), - [anon_sym_LT_LPAREN] = ACTIONS(5181), - [anon_sym_GT_LPAREN] = ACTIONS(5181), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7214), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7218), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3060] = { - [aux_sym_concatenation_repeat1] = STATE(3566), - [sym__concat] = ACTIONS(6306), - [anon_sym_PIPE] = ACTIONS(1567), - [anon_sym_PIPE_AMP] = ACTIONS(788), - [anon_sym_AMP_AMP] = ACTIONS(788), - [anon_sym_PIPE_PIPE] = ACTIONS(788), - [anon_sym_BQUOTE] = ACTIONS(788), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7220), }, [3061] = { - [sym__concat] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(1569), - [anon_sym_PIPE_AMP] = ACTIONS(792), - [anon_sym_AMP_AMP] = ACTIONS(792), - [anon_sym_PIPE_PIPE] = ACTIONS(792), - [anon_sym_BQUOTE] = ACTIONS(792), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7202), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3062] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3567), + [anon_sym_RBRACE] = ACTIONS(7222), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3063] = { + [sym_file_descriptor] = ACTIONS(3422), + [sym__concat] = ACTIONS(3422), + [sym_variable_name] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(4646), + [anon_sym_PIPE_AMP] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_GT_GT] = ACTIONS(3422), + [anon_sym_AMP_GT] = ACTIONS(4646), + [anon_sym_AMP_GT_GT] = ACTIONS(3422), + [anon_sym_LT_AMP] = ACTIONS(3422), + [anon_sym_GT_AMP] = ACTIONS(3422), + [sym__special_characters] = ACTIONS(4646), + [anon_sym_DQUOTE] = ACTIONS(3422), + [anon_sym_DOLLAR] = ACTIONS(4646), + [sym_raw_string] = ACTIONS(3422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3422), + [anon_sym_BQUOTE] = ACTIONS(3422), + [anon_sym_LT_LPAREN] = ACTIONS(3422), + [anon_sym_GT_LPAREN] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(4646), + }, + [3064] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3569), + [anon_sym_RBRACE] = ACTIONS(7224), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3065] = { + [aux_sym_concatenation_repeat1] = STATE(3068), + [sym__concat] = ACTIONS(6322), + [anon_sym_PIPE] = ACTIONS(1243), + [anon_sym_PIPE_AMP] = ACTIONS(1241), + [anon_sym_AMP_AMP] = ACTIONS(1241), + [anon_sym_PIPE_PIPE] = ACTIONS(1241), + [anon_sym_BQUOTE] = ACTIONS(1241), + [sym_comment] = ACTIONS(56), + }, + [3066] = { + [aux_sym_concatenation_repeat1] = STATE(3068), + [sym__concat] = ACTIONS(6322), + [anon_sym_PIPE] = ACTIONS(1247), + [anon_sym_PIPE_AMP] = ACTIONS(1245), + [anon_sym_AMP_AMP] = ACTIONS(1245), + [anon_sym_PIPE_PIPE] = ACTIONS(1245), + [anon_sym_BQUOTE] = ACTIONS(1245), + [sym_comment] = ACTIONS(56), + }, + [3067] = { + [sym_string] = STATE(3570), + [sym_simple_expansion] = STATE(3570), + [sym_string_expansion] = STATE(3570), + [sym_expansion] = STATE(3570), + [sym_command_substitution] = STATE(3570), + [sym_process_substitution] = STATE(3570), + [sym__special_characters] = ACTIONS(7226), + [anon_sym_DQUOTE] = ACTIONS(5187), + [anon_sym_DOLLAR] = ACTIONS(5189), + [sym_raw_string] = ACTIONS(7228), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5193), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5195), + [anon_sym_BQUOTE] = ACTIONS(5197), + [anon_sym_LT_LPAREN] = ACTIONS(5199), + [anon_sym_GT_LPAREN] = ACTIONS(5199), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7226), + }, + [3068] = { + [aux_sym_concatenation_repeat1] = STATE(3571), + [sym__concat] = ACTIONS(6322), + [anon_sym_PIPE] = ACTIONS(1571), + [anon_sym_PIPE_AMP] = ACTIONS(790), + [anon_sym_AMP_AMP] = ACTIONS(790), + [anon_sym_PIPE_PIPE] = ACTIONS(790), + [anon_sym_BQUOTE] = ACTIONS(790), + [sym_comment] = ACTIONS(56), + }, + [3069] = { + [sym__concat] = ACTIONS(794), + [anon_sym_PIPE] = ACTIONS(1573), + [anon_sym_PIPE_AMP] = ACTIONS(794), + [anon_sym_AMP_AMP] = ACTIONS(794), + [anon_sym_PIPE_PIPE] = ACTIONS(794), + [anon_sym_BQUOTE] = ACTIONS(794), + [sym_comment] = ACTIONS(56), + }, + [3070] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(7218), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(7230), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -78842,226 +78981,157 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [3063] = { - [sym__concat] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(1573), - [anon_sym_PIPE_AMP] = ACTIONS(824), - [anon_sym_AMP_AMP] = ACTIONS(824), - [anon_sym_PIPE_PIPE] = ACTIONS(824), - [anon_sym_BQUOTE] = ACTIONS(824), - [sym_comment] = ACTIONS(56), - }, - [3064] = { - [sym__concat] = ACTIONS(828), - [anon_sym_PIPE] = ACTIONS(1575), - [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(56), - }, - [3065] = { - [sym__concat] = ACTIONS(832), - [anon_sym_PIPE] = ACTIONS(1577), - [anon_sym_PIPE_AMP] = ACTIONS(832), - [anon_sym_AMP_AMP] = ACTIONS(832), - [anon_sym_PIPE_PIPE] = ACTIONS(832), - [anon_sym_BQUOTE] = ACTIONS(832), - [sym_comment] = ACTIONS(56), - }, - [3066] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(7220), - [sym_comment] = ACTIONS(56), - }, - [3067] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3571), - [anon_sym_RBRACE] = ACTIONS(7222), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7224), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3068] = { - [sym_subscript] = STATE(3575), - [sym_variable_name] = ACTIONS(7226), - [anon_sym_DOLLAR] = ACTIONS(7228), - [anon_sym_DASH] = ACTIONS(7228), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7230), - [anon_sym_STAR] = ACTIONS(7228), - [anon_sym_AT] = ACTIONS(7228), - [anon_sym_QMARK] = ACTIONS(7228), - [anon_sym_0] = ACTIONS(7232), - [anon_sym__] = ACTIONS(7232), - }, - [3069] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3578), - [anon_sym_RBRACE] = ACTIONS(7234), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7236), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3070] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3581), - [anon_sym_RBRACE] = ACTIONS(7238), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7240), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [3071] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(7242), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [sym__concat] = ACTIONS(826), + [anon_sym_PIPE] = ACTIONS(1577), + [anon_sym_PIPE_AMP] = ACTIONS(826), + [anon_sym_AMP_AMP] = ACTIONS(826), + [anon_sym_PIPE_PIPE] = ACTIONS(826), + [anon_sym_BQUOTE] = ACTIONS(826), [sym_comment] = ACTIONS(56), }, [3072] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(7242), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym__concat] = ACTIONS(830), + [anon_sym_PIPE] = ACTIONS(1579), + [anon_sym_PIPE_AMP] = ACTIONS(830), + [anon_sym_AMP_AMP] = ACTIONS(830), + [anon_sym_PIPE_PIPE] = ACTIONS(830), + [anon_sym_BQUOTE] = ACTIONS(830), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [3073] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(7242), + [sym__concat] = ACTIONS(834), + [anon_sym_PIPE] = ACTIONS(1581), + [anon_sym_PIPE_AMP] = ACTIONS(834), + [anon_sym_AMP_AMP] = ACTIONS(834), + [anon_sym_PIPE_PIPE] = ACTIONS(834), + [anon_sym_BQUOTE] = ACTIONS(834), [sym_comment] = ACTIONS(56), }, [3074] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(7242), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(7232), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), }, [3075] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(7244), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3576), + [anon_sym_RBRACE] = ACTIONS(7234), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7236), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3076] = { + [sym_subscript] = STATE(3580), + [sym_variable_name] = ACTIONS(7238), + [anon_sym_DOLLAR] = ACTIONS(7240), + [anon_sym_DASH] = ACTIONS(7240), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7242), + [anon_sym_STAR] = ACTIONS(7240), + [anon_sym_AT] = ACTIONS(7240), + [anon_sym_QMARK] = ACTIONS(7240), + [anon_sym_0] = ACTIONS(7244), + [anon_sym__] = ACTIONS(7244), + }, + [3077] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3583), + [anon_sym_RBRACE] = ACTIONS(7246), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7248), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3078] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3586), + [anon_sym_RBRACE] = ACTIONS(7250), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7252), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3079] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(7254), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [3080] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(7244), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(7254), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -79081,476 +79151,125 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [3077] = { - [sym__concat] = ACTIONS(4790), - [sym_variable_name] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_PIPE_AMP] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym__special_characters] = ACTIONS(5844), - [anon_sym_DQUOTE] = ACTIONS(4790), - [anon_sym_DOLLAR] = ACTIONS(5844), - [sym_raw_string] = ACTIONS(4790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4790), - [anon_sym_LT_LPAREN] = ACTIONS(4790), - [anon_sym_GT_LPAREN] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5844), - [sym_word] = ACTIONS(4792), - }, - [3078] = { - [sym__concat] = ACTIONS(4796), - [sym_variable_name] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(5846), - [anon_sym_PIPE_AMP] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4796), - [anon_sym_PIPE_PIPE] = ACTIONS(4796), - [sym__special_characters] = ACTIONS(5846), - [anon_sym_DQUOTE] = ACTIONS(4796), - [anon_sym_DOLLAR] = ACTIONS(5846), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), - [anon_sym_BQUOTE] = ACTIONS(4796), - [anon_sym_LT_LPAREN] = ACTIONS(4796), - [anon_sym_GT_LPAREN] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5846), - [sym_word] = ACTIONS(4798), - }, - [3079] = { - [sym__concat] = ACTIONS(4859), - [sym_variable_name] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_PIPE_AMP] = ACTIONS(4859), - [anon_sym_AMP_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4859), - [sym__special_characters] = ACTIONS(5848), - [anon_sym_DQUOTE] = ACTIONS(4859), - [anon_sym_DOLLAR] = ACTIONS(5848), - [sym_raw_string] = ACTIONS(4859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4859), - [anon_sym_LT_LPAREN] = ACTIONS(4859), - [anon_sym_GT_LPAREN] = ACTIONS(4859), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5848), - [sym_word] = ACTIONS(4861), - }, - [3080] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7246), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [3081] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7248), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(7254), [sym_comment] = ACTIONS(56), }, [3082] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7250), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(7254), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [3083] = { - [anon_sym_RBRACE] = ACTIONS(7250), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(7256), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, [3084] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3588), - [anon_sym_RBRACE] = ACTIONS(7252), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(7256), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [3085] = { - [sym__concat] = ACTIONS(4871), - [sym_variable_name] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5858), - [anon_sym_PIPE_AMP] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5858), - [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5858), - [sym_raw_string] = ACTIONS(4871), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [anon_sym_LT_LPAREN] = ACTIONS(4871), - [anon_sym_GT_LPAREN] = ACTIONS(4871), + [sym__concat] = ACTIONS(4802), + [sym_variable_name] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(5860), + [anon_sym_PIPE_AMP] = ACTIONS(4802), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [sym__special_characters] = ACTIONS(5860), + [anon_sym_DQUOTE] = ACTIONS(4802), + [anon_sym_DOLLAR] = ACTIONS(5860), + [sym_raw_string] = ACTIONS(4802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), + [anon_sym_BQUOTE] = ACTIONS(4802), + [anon_sym_LT_LPAREN] = ACTIONS(4802), + [anon_sym_GT_LPAREN] = ACTIONS(4802), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5858), - [sym_word] = ACTIONS(4873), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5860), + [sym_word] = ACTIONS(4804), }, [3086] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3590), - [anon_sym_RBRACE] = ACTIONS(7254), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3087] = { - [sym__concat] = ACTIONS(4877), - [sym_variable_name] = ACTIONS(4877), + [sym__concat] = ACTIONS(4808), + [sym_variable_name] = ACTIONS(4808), [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_PIPE_AMP] = ACTIONS(4877), - [anon_sym_AMP_AMP] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4877), + [anon_sym_PIPE_AMP] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4877), + [anon_sym_DQUOTE] = ACTIONS(4808), [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(4877), - [anon_sym_LT_LPAREN] = ACTIONS(4877), - [anon_sym_GT_LPAREN] = ACTIONS(4877), + [sym_raw_string] = ACTIONS(4808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), + [anon_sym_BQUOTE] = ACTIONS(4808), + [anon_sym_LT_LPAREN] = ACTIONS(4808), + [anon_sym_GT_LPAREN] = ACTIONS(4808), [sym_comment] = ACTIONS(56), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5862), - [sym_word] = ACTIONS(4879), + [sym_word] = ACTIONS(4810), }, - [3088] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3592), - [anon_sym_RBRACE] = ACTIONS(7256), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3089] = { - [sym__concat] = ACTIONS(4883), - [sym_variable_name] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5866), - [anon_sym_PIPE_AMP] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5866), - [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5866), - [sym_raw_string] = ACTIONS(4883), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [anon_sym_LT_LPAREN] = ACTIONS(4883), - [anon_sym_GT_LPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5866), - [sym_word] = ACTIONS(4885), - }, - [3090] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7258), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3091] = { - [sym__concat] = ACTIONS(4889), - [sym_variable_name] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5870), - [anon_sym_PIPE_AMP] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5870), - [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5870), - [sym_raw_string] = ACTIONS(4889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), - [anon_sym_BQUOTE] = ACTIONS(4889), - [anon_sym_LT_LPAREN] = ACTIONS(4889), - [anon_sym_GT_LPAREN] = ACTIONS(4889), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5870), - [sym_word] = ACTIONS(4891), - }, - [3092] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7260), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3093] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_PIPE_AMP] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym__special_characters] = ACTIONS(5844), - [anon_sym_DQUOTE] = ACTIONS(4790), - [anon_sym_DOLLAR] = ACTIONS(5844), - [sym_raw_string] = ACTIONS(4790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4790), - [anon_sym_LT_LPAREN] = ACTIONS(4790), - [anon_sym_GT_LPAREN] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5844), - [sym_word] = ACTIONS(4792), - }, - [3094] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(5846), - [anon_sym_PIPE_AMP] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4796), - [anon_sym_PIPE_PIPE] = ACTIONS(4796), - [sym__special_characters] = ACTIONS(5846), - [anon_sym_DQUOTE] = ACTIONS(4796), - [anon_sym_DOLLAR] = ACTIONS(5846), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), - [anon_sym_BQUOTE] = ACTIONS(4796), - [anon_sym_LT_LPAREN] = ACTIONS(4796), - [anon_sym_GT_LPAREN] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5846), - [sym_word] = ACTIONS(4798), - }, - [3095] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_PIPE_AMP] = ACTIONS(4859), - [anon_sym_AMP_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4859), - [sym__special_characters] = ACTIONS(5848), - [anon_sym_DQUOTE] = ACTIONS(4859), - [anon_sym_DOLLAR] = ACTIONS(5848), - [sym_raw_string] = ACTIONS(4859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4859), - [anon_sym_LT_LPAREN] = ACTIONS(4859), - [anon_sym_GT_LPAREN] = ACTIONS(4859), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5848), - [sym_word] = ACTIONS(4861), - }, - [3096] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7262), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3097] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7264), - [sym_comment] = ACTIONS(56), - }, - [3098] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7266), - [sym_comment] = ACTIONS(56), - }, - [3099] = { - [anon_sym_RBRACE] = ACTIONS(7266), - [sym_comment] = ACTIONS(56), - }, - [3100] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3599), - [anon_sym_RBRACE] = ACTIONS(7268), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3101] = { + [3087] = { [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5858), + [sym_variable_name] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5864), [anon_sym_PIPE_AMP] = ACTIONS(4871), [anon_sym_AMP_AMP] = ACTIONS(4871), [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5858), + [sym__special_characters] = ACTIONS(5864), [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_DOLLAR] = ACTIONS(5864), [sym_raw_string] = ACTIONS(4871), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), @@ -79558,95 +79277,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4871), [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5858), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5864), [sym_word] = ACTIONS(4873), }, - [3102] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3601), - [anon_sym_RBRACE] = ACTIONS(7270), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3088] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7258), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [3103] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_PIPE_AMP] = ACTIONS(4877), - [anon_sym_AMP_AMP] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4877), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(4877), - [anon_sym_LT_LPAREN] = ACTIONS(4877), - [anon_sym_GT_LPAREN] = ACTIONS(4877), + [3089] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7260), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5862), - [sym_word] = ACTIONS(4879), }, - [3104] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3603), - [anon_sym_RBRACE] = ACTIONS(7272), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3090] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7262), + [sym_comment] = ACTIONS(56), + }, + [3091] = { + [anon_sym_RBRACE] = ACTIONS(7262), + [sym_comment] = ACTIONS(56), + }, + [3092] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3593), + [anon_sym_RBRACE] = ACTIONS(7264), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [3105] = { + [3093] = { [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5866), + [sym_variable_name] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5874), [anon_sym_PIPE_AMP] = ACTIONS(4883), [anon_sym_AMP_AMP] = ACTIONS(4883), [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5866), + [sym__special_characters] = ACTIONS(5874), [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5866), + [anon_sym_DOLLAR] = ACTIONS(5874), [sym_raw_string] = ACTIONS(4883), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), @@ -79654,47 +79371,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4883), [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5866), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5874), [sym_word] = ACTIONS(4885), }, - [3106] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7274), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3094] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3595), + [anon_sym_RBRACE] = ACTIONS(7266), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [3107] = { + [3095] = { [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5870), + [sym_variable_name] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5878), [anon_sym_PIPE_AMP] = ACTIONS(4889), [anon_sym_AMP_AMP] = ACTIONS(4889), [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5870), + [sym__special_characters] = ACTIONS(5878), [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5870), + [anon_sym_DOLLAR] = ACTIONS(5878), [sym_raw_string] = ACTIONS(4889), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), @@ -79702,273 +79420,543 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4889), [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5870), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5878), [sym_word] = ACTIONS(4891), }, - [3108] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7276), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3096] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3597), + [anon_sym_RBRACE] = ACTIONS(7268), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), + }, + [3097] = { + [sym__concat] = ACTIONS(4895), + [sym_variable_name] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(5882), + [anon_sym_PIPE_AMP] = ACTIONS(4895), + [anon_sym_AMP_AMP] = ACTIONS(4895), + [anon_sym_PIPE_PIPE] = ACTIONS(4895), + [sym__special_characters] = ACTIONS(5882), + [anon_sym_DQUOTE] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(5882), + [sym_raw_string] = ACTIONS(4895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(4895), + [anon_sym_LT_LPAREN] = ACTIONS(4895), + [anon_sym_GT_LPAREN] = ACTIONS(4895), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5882), + [sym_word] = ACTIONS(4897), + }, + [3098] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7270), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3099] = { + [sym__concat] = ACTIONS(4901), + [sym_variable_name] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(5886), + [anon_sym_PIPE_AMP] = ACTIONS(4901), + [anon_sym_AMP_AMP] = ACTIONS(4901), + [anon_sym_PIPE_PIPE] = ACTIONS(4901), + [sym__special_characters] = ACTIONS(5886), + [anon_sym_DQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(5886), + [sym_raw_string] = ACTIONS(4901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4901), + [anon_sym_LT_LPAREN] = ACTIONS(4901), + [anon_sym_GT_LPAREN] = ACTIONS(4901), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5886), + [sym_word] = ACTIONS(4903), + }, + [3100] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7272), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3101] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(5860), + [anon_sym_PIPE_AMP] = ACTIONS(4802), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [sym__special_characters] = ACTIONS(5860), + [anon_sym_DQUOTE] = ACTIONS(4802), + [anon_sym_DOLLAR] = ACTIONS(5860), + [sym_raw_string] = ACTIONS(4802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), + [anon_sym_BQUOTE] = ACTIONS(4802), + [anon_sym_LT_LPAREN] = ACTIONS(4802), + [anon_sym_GT_LPAREN] = ACTIONS(4802), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5860), + [sym_word] = ACTIONS(4804), + }, + [3102] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_PIPE_AMP] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4808), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), + [anon_sym_BQUOTE] = ACTIONS(4808), + [anon_sym_LT_LPAREN] = ACTIONS(4808), + [anon_sym_GT_LPAREN] = ACTIONS(4808), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5862), + [sym_word] = ACTIONS(4810), + }, + [3103] = { + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5864), + [anon_sym_PIPE_AMP] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(5864), + [anon_sym_DQUOTE] = ACTIONS(4871), + [anon_sym_DOLLAR] = ACTIONS(5864), + [sym_raw_string] = ACTIONS(4871), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [anon_sym_LT_LPAREN] = ACTIONS(4871), + [anon_sym_GT_LPAREN] = ACTIONS(4871), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5864), + [sym_word] = ACTIONS(4873), + }, + [3104] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7274), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3105] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7276), + [sym_comment] = ACTIONS(56), + }, + [3106] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7278), + [sym_comment] = ACTIONS(56), + }, + [3107] = { + [anon_sym_RBRACE] = ACTIONS(7278), + [sym_comment] = ACTIONS(56), + }, + [3108] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3604), + [anon_sym_RBRACE] = ACTIONS(7280), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3109] = { - [sym_file_descriptor] = ACTIONS(6025), - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6916), - [anon_sym_PIPE_AMP] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [anon_sym_EQ_TILDE] = ACTIONS(6916), - [anon_sym_EQ_EQ] = ACTIONS(6916), - [anon_sym_LT] = ACTIONS(6916), - [anon_sym_GT] = ACTIONS(6916), - [anon_sym_GT_GT] = ACTIONS(6025), - [anon_sym_AMP_GT] = ACTIONS(6916), - [anon_sym_AMP_GT_GT] = ACTIONS(6025), - [anon_sym_LT_AMP] = ACTIONS(6025), - [anon_sym_GT_AMP] = ACTIONS(6025), - [anon_sym_LT_LT] = ACTIONS(6916), - [anon_sym_LT_LT_DASH] = ACTIONS(6025), - [anon_sym_LT_LT_LT] = ACTIONS(6025), - [sym__special_characters] = ACTIONS(6916), - [anon_sym_DQUOTE] = ACTIONS(6025), - [anon_sym_DOLLAR] = ACTIONS(6916), - [sym_raw_string] = ACTIONS(6025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), - [anon_sym_BQUOTE] = ACTIONS(6025), - [anon_sym_LT_LPAREN] = ACTIONS(6025), - [anon_sym_GT_LPAREN] = ACTIONS(6025), + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5874), + [anon_sym_PIPE_AMP] = ACTIONS(4883), + [anon_sym_AMP_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4883), + [sym__special_characters] = ACTIONS(5874), + [anon_sym_DQUOTE] = ACTIONS(4883), + [anon_sym_DOLLAR] = ACTIONS(5874), + [sym_raw_string] = ACTIONS(4883), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [anon_sym_LT_LPAREN] = ACTIONS(4883), + [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6027), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5874), + [sym_word] = ACTIONS(4885), }, [3110] = { - [sym_file_descriptor] = ACTIONS(6029), - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6918), - [anon_sym_PIPE_AMP] = ACTIONS(6029), - [anon_sym_AMP_AMP] = ACTIONS(6029), - [anon_sym_PIPE_PIPE] = ACTIONS(6029), - [anon_sym_EQ_TILDE] = ACTIONS(6918), - [anon_sym_EQ_EQ] = ACTIONS(6918), - [anon_sym_LT] = ACTIONS(6918), - [anon_sym_GT] = ACTIONS(6918), - [anon_sym_GT_GT] = ACTIONS(6029), - [anon_sym_AMP_GT] = ACTIONS(6918), - [anon_sym_AMP_GT_GT] = ACTIONS(6029), - [anon_sym_LT_AMP] = ACTIONS(6029), - [anon_sym_GT_AMP] = ACTIONS(6029), - [anon_sym_LT_LT] = ACTIONS(6918), - [anon_sym_LT_LT_DASH] = ACTIONS(6029), - [anon_sym_LT_LT_LT] = ACTIONS(6029), - [sym__special_characters] = ACTIONS(6918), - [anon_sym_DQUOTE] = ACTIONS(6029), - [anon_sym_DOLLAR] = ACTIONS(6918), - [sym_raw_string] = ACTIONS(6029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), - [anon_sym_BQUOTE] = ACTIONS(6029), - [anon_sym_LT_LPAREN] = ACTIONS(6029), - [anon_sym_GT_LPAREN] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6031), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3606), + [anon_sym_RBRACE] = ACTIONS(7282), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3111] = { - [sym_file_descriptor] = ACTIONS(6033), - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6920), - [anon_sym_PIPE_AMP] = ACTIONS(6033), - [anon_sym_AMP_AMP] = ACTIONS(6033), - [anon_sym_PIPE_PIPE] = ACTIONS(6033), - [anon_sym_EQ_TILDE] = ACTIONS(6920), - [anon_sym_EQ_EQ] = ACTIONS(6920), - [anon_sym_LT] = ACTIONS(6920), - [anon_sym_GT] = ACTIONS(6920), - [anon_sym_GT_GT] = ACTIONS(6033), - [anon_sym_AMP_GT] = ACTIONS(6920), - [anon_sym_AMP_GT_GT] = ACTIONS(6033), - [anon_sym_LT_AMP] = ACTIONS(6033), - [anon_sym_GT_AMP] = ACTIONS(6033), - [anon_sym_LT_LT] = ACTIONS(6920), - [anon_sym_LT_LT_DASH] = ACTIONS(6033), - [anon_sym_LT_LT_LT] = ACTIONS(6033), - [sym__special_characters] = ACTIONS(6920), - [anon_sym_DQUOTE] = ACTIONS(6033), - [anon_sym_DOLLAR] = ACTIONS(6920), - [sym_raw_string] = ACTIONS(6033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), - [anon_sym_BQUOTE] = ACTIONS(6033), - [anon_sym_LT_LPAREN] = ACTIONS(6033), - [anon_sym_GT_LPAREN] = ACTIONS(6033), + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5878), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [sym__special_characters] = ACTIONS(5878), + [anon_sym_DQUOTE] = ACTIONS(4889), + [anon_sym_DOLLAR] = ACTIONS(5878), + [sym_raw_string] = ACTIONS(4889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [anon_sym_LT_LPAREN] = ACTIONS(4889), + [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6035), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5878), + [sym_word] = ACTIONS(4891), }, [3112] = { - [sym_file_descriptor] = ACTIONS(6037), - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6922), - [anon_sym_PIPE_AMP] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(6037), - [anon_sym_PIPE_PIPE] = ACTIONS(6037), - [anon_sym_EQ_TILDE] = ACTIONS(6922), - [anon_sym_EQ_EQ] = ACTIONS(6922), - [anon_sym_LT] = ACTIONS(6922), - [anon_sym_GT] = ACTIONS(6922), - [anon_sym_GT_GT] = ACTIONS(6037), - [anon_sym_AMP_GT] = ACTIONS(6922), - [anon_sym_AMP_GT_GT] = ACTIONS(6037), - [anon_sym_LT_AMP] = ACTIONS(6037), - [anon_sym_GT_AMP] = ACTIONS(6037), - [anon_sym_LT_LT] = ACTIONS(6922), - [anon_sym_LT_LT_DASH] = ACTIONS(6037), - [anon_sym_LT_LT_LT] = ACTIONS(6037), - [sym__special_characters] = ACTIONS(6922), - [anon_sym_DQUOTE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(6922), - [sym_raw_string] = ACTIONS(6037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), - [anon_sym_BQUOTE] = ACTIONS(6037), - [anon_sym_LT_LPAREN] = ACTIONS(6037), - [anon_sym_GT_LPAREN] = ACTIONS(6037), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6039), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3608), + [anon_sym_RBRACE] = ACTIONS(7284), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3113] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7278), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(5882), + [anon_sym_PIPE_AMP] = ACTIONS(4895), + [anon_sym_AMP_AMP] = ACTIONS(4895), + [anon_sym_PIPE_PIPE] = ACTIONS(4895), + [sym__special_characters] = ACTIONS(5882), + [anon_sym_DQUOTE] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(5882), + [sym_raw_string] = ACTIONS(4895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(4895), + [anon_sym_LT_LPAREN] = ACTIONS(4895), + [anon_sym_GT_LPAREN] = ACTIONS(4895), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5882), + [sym_word] = ACTIONS(4897), }, [3114] = { - [sym_file_descriptor] = ACTIONS(6043), - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6926), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [anon_sym_EQ_TILDE] = ACTIONS(6926), - [anon_sym_EQ_EQ] = ACTIONS(6926), - [anon_sym_LT] = ACTIONS(6926), - [anon_sym_GT] = ACTIONS(6926), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_AMP_GT] = ACTIONS(6926), - [anon_sym_AMP_GT_GT] = ACTIONS(6043), - [anon_sym_LT_AMP] = ACTIONS(6043), - [anon_sym_GT_AMP] = ACTIONS(6043), - [anon_sym_LT_LT] = ACTIONS(6926), - [anon_sym_LT_LT_DASH] = ACTIONS(6043), - [anon_sym_LT_LT_LT] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6926), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6926), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6045), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7286), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3115] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7280), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(5886), + [anon_sym_PIPE_AMP] = ACTIONS(4901), + [anon_sym_AMP_AMP] = ACTIONS(4901), + [anon_sym_PIPE_PIPE] = ACTIONS(4901), + [sym__special_characters] = ACTIONS(5886), + [anon_sym_DQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(5886), + [sym_raw_string] = ACTIONS(4901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4901), + [anon_sym_LT_LPAREN] = ACTIONS(4901), + [anon_sym_GT_LPAREN] = ACTIONS(4901), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5886), + [sym_word] = ACTIONS(4903), }, [3116] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7288), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3117] = { + [sym_file_descriptor] = ACTIONS(6041), + [sym__concat] = ACTIONS(6041), [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [anon_sym_PIPE_AMP] = ACTIONS(6041), + [anon_sym_AMP_AMP] = ACTIONS(6041), + [anon_sym_PIPE_PIPE] = ACTIONS(6041), [anon_sym_EQ_TILDE] = ACTIONS(6930), [anon_sym_EQ_EQ] = ACTIONS(6930), [anon_sym_LT] = ACTIONS(6930), [anon_sym_GT] = ACTIONS(6930), - [anon_sym_GT_GT] = ACTIONS(6049), + [anon_sym_GT_GT] = ACTIONS(6041), [anon_sym_AMP_GT] = ACTIONS(6930), + [anon_sym_AMP_GT_GT] = ACTIONS(6041), + [anon_sym_LT_AMP] = ACTIONS(6041), + [anon_sym_GT_AMP] = ACTIONS(6041), + [anon_sym_LT_LT] = ACTIONS(6930), + [anon_sym_LT_LT_DASH] = ACTIONS(6041), + [anon_sym_LT_LT_LT] = ACTIONS(6041), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), + [anon_sym_BQUOTE] = ACTIONS(6041), + [anon_sym_LT_LPAREN] = ACTIONS(6041), + [anon_sym_GT_LPAREN] = ACTIONS(6041), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6043), + }, + [3118] = { + [sym_file_descriptor] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6932), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [anon_sym_EQ_TILDE] = ACTIONS(6932), + [anon_sym_EQ_EQ] = ACTIONS(6932), + [anon_sym_LT] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6932), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_AMP_GT] = ACTIONS(6932), + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_AMP] = ACTIONS(6045), + [anon_sym_LT_LT] = ACTIONS(6932), + [anon_sym_LT_LT_DASH] = ACTIONS(6045), + [anon_sym_LT_LT_LT] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6932), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6932), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6047), + }, + [3119] = { + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [anon_sym_EQ_TILDE] = ACTIONS(6934), + [anon_sym_EQ_EQ] = ACTIONS(6934), + [anon_sym_LT] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6049), + [anon_sym_AMP_GT] = ACTIONS(6934), [anon_sym_AMP_GT_GT] = ACTIONS(6049), [anon_sym_LT_AMP] = ACTIONS(6049), [anon_sym_GT_AMP] = ACTIONS(6049), - [anon_sym_LT_LT] = ACTIONS(6930), + [anon_sym_LT_LT] = ACTIONS(6934), [anon_sym_LT_LT_DASH] = ACTIONS(6049), [anon_sym_LT_LT_LT] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6930), + [sym__special_characters] = ACTIONS(6934), [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6930), + [anon_sym_DOLLAR] = ACTIONS(6934), [sym_raw_string] = ACTIONS(6049), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), @@ -79978,88 +79966,88 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(6051), }, - [3117] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7282), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3118] = { - [sym_file_descriptor] = ACTIONS(6055), - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [anon_sym_EQ_TILDE] = ACTIONS(6934), - [anon_sym_EQ_EQ] = ACTIONS(6934), - [anon_sym_LT] = ACTIONS(6934), - [anon_sym_GT] = ACTIONS(6934), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_AMP_GT] = ACTIONS(6934), - [anon_sym_AMP_GT_GT] = ACTIONS(6055), - [anon_sym_LT_AMP] = ACTIONS(6055), - [anon_sym_GT_AMP] = ACTIONS(6055), - [anon_sym_LT_LT] = ACTIONS(6934), - [anon_sym_LT_LT_DASH] = ACTIONS(6055), - [anon_sym_LT_LT_LT] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6057), - }, - [3119] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), + [3120] = { + [sym_file_descriptor] = ACTIONS(6053), + [sym__concat] = ACTIONS(6053), [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [anon_sym_PIPE_AMP] = ACTIONS(6053), + [anon_sym_AMP_AMP] = ACTIONS(6053), + [anon_sym_PIPE_PIPE] = ACTIONS(6053), [anon_sym_EQ_TILDE] = ACTIONS(6936), [anon_sym_EQ_EQ] = ACTIONS(6936), [anon_sym_LT] = ACTIONS(6936), [anon_sym_GT] = ACTIONS(6936), - [anon_sym_GT_GT] = ACTIONS(6059), + [anon_sym_GT_GT] = ACTIONS(6053), [anon_sym_AMP_GT] = ACTIONS(6936), + [anon_sym_AMP_GT_GT] = ACTIONS(6053), + [anon_sym_LT_AMP] = ACTIONS(6053), + [anon_sym_GT_AMP] = ACTIONS(6053), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_LT_LT_DASH] = ACTIONS(6053), + [anon_sym_LT_LT_LT] = ACTIONS(6053), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), + [anon_sym_BQUOTE] = ACTIONS(6053), + [anon_sym_LT_LPAREN] = ACTIONS(6053), + [anon_sym_GT_LPAREN] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6055), + }, + [3121] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7290), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3122] = { + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6940), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [anon_sym_EQ_TILDE] = ACTIONS(6940), + [anon_sym_EQ_EQ] = ACTIONS(6940), + [anon_sym_LT] = ACTIONS(6940), + [anon_sym_GT] = ACTIONS(6940), + [anon_sym_GT_GT] = ACTIONS(6059), + [anon_sym_AMP_GT] = ACTIONS(6940), [anon_sym_AMP_GT_GT] = ACTIONS(6059), [anon_sym_LT_AMP] = ACTIONS(6059), [anon_sym_GT_AMP] = ACTIONS(6059), - [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_LT_LT] = ACTIONS(6940), [anon_sym_LT_LT_DASH] = ACTIONS(6059), [anon_sym_LT_LT_LT] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6936), + [sym__special_characters] = ACTIONS(6940), [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6936), + [anon_sym_DOLLAR] = ACTIONS(6940), [sym_raw_string] = ACTIONS(6059), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), @@ -80069,473 +80057,527 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(6061), }, - [3120] = { - [sym_file_descriptor] = ACTIONS(3283), - [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(4602), - [anon_sym_PIPE_AMP] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(4602), - [anon_sym_GT] = ACTIONS(4602), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_AMP_GT] = ACTIONS(4602), - [anon_sym_AMP_GT_GT] = ACTIONS(3283), - [anon_sym_LT_AMP] = ACTIONS(3283), - [anon_sym_GT_AMP] = ACTIONS(3283), - [anon_sym_LT_LT] = ACTIONS(4602), - [anon_sym_LT_LT_DASH] = ACTIONS(3283), - [anon_sym_LT_LT_LT] = ACTIONS(3283), - [anon_sym_BQUOTE] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - }, - [3121] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7284), - [sym_comment] = ACTIONS(56), - }, - [3122] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7286), - [sym_comment] = ACTIONS(56), - }, [3123] = { - [anon_sym_RBRACE] = ACTIONS(7286), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7292), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3124] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3612), - [anon_sym_RBRACE] = ACTIONS(7288), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(6065), + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6944), + [anon_sym_PIPE_AMP] = ACTIONS(6065), + [anon_sym_AMP_AMP] = ACTIONS(6065), + [anon_sym_PIPE_PIPE] = ACTIONS(6065), + [anon_sym_EQ_TILDE] = ACTIONS(6944), + [anon_sym_EQ_EQ] = ACTIONS(6944), + [anon_sym_LT] = ACTIONS(6944), + [anon_sym_GT] = ACTIONS(6944), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_AMP_GT] = ACTIONS(6944), + [anon_sym_AMP_GT_GT] = ACTIONS(6065), + [anon_sym_LT_AMP] = ACTIONS(6065), + [anon_sym_GT_AMP] = ACTIONS(6065), + [anon_sym_LT_LT] = ACTIONS(6944), + [anon_sym_LT_LT_DASH] = ACTIONS(6065), + [anon_sym_LT_LT_LT] = ACTIONS(6065), + [sym__special_characters] = ACTIONS(6944), + [anon_sym_DQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR] = ACTIONS(6944), + [sym_raw_string] = ACTIONS(6065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), + [anon_sym_BQUOTE] = ACTIONS(6065), + [anon_sym_LT_LPAREN] = ACTIONS(6065), + [anon_sym_GT_LPAREN] = ACTIONS(6065), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6067), }, [3125] = { - [sym_file_descriptor] = ACTIONS(3347), - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_PIPE_AMP] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(4610), - [anon_sym_GT] = ACTIONS(4610), - [anon_sym_GT_GT] = ACTIONS(3347), - [anon_sym_AMP_GT] = ACTIONS(4610), - [anon_sym_AMP_GT_GT] = ACTIONS(3347), - [anon_sym_LT_AMP] = ACTIONS(3347), - [anon_sym_GT_AMP] = ACTIONS(3347), - [anon_sym_LT_LT] = ACTIONS(4610), - [anon_sym_LT_LT_DASH] = ACTIONS(3347), - [anon_sym_LT_LT_LT] = ACTIONS(3347), - [anon_sym_BQUOTE] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7294), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3126] = { - [sym_concatenation] = STATE(3615), - [sym_string] = STATE(3614), - [sym_simple_expansion] = STATE(3614), - [sym_string_expansion] = STATE(3614), - [sym_expansion] = STATE(3614), - [sym_command_substitution] = STATE(3614), - [sym_process_substitution] = STATE(3614), - [anon_sym_RBRACE] = ACTIONS(7286), - [sym__special_characters] = ACTIONS(7290), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(7292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [sym_file_descriptor] = ACTIONS(6071), + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6948), + [anon_sym_PIPE_AMP] = ACTIONS(6071), + [anon_sym_AMP_AMP] = ACTIONS(6071), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [anon_sym_EQ_TILDE] = ACTIONS(6948), + [anon_sym_EQ_EQ] = ACTIONS(6948), + [anon_sym_LT] = ACTIONS(6948), + [anon_sym_GT] = ACTIONS(6948), + [anon_sym_GT_GT] = ACTIONS(6071), + [anon_sym_AMP_GT] = ACTIONS(6948), + [anon_sym_AMP_GT_GT] = ACTIONS(6071), + [anon_sym_LT_AMP] = ACTIONS(6071), + [anon_sym_GT_AMP] = ACTIONS(6071), + [anon_sym_LT_LT] = ACTIONS(6948), + [anon_sym_LT_LT_DASH] = ACTIONS(6071), + [anon_sym_LT_LT_LT] = ACTIONS(6071), + [sym__special_characters] = ACTIONS(6948), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6948), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7294), + [sym_word] = ACTIONS(6073), }, [3127] = { - [sym_file_descriptor] = ACTIONS(3392), - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(4618), - [anon_sym_PIPE_AMP] = ACTIONS(3392), - [anon_sym_AMP_AMP] = ACTIONS(3392), - [anon_sym_PIPE_PIPE] = ACTIONS(3392), - [anon_sym_LT] = ACTIONS(4618), - [anon_sym_GT] = ACTIONS(4618), - [anon_sym_GT_GT] = ACTIONS(3392), - [anon_sym_AMP_GT] = ACTIONS(4618), - [anon_sym_AMP_GT_GT] = ACTIONS(3392), - [anon_sym_LT_AMP] = ACTIONS(3392), - [anon_sym_GT_AMP] = ACTIONS(3392), - [anon_sym_LT_LT] = ACTIONS(4618), - [anon_sym_LT_LT_DASH] = ACTIONS(3392), - [anon_sym_LT_LT_LT] = ACTIONS(3392), - [anon_sym_BQUOTE] = ACTIONS(3392), + [sym_file_descriptor] = ACTIONS(6075), + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_PIPE_AMP] = ACTIONS(6075), + [anon_sym_AMP_AMP] = ACTIONS(6075), + [anon_sym_PIPE_PIPE] = ACTIONS(6075), + [anon_sym_EQ_TILDE] = ACTIONS(6950), + [anon_sym_EQ_EQ] = ACTIONS(6950), + [anon_sym_LT] = ACTIONS(6950), + [anon_sym_GT] = ACTIONS(6950), + [anon_sym_GT_GT] = ACTIONS(6075), + [anon_sym_AMP_GT] = ACTIONS(6950), + [anon_sym_AMP_GT_GT] = ACTIONS(6075), + [anon_sym_LT_AMP] = ACTIONS(6075), + [anon_sym_GT_AMP] = ACTIONS(6075), + [anon_sym_LT_LT] = ACTIONS(6950), + [anon_sym_LT_LT_DASH] = ACTIONS(6075), + [anon_sym_LT_LT_LT] = ACTIONS(6075), + [sym__special_characters] = ACTIONS(6950), + [anon_sym_DQUOTE] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6950), + [sym_raw_string] = ACTIONS(6075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), + [anon_sym_BQUOTE] = ACTIONS(6075), + [anon_sym_LT_LPAREN] = ACTIONS(6075), + [anon_sym_GT_LPAREN] = ACTIONS(6075), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6077), }, [3128] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7296), + [sym_file_descriptor] = ACTIONS(3293), + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_PIPE_AMP] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(4614), + [anon_sym_GT] = ACTIONS(4614), + [anon_sym_GT_GT] = ACTIONS(3293), + [anon_sym_AMP_GT] = ACTIONS(4614), + [anon_sym_AMP_GT_GT] = ACTIONS(3293), + [anon_sym_LT_AMP] = ACTIONS(3293), + [anon_sym_GT_AMP] = ACTIONS(3293), + [anon_sym_LT_LT] = ACTIONS(4614), + [anon_sym_LT_LT_DASH] = ACTIONS(3293), + [anon_sym_LT_LT_LT] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3293), + [sym_comment] = ACTIONS(56), }, [3129] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7298), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7296), + [sym_comment] = ACTIONS(56), }, [3130] = { - [sym_file_descriptor] = ACTIONS(3400), - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(4624), - [anon_sym_PIPE_AMP] = ACTIONS(3400), - [anon_sym_AMP_AMP] = ACTIONS(3400), - [anon_sym_PIPE_PIPE] = ACTIONS(3400), - [anon_sym_LT] = ACTIONS(4624), - [anon_sym_GT] = ACTIONS(4624), - [anon_sym_GT_GT] = ACTIONS(3400), - [anon_sym_AMP_GT] = ACTIONS(4624), - [anon_sym_AMP_GT_GT] = ACTIONS(3400), - [anon_sym_LT_AMP] = ACTIONS(3400), - [anon_sym_GT_AMP] = ACTIONS(3400), - [anon_sym_LT_LT] = ACTIONS(4624), - [anon_sym_LT_LT_DASH] = ACTIONS(3400), - [anon_sym_LT_LT_LT] = ACTIONS(3400), - [anon_sym_BQUOTE] = ACTIONS(3400), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7298), [sym_comment] = ACTIONS(56), }, [3131] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7300), + [anon_sym_RBRACE] = ACTIONS(7298), + [sym_comment] = ACTIONS(56), }, [3132] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7302), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3617), + [anon_sym_RBRACE] = ACTIONS(7300), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3133] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7304), + [sym_file_descriptor] = ACTIONS(3357), + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(4622), + [anon_sym_PIPE_AMP] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(4622), + [anon_sym_GT] = ACTIONS(4622), + [anon_sym_GT_GT] = ACTIONS(3357), + [anon_sym_AMP_GT] = ACTIONS(4622), + [anon_sym_AMP_GT_GT] = ACTIONS(3357), + [anon_sym_LT_AMP] = ACTIONS(3357), + [anon_sym_GT_AMP] = ACTIONS(3357), + [anon_sym_LT_LT] = ACTIONS(4622), + [anon_sym_LT_LT_DASH] = ACTIONS(3357), + [anon_sym_LT_LT_LT] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), }, [3134] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7286), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(3620), + [sym_string] = STATE(3619), + [sym_simple_expansion] = STATE(3619), + [sym_string_expansion] = STATE(3619), + [sym_expansion] = STATE(3619), + [sym_command_substitution] = STATE(3619), + [sym_process_substitution] = STATE(3619), + [anon_sym_RBRACE] = ACTIONS(7298), + [sym__special_characters] = ACTIONS(7302), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(7304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7306), }, [3135] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3622), - [anon_sym_RBRACE] = ACTIONS(7306), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(3402), + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(4630), + [anon_sym_GT] = ACTIONS(4630), + [anon_sym_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_GT] = ACTIONS(4630), + [anon_sym_AMP_GT_GT] = ACTIONS(3402), + [anon_sym_LT_AMP] = ACTIONS(3402), + [anon_sym_GT_AMP] = ACTIONS(3402), + [anon_sym_LT_LT] = ACTIONS(4630), + [anon_sym_LT_LT_DASH] = ACTIONS(3402), + [anon_sym_LT_LT_LT] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), }, [3136] = { - [sym_file_descriptor] = ACTIONS(3412), - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(4634), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [anon_sym_LT] = ACTIONS(4634), - [anon_sym_GT] = ACTIONS(4634), - [anon_sym_GT_GT] = ACTIONS(3412), - [anon_sym_AMP_GT] = ACTIONS(4634), - [anon_sym_AMP_GT_GT] = ACTIONS(3412), - [anon_sym_LT_AMP] = ACTIONS(3412), - [anon_sym_GT_AMP] = ACTIONS(3412), - [anon_sym_LT_LT] = ACTIONS(4634), - [anon_sym_LT_LT_DASH] = ACTIONS(3412), - [anon_sym_LT_LT_LT] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7308), }, [3137] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3624), - [anon_sym_RBRACE] = ACTIONS(7308), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7310), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3138] = { - [sym_file_descriptor] = ACTIONS(4790), - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_AMP_GT] = ACTIONS(4792), - [anon_sym_AMP_GT_GT] = ACTIONS(4792), - [anon_sym_LT_AMP] = ACTIONS(4792), - [anon_sym_GT_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4792), - [anon_sym_LT_LT_DASH] = ACTIONS(4792), - [anon_sym_LT_LT_LT] = ACTIONS(4792), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), + [sym_file_descriptor] = ACTIONS(3410), + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(4636), + [anon_sym_PIPE_AMP] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [anon_sym_LT] = ACTIONS(4636), + [anon_sym_GT] = ACTIONS(4636), + [anon_sym_GT_GT] = ACTIONS(3410), + [anon_sym_AMP_GT] = ACTIONS(4636), + [anon_sym_AMP_GT_GT] = ACTIONS(3410), + [anon_sym_LT_AMP] = ACTIONS(3410), + [anon_sym_GT_AMP] = ACTIONS(3410), + [anon_sym_LT_LT] = ACTIONS(4636), + [anon_sym_LT_LT_DASH] = ACTIONS(3410), + [anon_sym_LT_LT_LT] = ACTIONS(3410), + [anon_sym_BQUOTE] = ACTIONS(3410), + [sym_comment] = ACTIONS(56), }, [3139] = { - [sym_file_descriptor] = ACTIONS(4796), - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4798), - [anon_sym_GT] = ACTIONS(4798), - [anon_sym_GT_GT] = ACTIONS(4798), - [anon_sym_AMP_GT] = ACTIONS(4798), - [anon_sym_AMP_GT_GT] = ACTIONS(4798), - [anon_sym_LT_AMP] = ACTIONS(4798), - [anon_sym_GT_AMP] = ACTIONS(4798), - [anon_sym_LT_LT] = ACTIONS(4798), - [anon_sym_LT_LT_DASH] = ACTIONS(4798), - [anon_sym_LT_LT_LT] = ACTIONS(4798), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), + [sym_regex_without_right_brace] = ACTIONS(7312), }, [3140] = { - [sym_file_descriptor] = ACTIONS(4859), - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_LT] = ACTIONS(4861), - [anon_sym_GT] = ACTIONS(4861), - [anon_sym_GT_GT] = ACTIONS(4861), - [anon_sym_AMP_GT] = ACTIONS(4861), - [anon_sym_AMP_GT_GT] = ACTIONS(4861), - [anon_sym_LT_AMP] = ACTIONS(4861), - [anon_sym_GT_AMP] = ACTIONS(4861), - [anon_sym_LT_LT] = ACTIONS(4861), - [anon_sym_LT_LT_DASH] = ACTIONS(4861), - [anon_sym_LT_LT_LT] = ACTIONS(4861), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7314), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), + [sym_word] = ACTIONS(866), }, [3141] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7310), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(7316), }, [3142] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7312), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7298), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3143] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7314), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3627), + [anon_sym_RBRACE] = ACTIONS(7318), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3144] = { - [anon_sym_RBRACE] = ACTIONS(7314), + [sym_file_descriptor] = ACTIONS(3422), + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(4646), + [anon_sym_PIPE_AMP] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(4646), + [anon_sym_GT] = ACTIONS(4646), + [anon_sym_GT_GT] = ACTIONS(3422), + [anon_sym_AMP_GT] = ACTIONS(4646), + [anon_sym_AMP_GT_GT] = ACTIONS(3422), + [anon_sym_LT_AMP] = ACTIONS(3422), + [anon_sym_GT_AMP] = ACTIONS(3422), + [anon_sym_LT_LT] = ACTIONS(4646), + [anon_sym_LT_LT_DASH] = ACTIONS(3422), + [anon_sym_LT_LT_LT] = ACTIONS(3422), + [anon_sym_BQUOTE] = ACTIONS(3422), [sym_comment] = ACTIONS(56), }, [3145] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), [aux_sym_expansion_repeat1] = STATE(3629), - [anon_sym_RBRACE] = ACTIONS(7316), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(7320), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3146] = { + [sym_file_descriptor] = ACTIONS(4802), + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_GT_GT] = ACTIONS(4804), + [anon_sym_AMP_GT] = ACTIONS(4804), + [anon_sym_AMP_GT_GT] = ACTIONS(4804), + [anon_sym_LT_AMP] = ACTIONS(4804), + [anon_sym_GT_AMP] = ACTIONS(4804), + [anon_sym_LT_LT] = ACTIONS(4804), + [anon_sym_LT_LT_DASH] = ACTIONS(4804), + [anon_sym_LT_LT_LT] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), + }, + [3147] = { + [sym_file_descriptor] = ACTIONS(4808), + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_GT_GT] = ACTIONS(4810), + [anon_sym_AMP_GT] = ACTIONS(4810), + [anon_sym_AMP_GT_GT] = ACTIONS(4810), + [anon_sym_LT_AMP] = ACTIONS(4810), + [anon_sym_GT_AMP] = ACTIONS(4810), + [anon_sym_LT_LT] = ACTIONS(4810), + [anon_sym_LT_LT_DASH] = ACTIONS(4810), + [anon_sym_LT_LT_LT] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), + }, + [3148] = { [sym_file_descriptor] = ACTIONS(4871), [sym__concat] = ACTIONS(4871), [anon_sym_PIPE] = ACTIONS(4873), @@ -80558,88 +80600,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4873), [anon_sym_AMP] = ACTIONS(4873), }, - [3147] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3631), - [anon_sym_RBRACE] = ACTIONS(7318), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3148] = { - [sym_file_descriptor] = ACTIONS(4877), - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_GT_GT] = ACTIONS(4879), - [anon_sym_AMP_GT] = ACTIONS(4879), - [anon_sym_AMP_GT_GT] = ACTIONS(4879), - [anon_sym_LT_AMP] = ACTIONS(4879), - [anon_sym_GT_AMP] = ACTIONS(4879), - [anon_sym_LT_LT] = ACTIONS(4879), - [anon_sym_LT_LT_DASH] = ACTIONS(4879), - [anon_sym_LT_LT_LT] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), - }, [3149] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3633), - [anon_sym_RBRACE] = ACTIONS(7320), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7322), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3150] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7324), + [sym_comment] = ACTIONS(56), + }, + [3151] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7326), + [sym_comment] = ACTIONS(56), + }, + [3152] = { + [anon_sym_RBRACE] = ACTIONS(7326), + [sym_comment] = ACTIONS(56), + }, + [3153] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3634), + [anon_sym_RBRACE] = ACTIONS(7328), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3154] = { [sym_file_descriptor] = ACTIONS(4883), [sym__concat] = ACTIONS(4883), [anon_sym_PIPE] = ACTIONS(4885), @@ -80662,36 +80697,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4885), [anon_sym_AMP] = ACTIONS(4885), }, - [3151] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7322), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3155] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3636), + [anon_sym_RBRACE] = ACTIONS(7330), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [3152] = { + [3156] = { [sym_file_descriptor] = ACTIONS(4889), [sym__concat] = ACTIONS(4889), [anon_sym_PIPE] = ACTIONS(4891), @@ -80714,545 +80749,560 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4891), [anon_sym_AMP] = ACTIONS(4891), }, - [3153] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7324), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3154] = { - [sym__heredoc_middle] = ACTIONS(3283), - [sym__heredoc_end] = ACTIONS(3283), - [anon_sym_DOLLAR] = ACTIONS(4602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - }, - [3155] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7326), - [sym_comment] = ACTIONS(56), - }, - [3156] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7328), - [sym_comment] = ACTIONS(56), - }, [3157] = { - [anon_sym_RBRACE] = ACTIONS(7328), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3638), + [anon_sym_RBRACE] = ACTIONS(7332), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3158] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3639), - [anon_sym_RBRACE] = ACTIONS(7330), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(4895), + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_GT_GT] = ACTIONS(4897), + [anon_sym_AMP_GT] = ACTIONS(4897), + [anon_sym_AMP_GT_GT] = ACTIONS(4897), + [anon_sym_LT_AMP] = ACTIONS(4897), + [anon_sym_GT_AMP] = ACTIONS(4897), + [anon_sym_LT_LT] = ACTIONS(4897), + [anon_sym_LT_LT_DASH] = ACTIONS(4897), + [anon_sym_LT_LT_LT] = ACTIONS(4897), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), }, [3159] = { - [sym__heredoc_middle] = ACTIONS(3347), - [sym__heredoc_end] = ACTIONS(3347), - [anon_sym_DOLLAR] = ACTIONS(4610), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7334), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3160] = { - [sym_concatenation] = STATE(3642), - [sym_string] = STATE(3641), - [sym_simple_expansion] = STATE(3641), - [sym_string_expansion] = STATE(3641), - [sym_expansion] = STATE(3641), - [sym_command_substitution] = STATE(3641), - [sym_process_substitution] = STATE(3641), - [anon_sym_RBRACE] = ACTIONS(7328), - [sym__special_characters] = ACTIONS(7332), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(7334), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7336), + [sym_file_descriptor] = ACTIONS(4901), + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [anon_sym_LT] = ACTIONS(4903), + [anon_sym_GT] = ACTIONS(4903), + [anon_sym_GT_GT] = ACTIONS(4903), + [anon_sym_AMP_GT] = ACTIONS(4903), + [anon_sym_AMP_GT_GT] = ACTIONS(4903), + [anon_sym_LT_AMP] = ACTIONS(4903), + [anon_sym_GT_AMP] = ACTIONS(4903), + [anon_sym_LT_LT] = ACTIONS(4903), + [anon_sym_LT_LT_DASH] = ACTIONS(4903), + [anon_sym_LT_LT_LT] = ACTIONS(4903), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), }, [3161] = { - [sym__heredoc_middle] = ACTIONS(3392), - [sym__heredoc_end] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(4618), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7336), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3162] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7338), + [sym__heredoc_middle] = ACTIONS(3293), + [sym__heredoc_end] = ACTIONS(3293), + [anon_sym_DOLLAR] = ACTIONS(4614), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3293), + [sym_comment] = ACTIONS(56), }, [3163] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7340), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7338), + [sym_comment] = ACTIONS(56), }, [3164] = { - [sym__heredoc_middle] = ACTIONS(3400), - [sym__heredoc_end] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(4624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3400), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7340), [sym_comment] = ACTIONS(56), }, [3165] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7342), - }, - [3166] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7344), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3167] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7346), - }, - [3168] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7328), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3169] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3649), - [anon_sym_RBRACE] = ACTIONS(7348), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3170] = { - [sym__heredoc_middle] = ACTIONS(3412), - [sym__heredoc_end] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(4634), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(7340), [sym_comment] = ACTIONS(56), }, - [3171] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3651), - [anon_sym_RBRACE] = ACTIONS(7350), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3166] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3644), + [anon_sym_RBRACE] = ACTIONS(7342), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), + }, + [3167] = { + [sym__heredoc_middle] = ACTIONS(3357), + [sym__heredoc_end] = ACTIONS(3357), + [anon_sym_DOLLAR] = ACTIONS(4622), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), + }, + [3168] = { + [sym_concatenation] = STATE(3647), + [sym_string] = STATE(3646), + [sym_simple_expansion] = STATE(3646), + [sym_string_expansion] = STATE(3646), + [sym_expansion] = STATE(3646), + [sym_command_substitution] = STATE(3646), + [sym_process_substitution] = STATE(3646), + [anon_sym_RBRACE] = ACTIONS(7340), + [sym__special_characters] = ACTIONS(7344), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(7346), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7348), + }, + [3169] = { + [sym__heredoc_middle] = ACTIONS(3402), + [sym__heredoc_end] = ACTIONS(3402), + [anon_sym_DOLLAR] = ACTIONS(4630), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), + }, + [3170] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7350), + }, + [3171] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7352), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3172] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_RBRACK] = ACTIONS(6025), + [sym__heredoc_middle] = ACTIONS(3410), + [sym__heredoc_end] = ACTIONS(3410), + [anon_sym_DOLLAR] = ACTIONS(4636), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3410), [sym_comment] = ACTIONS(56), }, [3173] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_RBRACK] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7354), }, [3174] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_RBRACK] = ACTIONS(6033), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7356), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3175] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_RBRACK] = ACTIONS(6037), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7358), }, [3176] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7352), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7340), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3177] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_RBRACK] = ACTIONS(6043), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3654), + [anon_sym_RBRACE] = ACTIONS(7360), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3178] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7354), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__heredoc_middle] = ACTIONS(3422), + [sym__heredoc_end] = ACTIONS(3422), + [anon_sym_DOLLAR] = ACTIONS(4646), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), }, [3179] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3656), + [anon_sym_RBRACE] = ACTIONS(7362), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3180] = { + [sym__concat] = ACTIONS(6041), + [anon_sym_RBRACK] = ACTIONS(6041), + [sym_comment] = ACTIONS(56), + }, + [3181] = { + [sym__concat] = ACTIONS(6045), + [anon_sym_RBRACK] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + }, + [3182] = { [sym__concat] = ACTIONS(6049), [anon_sym_RBRACK] = ACTIONS(6049), [sym_comment] = ACTIONS(56), }, - [3180] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7356), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3181] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_RBRACK] = ACTIONS(6055), + [3183] = { + [sym__concat] = ACTIONS(6053), + [anon_sym_RBRACK] = ACTIONS(6053), [sym_comment] = ACTIONS(56), }, - [3182] = { + [3184] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7364), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3185] = { [sym__concat] = ACTIONS(6059), [anon_sym_RBRACK] = ACTIONS(6059), [sym_comment] = ACTIONS(56), }, - [3183] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_RPAREN] = ACTIONS(4790), - [sym__special_characters] = ACTIONS(5844), - [anon_sym_DQUOTE] = ACTIONS(4790), - [anon_sym_DOLLAR] = ACTIONS(5844), - [sym_raw_string] = ACTIONS(4790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4790), - [anon_sym_LT_LPAREN] = ACTIONS(4790), - [anon_sym_GT_LPAREN] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5844), - }, - [3184] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_RPAREN] = ACTIONS(4796), - [sym__special_characters] = ACTIONS(5846), - [anon_sym_DQUOTE] = ACTIONS(4796), - [anon_sym_DOLLAR] = ACTIONS(5846), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), - [anon_sym_BQUOTE] = ACTIONS(4796), - [anon_sym_LT_LPAREN] = ACTIONS(4796), - [anon_sym_GT_LPAREN] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5846), - }, - [3185] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_RPAREN] = ACTIONS(4859), - [sym__special_characters] = ACTIONS(5848), - [anon_sym_DQUOTE] = ACTIONS(4859), - [anon_sym_DOLLAR] = ACTIONS(5848), - [sym_raw_string] = ACTIONS(4859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4859), - [anon_sym_LT_LPAREN] = ACTIONS(4859), - [anon_sym_GT_LPAREN] = ACTIONS(4859), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5848), - }, [3186] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7358), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7366), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3187] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7360), + [sym__concat] = ACTIONS(6065), + [anon_sym_RBRACK] = ACTIONS(6065), [sym_comment] = ACTIONS(56), }, [3188] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7362), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7368), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3189] = { - [anon_sym_RBRACE] = ACTIONS(7362), + [sym__concat] = ACTIONS(6071), + [anon_sym_RBRACK] = ACTIONS(6071), [sym_comment] = ACTIONS(56), }, [3190] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3659), - [anon_sym_RBRACE] = ACTIONS(7364), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6075), + [anon_sym_RBRACK] = ACTIONS(6075), + [sym_comment] = ACTIONS(56), }, [3191] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_RPAREN] = ACTIONS(4802), + [sym__special_characters] = ACTIONS(5860), + [anon_sym_DQUOTE] = ACTIONS(4802), + [anon_sym_DOLLAR] = ACTIONS(5860), + [sym_raw_string] = ACTIONS(4802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), + [anon_sym_BQUOTE] = ACTIONS(4802), + [anon_sym_LT_LPAREN] = ACTIONS(4802), + [anon_sym_GT_LPAREN] = ACTIONS(4802), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5860), + }, + [3192] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_RPAREN] = ACTIONS(4808), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4808), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), + [anon_sym_BQUOTE] = ACTIONS(4808), + [anon_sym_LT_LPAREN] = ACTIONS(4808), + [anon_sym_GT_LPAREN] = ACTIONS(4808), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5862), + }, + [3193] = { [sym__concat] = ACTIONS(4871), [anon_sym_RPAREN] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5858), + [sym__special_characters] = ACTIONS(5864), [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_DOLLAR] = ACTIONS(5864), [sym_raw_string] = ACTIONS(4871), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), @@ -81260,87 +81310,88 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4871), [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5858), - }, - [3192] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3661), - [anon_sym_RBRACE] = ACTIONS(7366), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3193] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_RPAREN] = ACTIONS(4877), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(4877), - [anon_sym_LT_LPAREN] = ACTIONS(4877), - [anon_sym_GT_LPAREN] = ACTIONS(4877), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5862), + [sym_word] = ACTIONS(5864), }, [3194] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3663), - [anon_sym_RBRACE] = ACTIONS(7368), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7370), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3195] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7372), + [sym_comment] = ACTIONS(56), + }, + [3196] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7374), + [sym_comment] = ACTIONS(56), + }, + [3197] = { + [anon_sym_RBRACE] = ACTIONS(7374), + [sym_comment] = ACTIONS(56), + }, + [3198] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3664), + [anon_sym_RBRACE] = ACTIONS(7376), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3199] = { [sym__concat] = ACTIONS(4883), [anon_sym_RPAREN] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5866), + [sym__special_characters] = ACTIONS(5874), [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5866), + [anon_sym_DOLLAR] = ACTIONS(5874), [sym_raw_string] = ACTIONS(4883), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), @@ -81348,43 +81399,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4883), [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5866), + [sym_word] = ACTIONS(5874), }, - [3196] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7370), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3200] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3666), + [anon_sym_RBRACE] = ACTIONS(7378), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [3197] = { + [3201] = { [sym__concat] = ACTIONS(4889), [anon_sym_RPAREN] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5870), + [sym__special_characters] = ACTIONS(5878), [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5870), + [anon_sym_DOLLAR] = ACTIONS(5878), [sym_raw_string] = ACTIONS(4889), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), @@ -81392,251 +81443,188 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4889), [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5870), - }, - [3198] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7372), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3199] = { - [sym_file_descriptor] = ACTIONS(6025), - [sym__concat] = ACTIONS(6025), - [sym_variable_name] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6027), - [anon_sym_GT] = ACTIONS(6027), - [anon_sym_GT_GT] = ACTIONS(6027), - [anon_sym_AMP_GT] = ACTIONS(6027), - [anon_sym_AMP_GT_GT] = ACTIONS(6027), - [anon_sym_LT_AMP] = ACTIONS(6027), - [anon_sym_GT_AMP] = ACTIONS(6027), - [sym__special_characters] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6027), - [sym_raw_string] = ACTIONS(6027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), - [anon_sym_BQUOTE] = ACTIONS(6027), - [anon_sym_LT_LPAREN] = ACTIONS(6027), - [anon_sym_GT_LPAREN] = ACTIONS(6027), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6027), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), - }, - [3200] = { - [sym_file_descriptor] = ACTIONS(6029), - [sym__concat] = ACTIONS(6029), - [sym_variable_name] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6031), - [anon_sym_GT] = ACTIONS(6031), - [anon_sym_GT_GT] = ACTIONS(6031), - [anon_sym_AMP_GT] = ACTIONS(6031), - [anon_sym_AMP_GT_GT] = ACTIONS(6031), - [anon_sym_LT_AMP] = ACTIONS(6031), - [anon_sym_GT_AMP] = ACTIONS(6031), - [sym__special_characters] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6031), - [sym_raw_string] = ACTIONS(6031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), - [anon_sym_BQUOTE] = ACTIONS(6031), - [anon_sym_LT_LPAREN] = ACTIONS(6031), - [anon_sym_GT_LPAREN] = ACTIONS(6031), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6031), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), - }, - [3201] = { - [sym_file_descriptor] = ACTIONS(6033), - [sym__concat] = ACTIONS(6033), - [sym_variable_name] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6035), - [anon_sym_GT] = ACTIONS(6035), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_AMP_GT] = ACTIONS(6035), - [anon_sym_AMP_GT_GT] = ACTIONS(6035), - [anon_sym_LT_AMP] = ACTIONS(6035), - [anon_sym_GT_AMP] = ACTIONS(6035), - [sym__special_characters] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6035), - [sym_raw_string] = ACTIONS(6035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), - [anon_sym_BQUOTE] = ACTIONS(6035), - [anon_sym_LT_LPAREN] = ACTIONS(6035), - [anon_sym_GT_LPAREN] = ACTIONS(6035), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6035), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), + [sym_word] = ACTIONS(5878), }, [3202] = { - [sym_file_descriptor] = ACTIONS(6037), - [sym__concat] = ACTIONS(6037), - [sym_variable_name] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6039), - [anon_sym_GT] = ACTIONS(6039), - [anon_sym_GT_GT] = ACTIONS(6039), - [anon_sym_AMP_GT] = ACTIONS(6039), - [anon_sym_AMP_GT_GT] = ACTIONS(6039), - [anon_sym_LT_AMP] = ACTIONS(6039), - [anon_sym_GT_AMP] = ACTIONS(6039), - [sym__special_characters] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6039), - [sym_raw_string] = ACTIONS(6039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), - [anon_sym_BQUOTE] = ACTIONS(6039), - [anon_sym_LT_LPAREN] = ACTIONS(6039), - [anon_sym_GT_LPAREN] = ACTIONS(6039), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3668), + [anon_sym_RBRACE] = ACTIONS(7380), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6039), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), + [sym_word] = ACTIONS(866), }, [3203] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7374), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4895), + [sym__special_characters] = ACTIONS(5882), + [anon_sym_DQUOTE] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(5882), + [sym_raw_string] = ACTIONS(4895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(4895), + [anon_sym_LT_LPAREN] = ACTIONS(4895), + [anon_sym_GT_LPAREN] = ACTIONS(4895), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5882), }, [3204] = { - [sym_file_descriptor] = ACTIONS(6043), - [sym__concat] = ACTIONS(6043), - [sym_variable_name] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_AMP_GT] = ACTIONS(6045), - [anon_sym_AMP_GT_GT] = ACTIONS(6045), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_AMP] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6045), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7382), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6045), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), + [sym_word] = ACTIONS(866), }, [3205] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7376), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(4901), + [anon_sym_RPAREN] = ACTIONS(4901), + [sym__special_characters] = ACTIONS(5886), + [anon_sym_DQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(5886), + [sym_raw_string] = ACTIONS(4901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4901), + [anon_sym_LT_LPAREN] = ACTIONS(4901), + [anon_sym_GT_LPAREN] = ACTIONS(4901), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5886), }, [3206] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7384), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3207] = { + [sym_file_descriptor] = ACTIONS(6041), + [sym__concat] = ACTIONS(6041), + [sym_variable_name] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_GT_GT] = ACTIONS(6043), + [anon_sym_AMP_GT] = ACTIONS(6043), + [anon_sym_AMP_GT_GT] = ACTIONS(6043), + [anon_sym_LT_AMP] = ACTIONS(6043), + [anon_sym_GT_AMP] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6043), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6043), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6043), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), + }, + [3208] = { + [sym_file_descriptor] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [sym_variable_name] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_GT_GT] = ACTIONS(6047), + [anon_sym_AMP_GT] = ACTIONS(6047), + [anon_sym_AMP_GT_GT] = ACTIONS(6047), + [anon_sym_LT_AMP] = ACTIONS(6047), + [anon_sym_GT_AMP] = ACTIONS(6047), + [sym__special_characters] = ACTIONS(6047), + [anon_sym_DQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR] = ACTIONS(6047), + [sym_raw_string] = ACTIONS(6047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), + [anon_sym_BQUOTE] = ACTIONS(6047), + [anon_sym_LT_LPAREN] = ACTIONS(6047), + [anon_sym_GT_LPAREN] = ACTIONS(6047), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6047), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), + }, + [3209] = { [sym_file_descriptor] = ACTIONS(6049), [sym__concat] = ACTIONS(6049), [sym_variable_name] = ACTIONS(6049), @@ -81667,67 +81655,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6051), [anon_sym_AMP] = ACTIONS(6051), }, - [3207] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7378), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3210] = { + [sym_file_descriptor] = ACTIONS(6053), + [sym__concat] = ACTIONS(6053), + [sym_variable_name] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [anon_sym_LT] = ACTIONS(6055), + [anon_sym_GT] = ACTIONS(6055), + [anon_sym_GT_GT] = ACTIONS(6055), + [anon_sym_AMP_GT] = ACTIONS(6055), + [anon_sym_AMP_GT_GT] = ACTIONS(6055), + [anon_sym_LT_AMP] = ACTIONS(6055), + [anon_sym_GT_AMP] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6055), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(6055), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), }, - [3208] = { - [sym_file_descriptor] = ACTIONS(6055), - [sym__concat] = ACTIONS(6055), - [sym_variable_name] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_GT_GT] = ACTIONS(6057), - [anon_sym_AMP_GT] = ACTIONS(6057), - [anon_sym_AMP_GT_GT] = ACTIONS(6057), - [anon_sym_LT_AMP] = ACTIONS(6057), - [anon_sym_GT_AMP] = ACTIONS(6057), - [sym__special_characters] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(6057), - [anon_sym_DOLLAR] = ACTIONS(6057), - [sym_raw_string] = ACTIONS(6057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), - [anon_sym_BQUOTE] = ACTIONS(6057), - [anon_sym_LT_LPAREN] = ACTIONS(6057), - [anon_sym_GT_LPAREN] = ACTIONS(6057), + [3211] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7386), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6057), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), + [sym_word] = ACTIONS(866), }, - [3209] = { + [3212] = { [sym_file_descriptor] = ACTIONS(6059), [sym__concat] = ACTIONS(6059), [sym_variable_name] = ACTIONS(6059), @@ -81758,135 +81746,194 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6061), [anon_sym_AMP] = ACTIONS(6061), }, - [3210] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [sym__special_characters] = ACTIONS(4792), - [anon_sym_DQUOTE] = ACTIONS(4792), - [anon_sym_DOLLAR] = ACTIONS(4792), - [sym_raw_string] = ACTIONS(4792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), - [anon_sym_BQUOTE] = ACTIONS(4792), - [anon_sym_LT_LPAREN] = ACTIONS(4792), - [anon_sym_GT_LPAREN] = ACTIONS(4792), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4792), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - }, - [3211] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4798), - [anon_sym_DOLLAR] = ACTIONS(4798), - [sym_raw_string] = ACTIONS(4798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), - [anon_sym_BQUOTE] = ACTIONS(4798), - [anon_sym_LT_LPAREN] = ACTIONS(4798), - [anon_sym_GT_LPAREN] = ACTIONS(4798), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4798), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), - }, - [3212] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4861), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), - }, [3213] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7380), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7388), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3214] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7382), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(6065), + [sym__concat] = ACTIONS(6065), + [sym_variable_name] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [anon_sym_LT] = ACTIONS(6067), + [anon_sym_GT] = ACTIONS(6067), + [anon_sym_GT_GT] = ACTIONS(6067), + [anon_sym_AMP_GT] = ACTIONS(6067), + [anon_sym_AMP_GT_GT] = ACTIONS(6067), + [anon_sym_LT_AMP] = ACTIONS(6067), + [anon_sym_GT_AMP] = ACTIONS(6067), + [sym__special_characters] = ACTIONS(6067), + [anon_sym_DQUOTE] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6067), + [sym_raw_string] = ACTIONS(6067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), + [anon_sym_BQUOTE] = ACTIONS(6067), + [anon_sym_LT_LPAREN] = ACTIONS(6067), + [anon_sym_GT_LPAREN] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6067), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), }, [3215] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7384), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7390), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3216] = { - [anon_sym_RBRACE] = ACTIONS(7384), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(6071), + [sym__concat] = ACTIONS(6071), + [sym_variable_name] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_GT_GT] = ACTIONS(6073), + [anon_sym_AMP_GT] = ACTIONS(6073), + [anon_sym_AMP_GT_GT] = ACTIONS(6073), + [anon_sym_LT_AMP] = ACTIONS(6073), + [anon_sym_GT_AMP] = ACTIONS(6073), + [sym__special_characters] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR] = ACTIONS(6073), + [sym_raw_string] = ACTIONS(6073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), + [anon_sym_BQUOTE] = ACTIONS(6073), + [anon_sym_LT_LPAREN] = ACTIONS(6073), + [anon_sym_GT_LPAREN] = ACTIONS(6073), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6073), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), }, [3217] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3673), - [anon_sym_RBRACE] = ACTIONS(7386), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(6075), + [sym__concat] = ACTIONS(6075), + [sym_variable_name] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_AMP_GT] = ACTIONS(6077), + [anon_sym_AMP_GT_GT] = ACTIONS(6077), + [anon_sym_LT_AMP] = ACTIONS(6077), + [anon_sym_GT_AMP] = ACTIONS(6077), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), + [anon_sym_BQUOTE] = ACTIONS(6077), + [anon_sym_LT_LPAREN] = ACTIONS(6077), + [anon_sym_GT_LPAREN] = ACTIONS(6077), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(6077), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), }, [3218] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [sym__special_characters] = ACTIONS(4804), + [anon_sym_DQUOTE] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4804), + [sym_raw_string] = ACTIONS(4804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), + [anon_sym_BQUOTE] = ACTIONS(4804), + [anon_sym_LT_LPAREN] = ACTIONS(4804), + [anon_sym_GT_LPAREN] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), + }, + [3219] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [sym__special_characters] = ACTIONS(4810), + [anon_sym_DQUOTE] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4810), + [sym_raw_string] = ACTIONS(4810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), + [anon_sym_BQUOTE] = ACTIONS(4810), + [anon_sym_LT_LPAREN] = ACTIONS(4810), + [anon_sym_GT_LPAREN] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), + }, + [3220] = { [sym__concat] = ACTIONS(4871), [anon_sym_SEMI_SEMI] = ACTIONS(4873), [sym__special_characters] = ACTIONS(4873), @@ -81904,83 +81951,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4873), [anon_sym_AMP] = ACTIONS(4873), }, - [3219] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3675), - [anon_sym_RBRACE] = ACTIONS(7388), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3220] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [sym__special_characters] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4879), - [sym_raw_string] = ACTIONS(4879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), - [anon_sym_BQUOTE] = ACTIONS(4879), - [anon_sym_LT_LPAREN] = ACTIONS(4879), - [anon_sym_GT_LPAREN] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), - }, [3221] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3677), - [anon_sym_RBRACE] = ACTIONS(7390), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7392), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3222] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7394), + [sym_comment] = ACTIONS(56), + }, + [3223] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7396), + [sym_comment] = ACTIONS(56), + }, + [3224] = { + [anon_sym_RBRACE] = ACTIONS(7396), + [sym_comment] = ACTIONS(56), + }, + [3225] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3678), + [anon_sym_RBRACE] = ACTIONS(7398), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3226] = { [sym__concat] = ACTIONS(4883), [anon_sym_SEMI_SEMI] = ACTIONS(4885), [sym__special_characters] = ACTIONS(4885), @@ -81998,36 +82043,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4885), [anon_sym_AMP] = ACTIONS(4885), }, - [3223] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7392), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3227] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3680), + [anon_sym_RBRACE] = ACTIONS(7400), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [3224] = { + [3228] = { [sym__concat] = ACTIONS(4889), [anon_sym_SEMI_SEMI] = ACTIONS(4891), [sym__special_characters] = ACTIONS(4891), @@ -82045,72 +82090,153 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4891), [anon_sym_AMP] = ACTIONS(4891), }, - [3225] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7394), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3229] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3682), + [anon_sym_RBRACE] = ACTIONS(7402), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [3226] = { - [anon_sym_esac] = ACTIONS(4297), - [anon_sym_PIPE] = ACTIONS(4297), - [anon_sym_RPAREN] = ACTIONS(4297), - [anon_sym_SEMI_SEMI] = ACTIONS(4297), - [anon_sym_PIPE_AMP] = ACTIONS(4297), - [anon_sym_AMP_AMP] = ACTIONS(4297), - [anon_sym_PIPE_PIPE] = ACTIONS(4297), + [3230] = { + [sym__concat] = ACTIONS(4895), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(4897), + [anon_sym_DQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR] = ACTIONS(4897), + [sym_raw_string] = ACTIONS(4897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), + [anon_sym_BQUOTE] = ACTIONS(4897), + [anon_sym_LT_LPAREN] = ACTIONS(4897), + [anon_sym_GT_LPAREN] = ACTIONS(4897), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4297), - [anon_sym_LF] = ACTIONS(4297), - [anon_sym_AMP] = ACTIONS(4297), + [sym_word] = ACTIONS(4897), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), }, - [3227] = { - [sym_concatenation] = STATE(3680), - [sym_string] = STATE(3685), - [sym_array] = STATE(3680), - [sym_simple_expansion] = STATE(3685), - [sym_string_expansion] = STATE(3685), - [sym_expansion] = STATE(3685), - [sym_command_substitution] = STATE(3685), - [sym_process_substitution] = STATE(3685), - [sym__empty_value] = ACTIONS(7396), - [anon_sym_LPAREN] = ACTIONS(7398), - [sym__special_characters] = ACTIONS(7400), - [anon_sym_DQUOTE] = ACTIONS(7402), - [anon_sym_DOLLAR] = ACTIONS(7404), - [sym_raw_string] = ACTIONS(7406), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7410), - [anon_sym_BQUOTE] = ACTIONS(7412), - [anon_sym_LT_LPAREN] = ACTIONS(7414), - [anon_sym_GT_LPAREN] = ACTIONS(7414), + [3231] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7404), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3232] = { + [sym__concat] = ACTIONS(4901), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4903), + [sym_raw_string] = ACTIONS(4903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), + [anon_sym_BQUOTE] = ACTIONS(4903), + [anon_sym_LT_LPAREN] = ACTIONS(4903), + [anon_sym_GT_LPAREN] = ACTIONS(4903), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4903), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), + }, + [3233] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7406), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3234] = { + [sym_concatenation] = STATE(3685), + [sym_string] = STATE(3690), + [sym_array] = STATE(3685), + [sym_simple_expansion] = STATE(3690), + [sym_string_expansion] = STATE(3690), + [sym_expansion] = STATE(3690), + [sym_command_substitution] = STATE(3690), + [sym_process_substitution] = STATE(3690), + [sym__empty_value] = ACTIONS(7408), + [anon_sym_LPAREN] = ACTIONS(7410), + [sym__special_characters] = ACTIONS(7412), + [anon_sym_DQUOTE] = ACTIONS(7414), + [anon_sym_DOLLAR] = ACTIONS(7416), + [sym_raw_string] = ACTIONS(7418), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7420), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7422), + [anon_sym_BQUOTE] = ACTIONS(7424), + [anon_sym_LT_LPAREN] = ACTIONS(7426), + [anon_sym_GT_LPAREN] = ACTIONS(7426), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7416), + [sym_word] = ACTIONS(7428), }, - [3228] = { + [3235] = { [sym_file_descriptor] = ACTIONS(440), [sym_variable_name] = ACTIONS(440), [anon_sym_esac] = ACTIONS(442), @@ -82141,18 +82267,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(442), [anon_sym_AMP] = ACTIONS(442), }, - [3229] = { - [sym_do_group] = STATE(3690), - [anon_sym_do] = ACTIONS(446), + [3236] = { + [sym_do_group] = STATE(3695), + [anon_sym_do] = ACTIONS(448), [sym_comment] = ACTIONS(56), }, - [3230] = { - [sym_compound_statement] = STATE(3692), - [anon_sym_LPAREN] = ACTIONS(7418), - [anon_sym_LBRACE] = ACTIONS(484), + [3237] = { + [sym_compound_statement] = STATE(3697), + [anon_sym_LPAREN] = ACTIONS(7430), + [anon_sym_LBRACE] = ACTIONS(486), [sym_comment] = ACTIONS(56), }, - [3231] = { + [3238] = { [sym_concatenation] = STATE(84), [sym_string] = STATE(79), [sym_simple_expansion] = STATE(79), @@ -82160,11 +82286,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(79), [sym_command_substitution] = STATE(79), [sym_process_substitution] = STATE(79), - [aux_sym_command_repeat2] = STATE(350), + [aux_sym_command_repeat2] = STATE(351), [anon_sym_EQ_TILDE] = ACTIONS(122), [anon_sym_EQ_EQ] = ACTIONS(122), - [anon_sym_RBRACK] = ACTIONS(7420), - [sym__special_characters] = ACTIONS(638), + [anon_sym_RBRACK] = ACTIONS(7432), + [sym__special_characters] = ACTIONS(640), [anon_sym_DQUOTE] = ACTIONS(126), [anon_sym_DOLLAR] = ACTIONS(128), [sym_raw_string] = ACTIONS(130), @@ -82176,7 +82302,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(140), }, - [3232] = { + [3239] = { [sym_concatenation] = STATE(95), [sym_string] = STATE(90), [sym_simple_expansion] = STATE(90), @@ -82184,11 +82310,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(90), [sym_command_substitution] = STATE(90), [sym_process_substitution] = STATE(90), - [aux_sym_command_repeat2] = STATE(372), + [aux_sym_command_repeat2] = STATE(373), [anon_sym_EQ_TILDE] = ACTIONS(142), [anon_sym_EQ_EQ] = ACTIONS(142), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7420), - [sym__special_characters] = ACTIONS(680), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7432), + [sym__special_characters] = ACTIONS(682), [anon_sym_DQUOTE] = ACTIONS(146), [anon_sym_DOLLAR] = ACTIONS(148), [sym_raw_string] = ACTIONS(150), @@ -82200,45 +82326,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(160), }, - [3233] = { - [sym__assignment] = STATE(3695), + [3240] = { + [sym__assignment] = STATE(3700), [anon_sym_LBRACK] = ACTIONS(64), - [anon_sym_EQ] = ACTIONS(7422), - [anon_sym_PLUS_EQ] = ACTIONS(7422), + [anon_sym_EQ] = ACTIONS(7434), + [anon_sym_PLUS_EQ] = ACTIONS(7434), [sym_comment] = ACTIONS(56), }, - [3234] = { - [aux_sym_concatenation_repeat1] = STATE(3697), - [sym__concat] = ACTIONS(7424), - [sym_variable_name] = ACTIONS(686), - [anon_sym_esac] = ACTIONS(688), - [anon_sym_PIPE] = ACTIONS(688), - [anon_sym_SEMI_SEMI] = ACTIONS(688), - [anon_sym_PIPE_AMP] = ACTIONS(688), - [anon_sym_AMP_AMP] = ACTIONS(688), - [anon_sym_PIPE_PIPE] = ACTIONS(688), - [sym__special_characters] = ACTIONS(688), - [anon_sym_DQUOTE] = ACTIONS(688), - [anon_sym_DOLLAR] = ACTIONS(688), - [sym_raw_string] = ACTIONS(688), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(688), - [anon_sym_BQUOTE] = ACTIONS(688), - [anon_sym_LT_LPAREN] = ACTIONS(688), - [anon_sym_GT_LPAREN] = ACTIONS(688), + [3241] = { + [aux_sym_concatenation_repeat1] = STATE(3702), + [sym__concat] = ACTIONS(7436), + [sym_variable_name] = ACTIONS(688), + [anon_sym_esac] = ACTIONS(690), + [anon_sym_PIPE] = ACTIONS(690), + [anon_sym_SEMI_SEMI] = ACTIONS(690), + [anon_sym_PIPE_AMP] = ACTIONS(690), + [anon_sym_AMP_AMP] = ACTIONS(690), + [anon_sym_PIPE_PIPE] = ACTIONS(690), + [sym__special_characters] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(690), + [anon_sym_DOLLAR] = ACTIONS(690), + [sym_raw_string] = ACTIONS(690), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(690), + [anon_sym_BQUOTE] = ACTIONS(690), + [anon_sym_LT_LPAREN] = ACTIONS(690), + [anon_sym_GT_LPAREN] = ACTIONS(690), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(688), - [sym_word] = ACTIONS(688), - [anon_sym_SEMI] = ACTIONS(688), - [anon_sym_LF] = ACTIONS(688), - [anon_sym_AMP] = ACTIONS(688), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(690), + [sym_word] = ACTIONS(690), + [anon_sym_SEMI] = ACTIONS(690), + [anon_sym_LF] = ACTIONS(690), + [anon_sym_AMP] = ACTIONS(690), }, - [3235] = { + [3242] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(3699), - [anon_sym_DQUOTE] = ACTIONS(7426), + [aux_sym_string_repeat1] = STATE(3704), + [anon_sym_DQUOTE] = ACTIONS(7438), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -82246,76 +82372,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [3236] = { - [sym_string] = STATE(3701), - [anon_sym_DQUOTE] = ACTIONS(7428), - [anon_sym_DOLLAR] = ACTIONS(7430), - [sym_raw_string] = ACTIONS(7432), - [anon_sym_POUND] = ACTIONS(7430), - [anon_sym_DASH] = ACTIONS(7430), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7434), - [anon_sym_STAR] = ACTIONS(7430), - [anon_sym_AT] = ACTIONS(7430), - [anon_sym_QMARK] = ACTIONS(7430), - [anon_sym_0] = ACTIONS(7436), - [anon_sym__] = ACTIONS(7436), - }, - [3237] = { - [aux_sym_concatenation_repeat1] = STATE(3697), - [sym__concat] = ACTIONS(7424), - [sym_variable_name] = ACTIONS(702), - [anon_sym_esac] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_SEMI_SEMI] = ACTIONS(704), - [anon_sym_PIPE_AMP] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(704), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [sym__special_characters] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(704), - [sym_raw_string] = ACTIONS(704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(704), - [anon_sym_GT_LPAREN] = ACTIONS(704), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(704), - [sym_word] = ACTIONS(704), - [anon_sym_SEMI] = ACTIONS(704), - [anon_sym_LF] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - }, - [3238] = { - [sym_subscript] = STATE(3707), - [sym_variable_name] = ACTIONS(7438), - [anon_sym_DOLLAR] = ACTIONS(7440), + [3243] = { + [sym_string] = STATE(3706), + [anon_sym_DQUOTE] = ACTIONS(7440), + [anon_sym_DOLLAR] = ACTIONS(7442), + [sym_raw_string] = ACTIONS(7444), [anon_sym_POUND] = ACTIONS(7442), - [anon_sym_DASH] = ACTIONS(7440), + [anon_sym_DASH] = ACTIONS(7442), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7444), - [anon_sym_STAR] = ACTIONS(7440), - [anon_sym_AT] = ACTIONS(7440), - [anon_sym_QMARK] = ACTIONS(7440), - [anon_sym_0] = ACTIONS(7446), - [anon_sym__] = ACTIONS(7446), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7446), + [anon_sym_STAR] = ACTIONS(7442), + [anon_sym_AT] = ACTIONS(7442), + [anon_sym_QMARK] = ACTIONS(7442), + [anon_sym_0] = ACTIONS(7448), + [anon_sym__] = ACTIONS(7448), }, - [3239] = { - [sym_for_statement] = STATE(3708), - [sym_while_statement] = STATE(3708), - [sym_if_statement] = STATE(3708), - [sym_case_statement] = STATE(3708), - [sym_function_definition] = STATE(3708), - [sym_subshell] = STATE(3708), - [sym_pipeline] = STATE(3708), - [sym_list] = STATE(3708), - [sym_command] = STATE(3708), + [3244] = { + [aux_sym_concatenation_repeat1] = STATE(3702), + [sym__concat] = ACTIONS(7436), + [sym_variable_name] = ACTIONS(704), + [anon_sym_esac] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_SEMI_SEMI] = ACTIONS(706), + [anon_sym_PIPE_AMP] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [sym__special_characters] = ACTIONS(706), + [anon_sym_DQUOTE] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(706), + [sym_raw_string] = ACTIONS(706), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(706), + [anon_sym_BQUOTE] = ACTIONS(706), + [anon_sym_LT_LPAREN] = ACTIONS(706), + [anon_sym_GT_LPAREN] = ACTIONS(706), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(706), + [sym_word] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(706), + [anon_sym_LF] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), + }, + [3245] = { + [sym_subscript] = STATE(3712), + [sym_variable_name] = ACTIONS(7450), + [anon_sym_DOLLAR] = ACTIONS(7452), + [anon_sym_POUND] = ACTIONS(7454), + [anon_sym_DASH] = ACTIONS(7452), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7456), + [anon_sym_STAR] = ACTIONS(7452), + [anon_sym_AT] = ACTIONS(7452), + [anon_sym_QMARK] = ACTIONS(7452), + [anon_sym_0] = ACTIONS(7458), + [anon_sym__] = ACTIONS(7458), + }, + [3246] = { + [sym_for_statement] = STATE(3713), + [sym_while_statement] = STATE(3713), + [sym_if_statement] = STATE(3713), + [sym_case_statement] = STATE(3713), + [sym_function_definition] = STATE(3713), + [sym_subshell] = STATE(3713), + [sym_pipeline] = STATE(3713), + [sym_list] = STATE(3713), + [sym_command] = STATE(3713), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(3708), - [sym_variable_assignment] = STATE(3709), - [sym_declaration_command] = STATE(3708), - [sym_unset_command] = STATE(3708), + [sym_bracket_command] = STATE(3713), + [sym_variable_assignment] = STATE(3714), + [sym_declaration_command] = STATE(3713), + [sym_unset_command] = STATE(3713), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -82362,21 +82488,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [3240] = { - [sym_for_statement] = STATE(3710), - [sym_while_statement] = STATE(3710), - [sym_if_statement] = STATE(3710), - [sym_case_statement] = STATE(3710), - [sym_function_definition] = STATE(3710), - [sym_subshell] = STATE(3710), - [sym_pipeline] = STATE(3710), - [sym_list] = STATE(3710), - [sym_command] = STATE(3710), + [3247] = { + [sym_for_statement] = STATE(3715), + [sym_while_statement] = STATE(3715), + [sym_if_statement] = STATE(3715), + [sym_case_statement] = STATE(3715), + [sym_function_definition] = STATE(3715), + [sym_subshell] = STATE(3715), + [sym_pipeline] = STATE(3715), + [sym_list] = STATE(3715), + [sym_command] = STATE(3715), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(3710), - [sym_variable_assignment] = STATE(3711), - [sym_declaration_command] = STATE(3710), - [sym_unset_command] = STATE(3710), + [sym_bracket_command] = STATE(3715), + [sym_variable_assignment] = STATE(3716), + [sym_declaration_command] = STATE(3715), + [sym_unset_command] = STATE(3715), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -82423,21 +82549,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [3241] = { - [sym_for_statement] = STATE(3712), - [sym_while_statement] = STATE(3712), - [sym_if_statement] = STATE(3712), - [sym_case_statement] = STATE(3712), - [sym_function_definition] = STATE(3712), - [sym_subshell] = STATE(3712), - [sym_pipeline] = STATE(3712), - [sym_list] = STATE(3712), - [sym_command] = STATE(3712), + [3248] = { + [sym_for_statement] = STATE(3717), + [sym_while_statement] = STATE(3717), + [sym_if_statement] = STATE(3717), + [sym_case_statement] = STATE(3717), + [sym_function_definition] = STATE(3717), + [sym_subshell] = STATE(3717), + [sym_pipeline] = STATE(3717), + [sym_list] = STATE(3717), + [sym_command] = STATE(3717), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(3712), - [sym_variable_assignment] = STATE(3713), - [sym_declaration_command] = STATE(3712), - [sym_unset_command] = STATE(3712), + [sym_bracket_command] = STATE(3717), + [sym_variable_assignment] = STATE(3718), + [sym_declaration_command] = STATE(3717), + [sym_unset_command] = STATE(3717), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -82484,125 +82610,125 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [3242] = { - [sym_variable_name] = ACTIONS(716), - [anon_sym_esac] = ACTIONS(718), - [anon_sym_PIPE] = ACTIONS(718), - [anon_sym_SEMI_SEMI] = ACTIONS(718), - [anon_sym_PIPE_AMP] = ACTIONS(718), - [anon_sym_AMP_AMP] = ACTIONS(718), - [anon_sym_PIPE_PIPE] = ACTIONS(718), - [sym__special_characters] = ACTIONS(718), - [anon_sym_DQUOTE] = ACTIONS(718), - [anon_sym_DOLLAR] = ACTIONS(718), - [sym_raw_string] = ACTIONS(718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(718), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(718), - [anon_sym_BQUOTE] = ACTIONS(718), - [anon_sym_LT_LPAREN] = ACTIONS(718), - [anon_sym_GT_LPAREN] = ACTIONS(718), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(718), - [sym_word] = ACTIONS(718), - [anon_sym_SEMI] = ACTIONS(718), - [anon_sym_LF] = ACTIONS(718), - [anon_sym_AMP] = ACTIONS(718), - }, - [3243] = { - [sym_variable_name] = ACTIONS(702), - [anon_sym_esac] = ACTIONS(704), - [anon_sym_PIPE] = ACTIONS(704), - [anon_sym_SEMI_SEMI] = ACTIONS(704), - [anon_sym_PIPE_AMP] = ACTIONS(704), - [anon_sym_AMP_AMP] = ACTIONS(704), - [anon_sym_PIPE_PIPE] = ACTIONS(704), - [sym__special_characters] = ACTIONS(704), - [anon_sym_DQUOTE] = ACTIONS(704), - [anon_sym_DOLLAR] = ACTIONS(704), - [sym_raw_string] = ACTIONS(704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(704), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(704), - [anon_sym_BQUOTE] = ACTIONS(704), - [anon_sym_LT_LPAREN] = ACTIONS(704), - [anon_sym_GT_LPAREN] = ACTIONS(704), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(704), - [sym_word] = ACTIONS(704), - [anon_sym_SEMI] = ACTIONS(704), - [anon_sym_LF] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(704), - }, - [3244] = { - [sym__assignment] = STATE(3695), - [anon_sym_EQ] = ACTIONS(7422), - [anon_sym_PLUS_EQ] = ACTIONS(7422), - [sym_comment] = ACTIONS(56), - }, - [3245] = { - [sym_variable_assignment] = STATE(3243), - [sym_subscript] = STATE(3244), - [sym_concatenation] = STATE(3243), - [sym_string] = STATE(3237), - [sym_simple_expansion] = STATE(3237), - [sym_string_expansion] = STATE(3237), - [sym_expansion] = STATE(3237), - [sym_command_substitution] = STATE(3237), - [sym_process_substitution] = STATE(3237), - [aux_sym_declaration_command_repeat1] = STATE(3714), - [sym_variable_name] = ACTIONS(6591), + [3249] = { + [sym_variable_name] = ACTIONS(718), [anon_sym_esac] = ACTIONS(720), [anon_sym_PIPE] = ACTIONS(720), [anon_sym_SEMI_SEMI] = ACTIONS(720), [anon_sym_PIPE_AMP] = ACTIONS(720), [anon_sym_AMP_AMP] = ACTIONS(720), [anon_sym_PIPE_PIPE] = ACTIONS(720), - [sym__special_characters] = ACTIONS(6593), - [anon_sym_DQUOTE] = ACTIONS(6595), - [anon_sym_DOLLAR] = ACTIONS(6597), - [sym_raw_string] = ACTIONS(6599), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6601), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6603), - [anon_sym_BQUOTE] = ACTIONS(6605), - [anon_sym_LT_LPAREN] = ACTIONS(6607), - [anon_sym_GT_LPAREN] = ACTIONS(6607), + [sym__special_characters] = ACTIONS(720), + [anon_sym_DQUOTE] = ACTIONS(720), + [anon_sym_DOLLAR] = ACTIONS(720), + [sym_raw_string] = ACTIONS(720), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(720), + [anon_sym_BQUOTE] = ACTIONS(720), + [anon_sym_LT_LPAREN] = ACTIONS(720), + [anon_sym_GT_LPAREN] = ACTIONS(720), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6609), - [sym_word] = ACTIONS(6599), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(720), + [sym_word] = ACTIONS(720), [anon_sym_SEMI] = ACTIONS(720), [anon_sym_LF] = ACTIONS(720), [anon_sym_AMP] = ACTIONS(720), }, - [3246] = { - [aux_sym_concatenation_repeat1] = STATE(3716), - [sym__concat] = ACTIONS(7448), - [anon_sym_esac] = ACTIONS(724), - [anon_sym_PIPE] = ACTIONS(724), - [anon_sym_SEMI_SEMI] = ACTIONS(724), - [anon_sym_PIPE_AMP] = ACTIONS(724), - [anon_sym_AMP_AMP] = ACTIONS(724), - [anon_sym_PIPE_PIPE] = ACTIONS(724), - [sym__special_characters] = ACTIONS(724), - [anon_sym_DQUOTE] = ACTIONS(724), - [anon_sym_DOLLAR] = ACTIONS(724), - [sym_raw_string] = ACTIONS(724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(724), - [anon_sym_BQUOTE] = ACTIONS(724), - [anon_sym_LT_LPAREN] = ACTIONS(724), - [anon_sym_GT_LPAREN] = ACTIONS(724), + [3250] = { + [sym_variable_name] = ACTIONS(704), + [anon_sym_esac] = ACTIONS(706), + [anon_sym_PIPE] = ACTIONS(706), + [anon_sym_SEMI_SEMI] = ACTIONS(706), + [anon_sym_PIPE_AMP] = ACTIONS(706), + [anon_sym_AMP_AMP] = ACTIONS(706), + [anon_sym_PIPE_PIPE] = ACTIONS(706), + [sym__special_characters] = ACTIONS(706), + [anon_sym_DQUOTE] = ACTIONS(706), + [anon_sym_DOLLAR] = ACTIONS(706), + [sym_raw_string] = ACTIONS(706), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(706), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(706), + [anon_sym_BQUOTE] = ACTIONS(706), + [anon_sym_LT_LPAREN] = ACTIONS(706), + [anon_sym_GT_LPAREN] = ACTIONS(706), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(724), - [sym_word] = ACTIONS(724), - [anon_sym_SEMI] = ACTIONS(724), - [anon_sym_LF] = ACTIONS(724), - [anon_sym_AMP] = ACTIONS(724), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(706), + [sym_word] = ACTIONS(706), + [anon_sym_SEMI] = ACTIONS(706), + [anon_sym_LF] = ACTIONS(706), + [anon_sym_AMP] = ACTIONS(706), }, - [3247] = { + [3251] = { + [sym__assignment] = STATE(3700), + [anon_sym_EQ] = ACTIONS(7434), + [anon_sym_PLUS_EQ] = ACTIONS(7434), + [sym_comment] = ACTIONS(56), + }, + [3252] = { + [sym_variable_assignment] = STATE(3250), + [sym_subscript] = STATE(3251), + [sym_concatenation] = STATE(3250), + [sym_string] = STATE(3244), + [sym_simple_expansion] = STATE(3244), + [sym_string_expansion] = STATE(3244), + [sym_expansion] = STATE(3244), + [sym_command_substitution] = STATE(3244), + [sym_process_substitution] = STATE(3244), + [aux_sym_declaration_command_repeat1] = STATE(3719), + [sym_variable_name] = ACTIONS(6605), + [anon_sym_esac] = ACTIONS(722), + [anon_sym_PIPE] = ACTIONS(722), + [anon_sym_SEMI_SEMI] = ACTIONS(722), + [anon_sym_PIPE_AMP] = ACTIONS(722), + [anon_sym_AMP_AMP] = ACTIONS(722), + [anon_sym_PIPE_PIPE] = ACTIONS(722), + [sym__special_characters] = ACTIONS(6607), + [anon_sym_DQUOTE] = ACTIONS(6609), + [anon_sym_DOLLAR] = ACTIONS(6611), + [sym_raw_string] = ACTIONS(6613), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6615), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6617), + [anon_sym_BQUOTE] = ACTIONS(6619), + [anon_sym_LT_LPAREN] = ACTIONS(6621), + [anon_sym_GT_LPAREN] = ACTIONS(6621), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6623), + [sym_word] = ACTIONS(6613), + [anon_sym_SEMI] = ACTIONS(722), + [anon_sym_LF] = ACTIONS(722), + [anon_sym_AMP] = ACTIONS(722), + }, + [3253] = { + [aux_sym_concatenation_repeat1] = STATE(3721), + [sym__concat] = ACTIONS(7460), + [anon_sym_esac] = ACTIONS(726), + [anon_sym_PIPE] = ACTIONS(726), + [anon_sym_SEMI_SEMI] = ACTIONS(726), + [anon_sym_PIPE_AMP] = ACTIONS(726), + [anon_sym_AMP_AMP] = ACTIONS(726), + [anon_sym_PIPE_PIPE] = ACTIONS(726), + [sym__special_characters] = ACTIONS(726), + [anon_sym_DQUOTE] = ACTIONS(726), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym_raw_string] = ACTIONS(726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(726), + [anon_sym_BQUOTE] = ACTIONS(726), + [anon_sym_LT_LPAREN] = ACTIONS(726), + [anon_sym_GT_LPAREN] = ACTIONS(726), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(726), + [sym_word] = ACTIONS(726), + [anon_sym_SEMI] = ACTIONS(726), + [anon_sym_LF] = ACTIONS(726), + [anon_sym_AMP] = ACTIONS(726), + }, + [3254] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(3718), - [anon_sym_DQUOTE] = ACTIONS(7450), + [aux_sym_string_repeat1] = STATE(3723), + [anon_sym_DQUOTE] = ACTIONS(7462), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -82610,75 +82736,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [3248] = { - [sym_string] = STATE(3720), - [anon_sym_DQUOTE] = ACTIONS(7452), - [anon_sym_DOLLAR] = ACTIONS(7454), - [sym_raw_string] = ACTIONS(7456), - [anon_sym_POUND] = ACTIONS(7454), - [anon_sym_DASH] = ACTIONS(7454), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7458), - [anon_sym_STAR] = ACTIONS(7454), - [anon_sym_AT] = ACTIONS(7454), - [anon_sym_QMARK] = ACTIONS(7454), - [anon_sym_0] = ACTIONS(7460), - [anon_sym__] = ACTIONS(7460), - }, - [3249] = { - [aux_sym_concatenation_repeat1] = STATE(3716), - [sym__concat] = ACTIONS(7448), - [anon_sym_esac] = ACTIONS(738), - [anon_sym_PIPE] = 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), - [sym__special_characters] = ACTIONS(738), - [anon_sym_DQUOTE] = ACTIONS(738), - [anon_sym_DOLLAR] = ACTIONS(738), - [sym_raw_string] = 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_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(738), - [sym_word] = ACTIONS(738), - [anon_sym_SEMI] = ACTIONS(738), - [anon_sym_LF] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(738), - }, - [3250] = { - [sym_subscript] = STATE(3726), - [sym_variable_name] = ACTIONS(7462), - [anon_sym_DOLLAR] = ACTIONS(7464), + [3255] = { + [sym_string] = STATE(3725), + [anon_sym_DQUOTE] = ACTIONS(7464), + [anon_sym_DOLLAR] = ACTIONS(7466), + [sym_raw_string] = ACTIONS(7468), [anon_sym_POUND] = ACTIONS(7466), - [anon_sym_DASH] = ACTIONS(7464), + [anon_sym_DASH] = ACTIONS(7466), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7468), - [anon_sym_STAR] = ACTIONS(7464), - [anon_sym_AT] = ACTIONS(7464), - [anon_sym_QMARK] = ACTIONS(7464), - [anon_sym_0] = ACTIONS(7470), - [anon_sym__] = ACTIONS(7470), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7470), + [anon_sym_STAR] = ACTIONS(7466), + [anon_sym_AT] = ACTIONS(7466), + [anon_sym_QMARK] = ACTIONS(7466), + [anon_sym_0] = ACTIONS(7472), + [anon_sym__] = ACTIONS(7472), }, - [3251] = { - [sym_for_statement] = STATE(3727), - [sym_while_statement] = STATE(3727), - [sym_if_statement] = STATE(3727), - [sym_case_statement] = STATE(3727), - [sym_function_definition] = STATE(3727), - [sym_subshell] = STATE(3727), - [sym_pipeline] = STATE(3727), - [sym_list] = STATE(3727), - [sym_command] = STATE(3727), + [3256] = { + [aux_sym_concatenation_repeat1] = STATE(3721), + [sym__concat] = ACTIONS(7460), + [anon_sym_esac] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_SEMI_SEMI] = ACTIONS(740), + [anon_sym_PIPE_AMP] = ACTIONS(740), + [anon_sym_AMP_AMP] = ACTIONS(740), + [anon_sym_PIPE_PIPE] = ACTIONS(740), + [sym__special_characters] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [sym_raw_string] = ACTIONS(740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(740), + [anon_sym_BQUOTE] = ACTIONS(740), + [anon_sym_LT_LPAREN] = ACTIONS(740), + [anon_sym_GT_LPAREN] = ACTIONS(740), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(740), + [sym_word] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_LF] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(740), + }, + [3257] = { + [sym_subscript] = STATE(3731), + [sym_variable_name] = ACTIONS(7474), + [anon_sym_DOLLAR] = ACTIONS(7476), + [anon_sym_POUND] = ACTIONS(7478), + [anon_sym_DASH] = ACTIONS(7476), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7480), + [anon_sym_STAR] = ACTIONS(7476), + [anon_sym_AT] = ACTIONS(7476), + [anon_sym_QMARK] = ACTIONS(7476), + [anon_sym_0] = ACTIONS(7482), + [anon_sym__] = ACTIONS(7482), + }, + [3258] = { + [sym_for_statement] = STATE(3732), + [sym_while_statement] = STATE(3732), + [sym_if_statement] = STATE(3732), + [sym_case_statement] = STATE(3732), + [sym_function_definition] = STATE(3732), + [sym_subshell] = STATE(3732), + [sym_pipeline] = STATE(3732), + [sym_list] = STATE(3732), + [sym_command] = STATE(3732), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(3727), - [sym_variable_assignment] = STATE(3728), - [sym_declaration_command] = STATE(3727), - [sym_unset_command] = STATE(3727), + [sym_bracket_command] = STATE(3732), + [sym_variable_assignment] = STATE(3733), + [sym_declaration_command] = STATE(3732), + [sym_unset_command] = STATE(3732), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -82725,21 +82851,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [3252] = { - [sym_for_statement] = STATE(3729), - [sym_while_statement] = STATE(3729), - [sym_if_statement] = STATE(3729), - [sym_case_statement] = STATE(3729), - [sym_function_definition] = STATE(3729), - [sym_subshell] = STATE(3729), - [sym_pipeline] = STATE(3729), - [sym_list] = STATE(3729), - [sym_command] = STATE(3729), + [3259] = { + [sym_for_statement] = STATE(3734), + [sym_while_statement] = STATE(3734), + [sym_if_statement] = STATE(3734), + [sym_case_statement] = STATE(3734), + [sym_function_definition] = STATE(3734), + [sym_subshell] = STATE(3734), + [sym_pipeline] = STATE(3734), + [sym_list] = STATE(3734), + [sym_command] = STATE(3734), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(3729), - [sym_variable_assignment] = STATE(3730), - [sym_declaration_command] = STATE(3729), - [sym_unset_command] = STATE(3729), + [sym_bracket_command] = STATE(3734), + [sym_variable_assignment] = STATE(3735), + [sym_declaration_command] = STATE(3734), + [sym_unset_command] = STATE(3734), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -82786,21 +82912,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, - [3253] = { - [sym_for_statement] = STATE(3731), - [sym_while_statement] = STATE(3731), - [sym_if_statement] = STATE(3731), - [sym_case_statement] = STATE(3731), - [sym_function_definition] = STATE(3731), - [sym_subshell] = STATE(3731), - [sym_pipeline] = STATE(3731), - [sym_list] = STATE(3731), - [sym_command] = STATE(3731), + [3260] = { + [sym_for_statement] = STATE(3736), + [sym_while_statement] = STATE(3736), + [sym_if_statement] = STATE(3736), + [sym_case_statement] = STATE(3736), + [sym_function_definition] = STATE(3736), + [sym_subshell] = STATE(3736), + [sym_pipeline] = STATE(3736), + [sym_list] = STATE(3736), + [sym_command] = STATE(3736), [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(3731), - [sym_variable_assignment] = STATE(3732), - [sym_declaration_command] = STATE(3731), - [sym_unset_command] = STATE(3731), + [sym_bracket_command] = STATE(3736), + [sym_variable_assignment] = STATE(3737), + [sym_declaration_command] = STATE(3736), + [sym_unset_command] = STATE(3736), [sym_subscript] = STATE(170), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -82847,181 +82973,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [3254] = { - [anon_sym_esac] = ACTIONS(750), - [anon_sym_PIPE] = ACTIONS(750), - [anon_sym_SEMI_SEMI] = ACTIONS(750), - [anon_sym_PIPE_AMP] = ACTIONS(750), - [anon_sym_AMP_AMP] = ACTIONS(750), - [anon_sym_PIPE_PIPE] = ACTIONS(750), - [sym__special_characters] = ACTIONS(750), - [anon_sym_DQUOTE] = ACTIONS(750), - [anon_sym_DOLLAR] = ACTIONS(750), - [sym_raw_string] = ACTIONS(750), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(750), - [anon_sym_BQUOTE] = ACTIONS(750), - [anon_sym_LT_LPAREN] = ACTIONS(750), - [anon_sym_GT_LPAREN] = ACTIONS(750), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(750), - [sym_word] = ACTIONS(750), - [anon_sym_SEMI] = ACTIONS(750), - [anon_sym_LF] = ACTIONS(750), - [anon_sym_AMP] = ACTIONS(750), - }, - [3255] = { - [anon_sym_esac] = ACTIONS(738), - [anon_sym_PIPE] = 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), - [sym__special_characters] = ACTIONS(738), - [anon_sym_DQUOTE] = ACTIONS(738), - [anon_sym_DOLLAR] = ACTIONS(738), - [sym_raw_string] = 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_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(738), - [sym_word] = ACTIONS(738), - [anon_sym_SEMI] = ACTIONS(738), - [anon_sym_LF] = ACTIONS(738), - [anon_sym_AMP] = ACTIONS(738), - }, - [3256] = { - [sym_concatenation] = STATE(3255), - [sym_string] = STATE(3249), - [sym_simple_expansion] = STATE(3249), - [sym_string_expansion] = STATE(3249), - [sym_expansion] = STATE(3249), - [sym_command_substitution] = STATE(3249), - [sym_process_substitution] = STATE(3249), - [aux_sym_unset_command_repeat1] = STATE(3733), + [3261] = { [anon_sym_esac] = ACTIONS(752), [anon_sym_PIPE] = ACTIONS(752), [anon_sym_SEMI_SEMI] = ACTIONS(752), [anon_sym_PIPE_AMP] = ACTIONS(752), [anon_sym_AMP_AMP] = ACTIONS(752), [anon_sym_PIPE_PIPE] = ACTIONS(752), - [sym__special_characters] = ACTIONS(6611), - [anon_sym_DQUOTE] = ACTIONS(6613), - [anon_sym_DOLLAR] = ACTIONS(6615), - [sym_raw_string] = ACTIONS(6617), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6619), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6621), - [anon_sym_BQUOTE] = ACTIONS(6623), - [anon_sym_LT_LPAREN] = ACTIONS(6625), - [anon_sym_GT_LPAREN] = ACTIONS(6625), + [sym__special_characters] = ACTIONS(752), + [anon_sym_DQUOTE] = ACTIONS(752), + [anon_sym_DOLLAR] = ACTIONS(752), + [sym_raw_string] = ACTIONS(752), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(752), + [anon_sym_BQUOTE] = ACTIONS(752), + [anon_sym_LT_LPAREN] = ACTIONS(752), + [anon_sym_GT_LPAREN] = ACTIONS(752), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6627), - [sym_word] = ACTIONS(6617), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(752), + [sym_word] = ACTIONS(752), [anon_sym_SEMI] = ACTIONS(752), [anon_sym_LF] = ACTIONS(752), [anon_sym_AMP] = ACTIONS(752), }, - [3257] = { - [sym_string] = STATE(3734), - [sym_simple_expansion] = STATE(3734), - [sym_string_expansion] = STATE(3734), - [sym_expansion] = STATE(3734), - [sym_command_substitution] = STATE(3734), - [sym_process_substitution] = STATE(3734), - [sym__special_characters] = ACTIONS(7472), - [anon_sym_DQUOTE] = ACTIONS(5541), - [anon_sym_DOLLAR] = ACTIONS(5543), - [sym_raw_string] = ACTIONS(7474), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), - [anon_sym_BQUOTE] = ACTIONS(5551), - [anon_sym_LT_LPAREN] = ACTIONS(5553), - [anon_sym_GT_LPAREN] = ACTIONS(5553), + [3262] = { + [anon_sym_esac] = ACTIONS(740), + [anon_sym_PIPE] = ACTIONS(740), + [anon_sym_SEMI_SEMI] = ACTIONS(740), + [anon_sym_PIPE_AMP] = ACTIONS(740), + [anon_sym_AMP_AMP] = ACTIONS(740), + [anon_sym_PIPE_PIPE] = ACTIONS(740), + [sym__special_characters] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(740), + [anon_sym_DOLLAR] = ACTIONS(740), + [sym_raw_string] = ACTIONS(740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(740), + [anon_sym_BQUOTE] = ACTIONS(740), + [anon_sym_LT_LPAREN] = ACTIONS(740), + [anon_sym_GT_LPAREN] = ACTIONS(740), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(740), + [sym_word] = ACTIONS(740), + [anon_sym_SEMI] = ACTIONS(740), + [anon_sym_LF] = ACTIONS(740), + [anon_sym_AMP] = ACTIONS(740), + }, + [3263] = { + [sym_concatenation] = STATE(3262), + [sym_string] = STATE(3256), + [sym_simple_expansion] = STATE(3256), + [sym_string_expansion] = STATE(3256), + [sym_expansion] = STATE(3256), + [sym_command_substitution] = STATE(3256), + [sym_process_substitution] = STATE(3256), + [aux_sym_unset_command_repeat1] = STATE(3738), + [anon_sym_esac] = ACTIONS(754), + [anon_sym_PIPE] = ACTIONS(754), + [anon_sym_SEMI_SEMI] = ACTIONS(754), + [anon_sym_PIPE_AMP] = ACTIONS(754), + [anon_sym_AMP_AMP] = ACTIONS(754), + [anon_sym_PIPE_PIPE] = ACTIONS(754), + [sym__special_characters] = ACTIONS(6625), + [anon_sym_DQUOTE] = ACTIONS(6627), + [anon_sym_DOLLAR] = ACTIONS(6629), + [sym_raw_string] = ACTIONS(6631), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6633), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6635), + [anon_sym_BQUOTE] = ACTIONS(6637), + [anon_sym_LT_LPAREN] = ACTIONS(6639), + [anon_sym_GT_LPAREN] = ACTIONS(6639), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6641), + [sym_word] = ACTIONS(6631), + [anon_sym_SEMI] = ACTIONS(754), + [anon_sym_LF] = ACTIONS(754), + [anon_sym_AMP] = ACTIONS(754), + }, + [3264] = { + [sym_string] = STATE(3739), + [sym_simple_expansion] = STATE(3739), + [sym_string_expansion] = STATE(3739), + [sym_expansion] = STATE(3739), + [sym_command_substitution] = STATE(3739), + [sym_process_substitution] = STATE(3739), + [sym__special_characters] = ACTIONS(7484), + [anon_sym_DQUOTE] = ACTIONS(5557), + [anon_sym_DOLLAR] = ACTIONS(5559), + [sym_raw_string] = ACTIONS(7486), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), + [anon_sym_BQUOTE] = ACTIONS(5567), + [anon_sym_LT_LPAREN] = ACTIONS(5569), + [anon_sym_GT_LPAREN] = ACTIONS(5569), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7472), + [sym_word] = ACTIONS(7484), }, - [3258] = { - [aux_sym_concatenation_repeat1] = STATE(3735), - [sym_file_descriptor] = ACTIONS(788), - [sym__concat] = ACTIONS(6629), - [anon_sym_esac] = ACTIONS(790), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_EQ_TILDE] = ACTIONS(790), - [anon_sym_EQ_EQ] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(790), - [anon_sym_GT] = ACTIONS(790), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(790), - [anon_sym_AMP_GT_GT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(790), - [anon_sym_GT_AMP] = ACTIONS(790), - [anon_sym_LT_LT] = ACTIONS(790), - [anon_sym_LT_LT_DASH] = ACTIONS(790), - [anon_sym_LT_LT_LT] = ACTIONS(790), - [sym__special_characters] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(790), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), + [3265] = { + [aux_sym_concatenation_repeat1] = STATE(3740), + [sym_file_descriptor] = ACTIONS(790), + [sym__concat] = ACTIONS(6643), + [anon_sym_esac] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_EQ_TILDE] = ACTIONS(792), + [anon_sym_EQ_EQ] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_AMP_GT] = ACTIONS(792), + [anon_sym_AMP_GT_GT] = ACTIONS(792), + [anon_sym_LT_AMP] = ACTIONS(792), + [anon_sym_GT_AMP] = ACTIONS(792), + [anon_sym_LT_LT] = ACTIONS(792), + [anon_sym_LT_LT_DASH] = ACTIONS(792), + [anon_sym_LT_LT_LT] = ACTIONS(792), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), + [sym_word] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), }, - [3259] = { - [sym_file_descriptor] = ACTIONS(792), - [sym__concat] = ACTIONS(792), - [anon_sym_esac] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_EQ_TILDE] = ACTIONS(794), - [anon_sym_EQ_EQ] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(794), - [anon_sym_GT] = ACTIONS(794), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_AMP_GT] = ACTIONS(794), - [anon_sym_AMP_GT_GT] = ACTIONS(794), - [anon_sym_LT_AMP] = ACTIONS(794), - [anon_sym_GT_AMP] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(794), - [anon_sym_LT_LT_DASH] = ACTIONS(794), - [anon_sym_LT_LT_LT] = ACTIONS(794), - [sym__special_characters] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(794), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), + [3266] = { + [sym_file_descriptor] = ACTIONS(794), + [sym__concat] = ACTIONS(794), + [anon_sym_esac] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [anon_sym_EQ_TILDE] = ACTIONS(796), + [anon_sym_EQ_EQ] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(796), + [anon_sym_GT_GT] = ACTIONS(796), + [anon_sym_AMP_GT] = ACTIONS(796), + [anon_sym_AMP_GT_GT] = ACTIONS(796), + [anon_sym_LT_AMP] = ACTIONS(796), + [anon_sym_GT_AMP] = ACTIONS(796), + [anon_sym_LT_LT] = ACTIONS(796), + [anon_sym_LT_LT_DASH] = ACTIONS(796), + [anon_sym_LT_LT_LT] = ACTIONS(796), + [sym__special_characters] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(796), + [sym_raw_string] = ACTIONS(796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(796), + [anon_sym_GT_LPAREN] = ACTIONS(796), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), + [sym_word] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), }, - [3260] = { + [3267] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(7476), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(7488), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -83029,307 +83155,238 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [3261] = { - [sym_file_descriptor] = ACTIONS(824), - [sym__concat] = ACTIONS(824), - [anon_sym_esac] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_EQ_TILDE] = ACTIONS(826), - [anon_sym_EQ_EQ] = ACTIONS(826), - [anon_sym_LT] = ACTIONS(826), - [anon_sym_GT] = ACTIONS(826), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_AMP_GT] = ACTIONS(826), - [anon_sym_AMP_GT_GT] = ACTIONS(826), - [anon_sym_LT_AMP] = ACTIONS(826), - [anon_sym_GT_AMP] = ACTIONS(826), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_LT_LT_DASH] = ACTIONS(826), - [anon_sym_LT_LT_LT] = ACTIONS(826), - [sym__special_characters] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(826), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), - }, - [3262] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [anon_sym_esac] = ACTIONS(830), - [anon_sym_PIPE] = 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), - [anon_sym_EQ_TILDE] = ACTIONS(830), - [anon_sym_EQ_EQ] = ACTIONS(830), - [anon_sym_LT] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(830), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_AMP_GT] = ACTIONS(830), - [anon_sym_AMP_GT_GT] = ACTIONS(830), - [anon_sym_LT_AMP] = ACTIONS(830), - [anon_sym_GT_AMP] = ACTIONS(830), - [anon_sym_LT_LT] = ACTIONS(830), - [anon_sym_LT_LT_DASH] = ACTIONS(830), - [anon_sym_LT_LT_LT] = ACTIONS(830), - [sym__special_characters] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(830), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), - }, - [3263] = { - [sym_file_descriptor] = ACTIONS(832), - [sym__concat] = ACTIONS(832), - [anon_sym_esac] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_EQ_TILDE] = ACTIONS(834), - [anon_sym_EQ_EQ] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_AMP_GT] = ACTIONS(834), - [anon_sym_AMP_GT_GT] = ACTIONS(834), - [anon_sym_LT_AMP] = ACTIONS(834), - [anon_sym_GT_AMP] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_LT_LT_DASH] = ACTIONS(834), - [anon_sym_LT_LT_LT] = ACTIONS(834), - [sym__special_characters] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(834), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - }, - [3264] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(7478), - [sym_comment] = ACTIONS(56), - }, - [3265] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3740), - [anon_sym_RBRACE] = ACTIONS(7480), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7482), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3266] = { - [sym_subscript] = STATE(3744), - [sym_variable_name] = ACTIONS(7484), - [anon_sym_DOLLAR] = ACTIONS(7486), - [anon_sym_DASH] = ACTIONS(7486), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7488), - [anon_sym_STAR] = ACTIONS(7486), - [anon_sym_AT] = ACTIONS(7486), - [anon_sym_QMARK] = ACTIONS(7486), - [anon_sym_0] = ACTIONS(7490), - [anon_sym__] = ACTIONS(7490), - }, - [3267] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3747), - [anon_sym_RBRACE] = ACTIONS(7492), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7494), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [3268] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3750), - [anon_sym_RBRACE] = ACTIONS(7496), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7498), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(826), + [sym__concat] = ACTIONS(826), + [anon_sym_esac] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_EQ_TILDE] = ACTIONS(828), + [anon_sym_EQ_EQ] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(828), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(828), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [anon_sym_LT_LT] = ACTIONS(828), + [anon_sym_LT_LT_DASH] = ACTIONS(828), + [anon_sym_LT_LT_LT] = ACTIONS(828), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(828), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), }, [3269] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(7500), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(830), + [sym__concat] = ACTIONS(830), + [anon_sym_esac] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_EQ_TILDE] = ACTIONS(832), + [anon_sym_EQ_EQ] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_AMP_GT] = ACTIONS(832), + [anon_sym_AMP_GT_GT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(832), + [anon_sym_GT_AMP] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(832), + [anon_sym_LT_LT_DASH] = ACTIONS(832), + [anon_sym_LT_LT_LT] = ACTIONS(832), + [sym__special_characters] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), }, [3270] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(7500), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [anon_sym_esac] = ACTIONS(836), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [anon_sym_EQ_TILDE] = ACTIONS(836), + [anon_sym_EQ_EQ] = ACTIONS(836), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_AMP_GT] = ACTIONS(836), + [anon_sym_AMP_GT_GT] = ACTIONS(836), + [anon_sym_LT_AMP] = ACTIONS(836), + [anon_sym_GT_AMP] = ACTIONS(836), + [anon_sym_LT_LT] = ACTIONS(836), + [anon_sym_LT_LT_DASH] = ACTIONS(836), + [anon_sym_LT_LT_LT] = ACTIONS(836), + [sym__special_characters] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [sym_raw_string] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LT_LPAREN] = ACTIONS(836), + [anon_sym_GT_LPAREN] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), }, [3271] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(7500), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(7490), [sym_comment] = ACTIONS(56), }, [3272] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(7500), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3745), + [anon_sym_RBRACE] = ACTIONS(7492), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7494), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3273] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(7502), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [sym_subscript] = STATE(3749), + [sym_variable_name] = ACTIONS(7496), + [anon_sym_DOLLAR] = ACTIONS(7498), + [anon_sym_DASH] = ACTIONS(7498), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7500), + [anon_sym_STAR] = ACTIONS(7498), + [anon_sym_AT] = ACTIONS(7498), + [anon_sym_QMARK] = ACTIONS(7498), + [anon_sym_0] = ACTIONS(7502), + [anon_sym__] = ACTIONS(7502), }, [3274] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3752), + [anon_sym_RBRACE] = ACTIONS(7504), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7506), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3275] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3755), + [anon_sym_RBRACE] = ACTIONS(7508), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7510), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3276] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(7512), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [3277] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(7502), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(7512), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -83349,772 +83406,568 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(384), }, - [3275] = { - [anon_sym_RPAREN] = ACTIONS(7504), - [sym_comment] = ACTIONS(56), - }, - [3276] = { - [sym_for_statement] = STATE(601), - [sym_while_statement] = STATE(601), - [sym_if_statement] = STATE(601), - [sym_case_statement] = STATE(601), - [sym_function_definition] = STATE(601), - [sym_subshell] = STATE(601), - [sym_pipeline] = STATE(601), - [sym_list] = STATE(601), - [sym_command] = STATE(601), - [sym_command_name] = STATE(2653), - [sym_bracket_command] = STATE(601), - [sym_variable_assignment] = STATE(3754), - [sym_declaration_command] = STATE(601), - [sym_unset_command] = STATE(601), - [sym_subscript] = STATE(2655), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2656), - [sym_string] = STATE(2645), - [sym_simple_expansion] = STATE(2645), - [sym_string_expansion] = STATE(2645), - [sym_expansion] = STATE(2645), - [sym_command_substitution] = STATE(2645), - [sym_process_substitution] = STATE(2645), - [aux_sym_command_repeat1] = STATE(2658), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5521), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5523), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(5529), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), - [anon_sym_declare] = ACTIONS(5535), - [anon_sym_typeset] = ACTIONS(5535), - [anon_sym_export] = ACTIONS(5535), - [anon_sym_readonly] = ACTIONS(5535), - [anon_sym_local] = ACTIONS(5535), - [anon_sym_unset] = ACTIONS(5537), - [anon_sym_unsetenv] = ACTIONS(5537), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5539), - [anon_sym_DQUOTE] = ACTIONS(5541), - [anon_sym_DOLLAR] = ACTIONS(5543), - [sym_raw_string] = ACTIONS(5545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), - [anon_sym_BQUOTE] = ACTIONS(5551), - [anon_sym_LT_LPAREN] = ACTIONS(5553), - [anon_sym_GT_LPAREN] = ACTIONS(5553), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5555), - }, - [3277] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_esac] = ACTIONS(7506), - [anon_sym_SEMI_SEMI] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(7508), - [anon_sym_DQUOTE] = ACTIONS(7510), - [anon_sym_DOLLAR] = ACTIONS(7512), - [sym_raw_string] = ACTIONS(7510), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7510), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7510), - [anon_sym_BQUOTE] = ACTIONS(7510), - [anon_sym_LT_LPAREN] = ACTIONS(7510), - [anon_sym_GT_LPAREN] = ACTIONS(7510), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7508), - }, [3278] = { - [sym_for_statement] = STATE(3755), - [sym_while_statement] = STATE(3755), - [sym_if_statement] = STATE(3755), - [sym_case_statement] = STATE(3755), - [sym_function_definition] = STATE(3755), - [sym_subshell] = STATE(3755), - [sym_pipeline] = STATE(3755), - [sym_list] = STATE(3755), - [sym_command] = STATE(3755), - [sym_command_name] = STATE(2653), - [sym_bracket_command] = STATE(3755), - [sym_variable_assignment] = STATE(3756), - [sym_declaration_command] = STATE(3755), - [sym_unset_command] = STATE(3755), - [sym_subscript] = STATE(2655), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2656), - [sym_string] = STATE(2645), - [sym_simple_expansion] = STATE(2645), - [sym_string_expansion] = STATE(2645), - [sym_expansion] = STATE(2645), - [sym_command_substitution] = STATE(2645), - [sym_process_substitution] = STATE(2645), - [aux_sym_command_repeat1] = STATE(2658), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5521), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5523), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(5529), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), - [anon_sym_declare] = ACTIONS(5535), - [anon_sym_typeset] = ACTIONS(5535), - [anon_sym_export] = ACTIONS(5535), - [anon_sym_readonly] = ACTIONS(5535), - [anon_sym_local] = ACTIONS(5535), - [anon_sym_unset] = ACTIONS(5537), - [anon_sym_unsetenv] = ACTIONS(5537), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5539), - [anon_sym_DQUOTE] = ACTIONS(5541), - [anon_sym_DOLLAR] = ACTIONS(5543), - [sym_raw_string] = ACTIONS(5545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), - [anon_sym_BQUOTE] = ACTIONS(5551), - [anon_sym_LT_LPAREN] = ACTIONS(5553), - [anon_sym_GT_LPAREN] = ACTIONS(5553), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(7512), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5555), }, [3279] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_esac] = ACTIONS(1102), - [anon_sym_SEMI_SEMI] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(1104), - [anon_sym_DQUOTE] = ACTIONS(1100), - [anon_sym_DOLLAR] = ACTIONS(1102), - [sym_raw_string] = ACTIONS(1100), - [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_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(7512), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1104), + [sym_word] = ACTIONS(384), }, [3280] = { - [anon_sym_LT] = ACTIONS(7514), - [anon_sym_GT] = ACTIONS(7514), - [anon_sym_GT_GT] = ACTIONS(7516), - [anon_sym_AMP_GT] = ACTIONS(7514), - [anon_sym_AMP_GT_GT] = ACTIONS(7516), - [anon_sym_LT_AMP] = ACTIONS(7516), - [anon_sym_GT_AMP] = ACTIONS(7516), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(7514), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, [3281] = { - [sym_concatenation] = STATE(3760), - [sym_string] = STATE(3759), - [sym_simple_expansion] = STATE(3759), - [sym_string_expansion] = STATE(3759), - [sym_expansion] = STATE(3759), - [sym_command_substitution] = STATE(3759), - [sym_process_substitution] = STATE(3759), - [sym__special_characters] = ACTIONS(7518), - [anon_sym_DQUOTE] = ACTIONS(6673), - [anon_sym_DOLLAR] = ACTIONS(6675), - [sym_raw_string] = ACTIONS(7520), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6681), - [anon_sym_BQUOTE] = ACTIONS(6683), - [anon_sym_LT_LPAREN] = ACTIONS(6685), - [anon_sym_GT_LPAREN] = ACTIONS(6685), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7520), - [sym_regex] = ACTIONS(7522), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(7514), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [3282] = { - [sym_concatenation] = STATE(617), + [anon_sym_RPAREN] = ACTIONS(7516), + [sym_comment] = ACTIONS(56), + }, + [3283] = { + [sym_for_statement] = STATE(602), + [sym_while_statement] = STATE(602), + [sym_if_statement] = STATE(602), + [sym_case_statement] = STATE(602), + [sym_function_definition] = STATE(602), + [sym_subshell] = STATE(602), + [sym_pipeline] = STATE(602), + [sym_list] = STATE(602), + [sym_command] = STATE(602), + [sym_command_name] = STATE(2661), + [sym_bracket_command] = STATE(602), + [sym_variable_assignment] = STATE(3759), + [sym_declaration_command] = STATE(602), + [sym_unset_command] = STATE(602), + [sym_subscript] = STATE(2663), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(2664), + [sym_string] = STATE(2653), + [sym_simple_expansion] = STATE(2653), + [sym_string_expansion] = STATE(2653), + [sym_expansion] = STATE(2653), + [sym_command_substitution] = STATE(2653), + [sym_process_substitution] = STATE(2653), + [aux_sym_command_repeat1] = STATE(2666), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(5537), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(5539), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(5547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), + [anon_sym_declare] = ACTIONS(5551), + [anon_sym_typeset] = ACTIONS(5551), + [anon_sym_export] = ACTIONS(5551), + [anon_sym_readonly] = ACTIONS(5551), + [anon_sym_local] = ACTIONS(5551), + [anon_sym_unset] = ACTIONS(5553), + [anon_sym_unsetenv] = ACTIONS(5553), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(5555), + [anon_sym_DQUOTE] = ACTIONS(5557), + [anon_sym_DOLLAR] = ACTIONS(5559), + [sym_raw_string] = ACTIONS(5561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), + [anon_sym_BQUOTE] = ACTIONS(5567), + [anon_sym_LT_LPAREN] = ACTIONS(5569), + [anon_sym_GT_LPAREN] = ACTIONS(5569), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5571), + }, + [3284] = { + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_esac] = ACTIONS(7518), + [anon_sym_SEMI_SEMI] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(7520), + [anon_sym_DQUOTE] = ACTIONS(7522), + [anon_sym_DOLLAR] = ACTIONS(7524), + [sym_raw_string] = ACTIONS(7522), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7522), + [anon_sym_BQUOTE] = ACTIONS(7522), + [anon_sym_LT_LPAREN] = ACTIONS(7522), + [anon_sym_GT_LPAREN] = ACTIONS(7522), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7520), + }, + [3285] = { + [sym_for_statement] = STATE(3760), + [sym_while_statement] = STATE(3760), + [sym_if_statement] = STATE(3760), + [sym_case_statement] = STATE(3760), + [sym_function_definition] = STATE(3760), + [sym_subshell] = STATE(3760), + [sym_pipeline] = STATE(3760), + [sym_list] = STATE(3760), + [sym_command] = STATE(3760), + [sym_command_name] = STATE(2661), + [sym_bracket_command] = STATE(3760), + [sym_variable_assignment] = STATE(3761), + [sym_declaration_command] = STATE(3760), + [sym_unset_command] = STATE(3760), + [sym_subscript] = STATE(2663), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(2664), + [sym_string] = STATE(2653), + [sym_simple_expansion] = STATE(2653), + [sym_string_expansion] = STATE(2653), + [sym_expansion] = STATE(2653), + [sym_command_substitution] = STATE(2653), + [sym_process_substitution] = STATE(2653), + [aux_sym_command_repeat1] = STATE(2666), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(5537), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(5539), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_function] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(5547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), + [anon_sym_declare] = ACTIONS(5551), + [anon_sym_typeset] = ACTIONS(5551), + [anon_sym_export] = ACTIONS(5551), + [anon_sym_readonly] = ACTIONS(5551), + [anon_sym_local] = ACTIONS(5551), + [anon_sym_unset] = ACTIONS(5553), + [anon_sym_unsetenv] = ACTIONS(5553), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(5555), + [anon_sym_DQUOTE] = ACTIONS(5557), + [anon_sym_DOLLAR] = ACTIONS(5559), + [sym_raw_string] = ACTIONS(5561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), + [anon_sym_BQUOTE] = ACTIONS(5567), + [anon_sym_LT_LPAREN] = ACTIONS(5569), + [anon_sym_GT_LPAREN] = ACTIONS(5569), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5571), + }, + [3286] = { + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_esac] = ACTIONS(1104), + [anon_sym_SEMI_SEMI] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(1106), + [anon_sym_DQUOTE] = ACTIONS(1102), + [anon_sym_DOLLAR] = ACTIONS(1104), + [sym_raw_string] = ACTIONS(1102), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1102), + [anon_sym_BQUOTE] = ACTIONS(1102), + [anon_sym_LT_LPAREN] = ACTIONS(1102), + [anon_sym_GT_LPAREN] = ACTIONS(1102), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1106), + }, + [3287] = { + [anon_sym_LT] = ACTIONS(7526), + [anon_sym_GT] = ACTIONS(7526), + [anon_sym_GT_GT] = ACTIONS(7528), + [anon_sym_AMP_GT] = ACTIONS(7526), + [anon_sym_AMP_GT_GT] = ACTIONS(7528), + [anon_sym_LT_AMP] = ACTIONS(7528), + [anon_sym_GT_AMP] = ACTIONS(7528), + [sym_comment] = ACTIONS(56), + }, + [3288] = { + [sym_concatenation] = STATE(3765), [sym_string] = STATE(3764), [sym_simple_expansion] = STATE(3764), [sym_string_expansion] = STATE(3764), [sym_expansion] = STATE(3764), [sym_command_substitution] = STATE(3764), [sym_process_substitution] = STATE(3764), - [sym__special_characters] = ACTIONS(7524), - [anon_sym_DQUOTE] = ACTIONS(7526), - [anon_sym_DOLLAR] = ACTIONS(7528), - [sym_raw_string] = ACTIONS(7530), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7532), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7534), - [anon_sym_BQUOTE] = ACTIONS(7536), - [anon_sym_LT_LPAREN] = ACTIONS(7538), - [anon_sym_GT_LPAREN] = ACTIONS(7538), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7540), - }, - [3283] = { - [sym_concatenation] = STATE(623), - [sym_string] = STATE(3770), - [sym_simple_expansion] = STATE(3770), - [sym_string_expansion] = STATE(3770), - [sym_expansion] = STATE(3770), - [sym_command_substitution] = STATE(3770), - [sym_process_substitution] = STATE(3770), - [sym__special_characters] = ACTIONS(7542), - [anon_sym_DQUOTE] = ACTIONS(7526), - [anon_sym_DOLLAR] = ACTIONS(7528), - [sym_raw_string] = ACTIONS(7544), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7532), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7534), - [anon_sym_BQUOTE] = ACTIONS(7536), - [anon_sym_LT_LPAREN] = ACTIONS(7538), - [anon_sym_GT_LPAREN] = ACTIONS(7538), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7546), - }, - [3284] = { - [aux_sym_concatenation_repeat1] = STATE(3258), - [sym_file_descriptor] = ACTIONS(606), - [sym__concat] = ACTIONS(6629), - [anon_sym_esac] = ACTIONS(608), - [anon_sym_PIPE] = ACTIONS(608), - [anon_sym_SEMI_SEMI] = ACTIONS(608), - [anon_sym_PIPE_AMP] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(608), - [anon_sym_PIPE_PIPE] = ACTIONS(608), - [anon_sym_EQ_TILDE] = ACTIONS(608), - [anon_sym_EQ_EQ] = ACTIONS(608), - [anon_sym_LT] = ACTIONS(608), - [anon_sym_GT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(608), - [anon_sym_AMP_GT] = ACTIONS(608), - [anon_sym_AMP_GT_GT] = ACTIONS(608), - [anon_sym_LT_AMP] = ACTIONS(608), - [anon_sym_GT_AMP] = ACTIONS(608), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_LT_LT_DASH] = ACTIONS(608), - [anon_sym_LT_LT_LT] = ACTIONS(608), - [sym__special_characters] = ACTIONS(608), - [anon_sym_DQUOTE] = ACTIONS(608), - [anon_sym_DOLLAR] = ACTIONS(608), - [sym_raw_string] = ACTIONS(608), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(608), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(608), - [anon_sym_BQUOTE] = ACTIONS(608), - [anon_sym_LT_LPAREN] = ACTIONS(608), - [anon_sym_GT_LPAREN] = ACTIONS(608), + [sym__special_characters] = ACTIONS(7530), + [anon_sym_DQUOTE] = ACTIONS(6687), + [anon_sym_DOLLAR] = ACTIONS(6689), + [sym_raw_string] = ACTIONS(7532), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6695), + [anon_sym_BQUOTE] = ACTIONS(6697), + [anon_sym_LT_LPAREN] = ACTIONS(6699), + [anon_sym_GT_LPAREN] = ACTIONS(6699), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(608), - [anon_sym_SEMI] = ACTIONS(608), - [anon_sym_LF] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(608), - }, - [3285] = { - [aux_sym_concatenation_repeat1] = STATE(3258), - [sym_file_descriptor] = ACTIONS(622), - [sym__concat] = ACTIONS(6629), - [anon_sym_esac] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(624), - [anon_sym_SEMI_SEMI] = ACTIONS(624), - [anon_sym_PIPE_AMP] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_EQ_TILDE] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(624), - [anon_sym_GT] = ACTIONS(624), - [anon_sym_GT_GT] = ACTIONS(624), - [anon_sym_AMP_GT] = ACTIONS(624), - [anon_sym_AMP_GT_GT] = ACTIONS(624), - [anon_sym_LT_AMP] = ACTIONS(624), - [anon_sym_GT_AMP] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(624), - [anon_sym_LT_LT_DASH] = ACTIONS(624), - [anon_sym_LT_LT_LT] = ACTIONS(624), - [sym__special_characters] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(624), - [sym_raw_string] = ACTIONS(624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(624), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(624), - [anon_sym_SEMI] = ACTIONS(624), - [anon_sym_LF] = ACTIONS(624), - [anon_sym_AMP] = ACTIONS(624), - }, - [3286] = { - [sym_file_descriptor] = ACTIONS(622), - [anon_sym_esac] = ACTIONS(624), - [anon_sym_PIPE] = ACTIONS(624), - [anon_sym_SEMI_SEMI] = ACTIONS(624), - [anon_sym_PIPE_AMP] = ACTIONS(624), - [anon_sym_AMP_AMP] = ACTIONS(624), - [anon_sym_PIPE_PIPE] = ACTIONS(624), - [anon_sym_EQ_TILDE] = ACTIONS(624), - [anon_sym_EQ_EQ] = ACTIONS(624), - [anon_sym_LT] = ACTIONS(624), - [anon_sym_GT] = ACTIONS(624), - [anon_sym_GT_GT] = ACTIONS(624), - [anon_sym_AMP_GT] = ACTIONS(624), - [anon_sym_AMP_GT_GT] = ACTIONS(624), - [anon_sym_LT_AMP] = ACTIONS(624), - [anon_sym_GT_AMP] = ACTIONS(624), - [anon_sym_LT_LT] = ACTIONS(624), - [anon_sym_LT_LT_DASH] = ACTIONS(624), - [anon_sym_LT_LT_LT] = ACTIONS(624), - [sym__special_characters] = ACTIONS(624), - [anon_sym_DQUOTE] = ACTIONS(624), - [anon_sym_DOLLAR] = ACTIONS(624), - [sym_raw_string] = ACTIONS(624), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(624), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(624), - [anon_sym_BQUOTE] = ACTIONS(624), - [anon_sym_LT_LPAREN] = ACTIONS(624), - [anon_sym_GT_LPAREN] = ACTIONS(624), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(624), - [anon_sym_SEMI] = ACTIONS(624), - [anon_sym_LF] = ACTIONS(624), - [anon_sym_AMP] = ACTIONS(624), - }, - [3287] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(3771), - [sym_file_descriptor] = ACTIONS(6663), - [anon_sym_esac] = ACTIONS(1148), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_SEMI_SEMI] = ACTIONS(1148), - [anon_sym_PIPE_AMP] = ACTIONS(1148), - [anon_sym_AMP_AMP] = ACTIONS(1148), - [anon_sym_PIPE_PIPE] = ACTIONS(1148), - [anon_sym_LT] = ACTIONS(6667), - [anon_sym_GT] = ACTIONS(6667), - [anon_sym_GT_GT] = ACTIONS(6667), - [anon_sym_AMP_GT] = ACTIONS(6667), - [anon_sym_AMP_GT_GT] = ACTIONS(6667), - [anon_sym_LT_AMP] = ACTIONS(6667), - [anon_sym_GT_AMP] = ACTIONS(6667), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6669), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), - }, - [3288] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(3286), - [sym_string] = STATE(3285), - [sym_simple_expansion] = STATE(3285), - [sym_string_expansion] = STATE(3285), - [sym_expansion] = STATE(3285), - [sym_command_substitution] = STATE(3285), - [sym_process_substitution] = STATE(3285), - [aux_sym_while_statement_repeat1] = STATE(3772), - [aux_sym_command_repeat2] = STATE(3773), - [sym_file_descriptor] = ACTIONS(6663), - [anon_sym_esac] = ACTIONS(1148), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_SEMI_SEMI] = ACTIONS(1148), - [anon_sym_PIPE_AMP] = ACTIONS(1148), - [anon_sym_AMP_AMP] = ACTIONS(1148), - [anon_sym_PIPE_PIPE] = ACTIONS(1148), - [anon_sym_EQ_TILDE] = ACTIONS(6665), - [anon_sym_EQ_EQ] = ACTIONS(6665), - [anon_sym_LT] = ACTIONS(6667), - [anon_sym_GT] = ACTIONS(6667), - [anon_sym_GT_GT] = ACTIONS(6667), - [anon_sym_AMP_GT] = ACTIONS(6667), - [anon_sym_AMP_GT_GT] = ACTIONS(6667), - [anon_sym_LT_AMP] = ACTIONS(6667), - [anon_sym_GT_AMP] = ACTIONS(6667), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6669), - [sym__special_characters] = ACTIONS(6671), - [anon_sym_DQUOTE] = ACTIONS(6673), - [anon_sym_DOLLAR] = ACTIONS(6675), - [sym_raw_string] = ACTIONS(6677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6681), - [anon_sym_BQUOTE] = ACTIONS(6683), - [anon_sym_LT_LPAREN] = ACTIONS(6685), - [anon_sym_GT_LPAREN] = ACTIONS(6685), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6677), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), + [sym_word] = ACTIONS(7532), + [sym_regex] = ACTIONS(7534), }, [3289] = { - [anon_sym_esac] = ACTIONS(7506), - [sym__special_characters] = ACTIONS(7512), - [anon_sym_DQUOTE] = ACTIONS(7510), - [anon_sym_DOLLAR] = ACTIONS(7512), - [sym_raw_string] = ACTIONS(7510), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7510), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7510), - [anon_sym_BQUOTE] = ACTIONS(7510), - [anon_sym_LT_LPAREN] = ACTIONS(7510), - [anon_sym_GT_LPAREN] = ACTIONS(7510), + [sym_concatenation] = STATE(618), + [sym_string] = STATE(3769), + [sym_simple_expansion] = STATE(3769), + [sym_string_expansion] = STATE(3769), + [sym_expansion] = STATE(3769), + [sym_command_substitution] = STATE(3769), + [sym_process_substitution] = STATE(3769), + [sym__special_characters] = ACTIONS(7536), + [anon_sym_DQUOTE] = ACTIONS(7538), + [anon_sym_DOLLAR] = ACTIONS(7540), + [sym_raw_string] = ACTIONS(7542), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7544), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7546), + [anon_sym_BQUOTE] = ACTIONS(7548), + [anon_sym_LT_LPAREN] = ACTIONS(7550), + [anon_sym_GT_LPAREN] = ACTIONS(7550), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7508), + [sym_word] = ACTIONS(7552), }, [3290] = { - [anon_sym_esac] = ACTIONS(7548), - [anon_sym_PIPE] = ACTIONS(6655), - [anon_sym_SEMI_SEMI] = ACTIONS(7550), - [anon_sym_PIPE_AMP] = ACTIONS(6655), - [anon_sym_AMP_AMP] = ACTIONS(6659), - [anon_sym_PIPE_PIPE] = ACTIONS(6659), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6661), - [anon_sym_LF] = ACTIONS(6661), - [anon_sym_AMP] = ACTIONS(6661), + [sym_concatenation] = STATE(624), + [sym_string] = STATE(3775), + [sym_simple_expansion] = STATE(3775), + [sym_string_expansion] = STATE(3775), + [sym_expansion] = STATE(3775), + [sym_command_substitution] = STATE(3775), + [sym_process_substitution] = STATE(3775), + [sym__special_characters] = ACTIONS(7554), + [anon_sym_DQUOTE] = ACTIONS(7538), + [anon_sym_DOLLAR] = ACTIONS(7540), + [sym_raw_string] = ACTIONS(7556), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7544), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7546), + [anon_sym_BQUOTE] = ACTIONS(7548), + [anon_sym_LT_LPAREN] = ACTIONS(7550), + [anon_sym_GT_LPAREN] = ACTIONS(7550), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7558), }, [3291] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_esac] = ACTIONS(7548), - [anon_sym_PIPE] = ACTIONS(6655), - [anon_sym_SEMI_SEMI] = ACTIONS(7550), - [anon_sym_PIPE_AMP] = ACTIONS(6655), - [anon_sym_AMP_AMP] = ACTIONS(6659), - [anon_sym_PIPE_PIPE] = ACTIONS(6659), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), + [aux_sym_concatenation_repeat1] = STATE(3265), + [sym_file_descriptor] = ACTIONS(608), + [sym__concat] = ACTIONS(6643), + [anon_sym_esac] = ACTIONS(610), + [anon_sym_PIPE] = ACTIONS(610), + [anon_sym_SEMI_SEMI] = ACTIONS(610), + [anon_sym_PIPE_AMP] = ACTIONS(610), + [anon_sym_AMP_AMP] = ACTIONS(610), + [anon_sym_PIPE_PIPE] = ACTIONS(610), + [anon_sym_EQ_TILDE] = ACTIONS(610), + [anon_sym_EQ_EQ] = ACTIONS(610), + [anon_sym_LT] = ACTIONS(610), + [anon_sym_GT] = ACTIONS(610), + [anon_sym_GT_GT] = ACTIONS(610), + [anon_sym_AMP_GT] = ACTIONS(610), + [anon_sym_AMP_GT_GT] = ACTIONS(610), + [anon_sym_LT_AMP] = ACTIONS(610), + [anon_sym_GT_AMP] = ACTIONS(610), + [anon_sym_LT_LT] = ACTIONS(610), + [anon_sym_LT_LT_DASH] = ACTIONS(610), + [anon_sym_LT_LT_LT] = ACTIONS(610), + [sym__special_characters] = ACTIONS(610), + [anon_sym_DQUOTE] = ACTIONS(610), + [anon_sym_DOLLAR] = ACTIONS(610), + [sym_raw_string] = ACTIONS(610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(610), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(610), + [anon_sym_BQUOTE] = ACTIONS(610), + [anon_sym_LT_LPAREN] = ACTIONS(610), + [anon_sym_GT_LPAREN] = ACTIONS(610), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(6661), - [anon_sym_LF] = ACTIONS(6661), - [anon_sym_AMP] = ACTIONS(6661), + [sym_word] = ACTIONS(610), + [anon_sym_SEMI] = ACTIONS(610), + [anon_sym_LF] = ACTIONS(610), + [anon_sym_AMP] = ACTIONS(610), }, [3292] = { - [sym__terminated_statement] = STATE(2651), - [sym_for_statement] = STATE(3775), - [sym_while_statement] = STATE(3775), - [sym_if_statement] = STATE(3775), - [sym_case_statement] = STATE(3775), - [sym_function_definition] = STATE(3775), - [sym_subshell] = STATE(3775), - [sym_pipeline] = STATE(3775), - [sym_list] = STATE(3775), - [sym_command] = STATE(3775), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(3775), - [sym_variable_assignment] = STATE(3776), - [sym_declaration_command] = STATE(3775), - [sym_unset_command] = STATE(3775), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(3292), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1150), - [sym_variable_name] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_case] = ACTIONS(1167), - [anon_sym_esac] = ACTIONS(4299), - [anon_sym_SEMI_SEMI] = ACTIONS(1156), - [anon_sym_function] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_typeset] = ACTIONS(1182), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_local] = ACTIONS(1182), - [anon_sym_unset] = ACTIONS(1185), - [anon_sym_unsetenv] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1191), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1191), - [anon_sym_LT_AMP] = ACTIONS(1191), - [anon_sym_GT_AMP] = ACTIONS(1191), - [sym__special_characters] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_raw_string] = ACTIONS(1203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), - [anon_sym_BQUOTE] = ACTIONS(1212), - [anon_sym_LT_LPAREN] = ACTIONS(1215), - [anon_sym_GT_LPAREN] = ACTIONS(1215), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1218), + [aux_sym_concatenation_repeat1] = STATE(3265), + [sym_file_descriptor] = ACTIONS(624), + [sym__concat] = ACTIONS(6643), + [anon_sym_esac] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_SEMI_SEMI] = ACTIONS(626), + [anon_sym_PIPE_AMP] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(626), + [anon_sym_PIPE_PIPE] = ACTIONS(626), + [anon_sym_EQ_TILDE] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(626), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_LT_LT_DASH] = ACTIONS(626), + [anon_sym_LT_LT_LT] = ACTIONS(626), + [sym__special_characters] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(626), + [sym_raw_string] = ACTIONS(626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(626), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_LT_LPAREN] = ACTIONS(626), + [anon_sym_GT_LPAREN] = ACTIONS(626), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_LF] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), }, [3293] = { + [sym_file_descriptor] = ACTIONS(624), + [anon_sym_esac] = ACTIONS(626), + [anon_sym_PIPE] = ACTIONS(626), + [anon_sym_SEMI_SEMI] = ACTIONS(626), + [anon_sym_PIPE_AMP] = ACTIONS(626), + [anon_sym_AMP_AMP] = ACTIONS(626), + [anon_sym_PIPE_PIPE] = ACTIONS(626), + [anon_sym_EQ_TILDE] = ACTIONS(626), + [anon_sym_EQ_EQ] = ACTIONS(626), + [anon_sym_LT] = ACTIONS(626), + [anon_sym_GT] = ACTIONS(626), + [anon_sym_GT_GT] = ACTIONS(626), + [anon_sym_AMP_GT] = ACTIONS(626), + [anon_sym_AMP_GT_GT] = ACTIONS(626), + [anon_sym_LT_AMP] = ACTIONS(626), + [anon_sym_GT_AMP] = ACTIONS(626), + [anon_sym_LT_LT] = ACTIONS(626), + [anon_sym_LT_LT_DASH] = ACTIONS(626), + [anon_sym_LT_LT_LT] = ACTIONS(626), + [sym__special_characters] = ACTIONS(626), + [anon_sym_DQUOTE] = ACTIONS(626), + [anon_sym_DOLLAR] = ACTIONS(626), + [sym_raw_string] = ACTIONS(626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(626), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(626), + [anon_sym_BQUOTE] = ACTIONS(626), + [anon_sym_LT_LPAREN] = ACTIONS(626), + [anon_sym_GT_LPAREN] = ACTIONS(626), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(626), + [anon_sym_LF] = ACTIONS(626), + [anon_sym_AMP] = ACTIONS(626), + }, + [3294] = { [sym_file_redirect] = STATE(207), [sym_heredoc_redirect] = STATE(207), [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(3286), - [sym_string] = STATE(3285), - [sym_simple_expansion] = STATE(3285), - [sym_string_expansion] = STATE(3285), - [sym_expansion] = STATE(3285), - [sym_command_substitution] = STATE(3285), - [sym_process_substitution] = STATE(3285), - [aux_sym_while_statement_repeat1] = STATE(3772), - [aux_sym_command_repeat2] = STATE(3777), - [sym_file_descriptor] = ACTIONS(6663), - [anon_sym_esac] = ACTIONS(1148), - [anon_sym_PIPE] = ACTIONS(1148), - [anon_sym_SEMI_SEMI] = ACTIONS(1148), - [anon_sym_PIPE_AMP] = ACTIONS(1148), - [anon_sym_AMP_AMP] = ACTIONS(1148), - [anon_sym_PIPE_PIPE] = ACTIONS(1148), - [anon_sym_EQ_TILDE] = ACTIONS(6665), - [anon_sym_EQ_EQ] = ACTIONS(6665), - [anon_sym_LT] = ACTIONS(6667), - [anon_sym_GT] = ACTIONS(6667), - [anon_sym_GT_GT] = ACTIONS(6667), - [anon_sym_AMP_GT] = ACTIONS(6667), - [anon_sym_AMP_GT_GT] = ACTIONS(6667), - [anon_sym_LT_AMP] = ACTIONS(6667), - [anon_sym_GT_AMP] = ACTIONS(6667), + [aux_sym_while_statement_repeat1] = STATE(3776), + [sym_file_descriptor] = ACTIONS(6677), + [anon_sym_esac] = ACTIONS(1150), + [anon_sym_PIPE] = ACTIONS(1150), + [anon_sym_SEMI_SEMI] = ACTIONS(1150), + [anon_sym_PIPE_AMP] = ACTIONS(1150), + [anon_sym_AMP_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1150), + [anon_sym_LT] = ACTIONS(6681), + [anon_sym_GT] = ACTIONS(6681), + [anon_sym_GT_GT] = ACTIONS(6681), + [anon_sym_AMP_GT] = ACTIONS(6681), + [anon_sym_AMP_GT_GT] = ACTIONS(6681), + [anon_sym_LT_AMP] = ACTIONS(6681), + [anon_sym_GT_AMP] = ACTIONS(6681), [anon_sym_LT_LT] = ACTIONS(360), [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6669), - [sym__special_characters] = ACTIONS(6671), - [anon_sym_DQUOTE] = ACTIONS(6673), - [anon_sym_DOLLAR] = ACTIONS(6675), - [sym_raw_string] = ACTIONS(6677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6681), - [anon_sym_BQUOTE] = ACTIONS(6683), - [anon_sym_LT_LPAREN] = ACTIONS(6685), - [anon_sym_GT_LPAREN] = ACTIONS(6685), + [anon_sym_LT_LT_LT] = ACTIONS(6683), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6677), - [anon_sym_SEMI] = ACTIONS(1148), - [anon_sym_LF] = ACTIONS(1148), - [anon_sym_AMP] = ACTIONS(1148), - }, - [3294] = { - [sym__terminated_statement] = STATE(2651), - [sym_for_statement] = STATE(3779), - [sym_while_statement] = STATE(3779), - [sym_if_statement] = STATE(3779), - [sym_case_statement] = STATE(3779), - [sym_function_definition] = STATE(3779), - [sym_subshell] = STATE(3779), - [sym_pipeline] = STATE(3779), - [sym_list] = STATE(3779), - [sym_command] = STATE(3779), - [sym_command_name] = STATE(2653), - [sym_bracket_command] = STATE(3779), - [sym_variable_assignment] = STATE(3780), - [sym_declaration_command] = STATE(3779), - [sym_unset_command] = STATE(3779), - [sym_subscript] = STATE(2655), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2656), - [sym_string] = STATE(2645), - [sym_simple_expansion] = STATE(2645), - [sym_string_expansion] = STATE(2645), - [sym_expansion] = STATE(2645), - [sym_command_substitution] = STATE(2645), - [sym_process_substitution] = STATE(2645), - [aux_sym_program_repeat1] = STATE(3292), - [aux_sym_command_repeat1] = STATE(2658), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5521), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5523), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(7506), - [anon_sym_SEMI_SEMI] = ACTIONS(7552), - [anon_sym_function] = ACTIONS(5529), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), - [anon_sym_declare] = ACTIONS(5535), - [anon_sym_typeset] = ACTIONS(5535), - [anon_sym_export] = ACTIONS(5535), - [anon_sym_readonly] = ACTIONS(5535), - [anon_sym_local] = ACTIONS(5535), - [anon_sym_unset] = ACTIONS(5537), - [anon_sym_unsetenv] = ACTIONS(5537), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5539), - [anon_sym_DQUOTE] = ACTIONS(5541), - [anon_sym_DOLLAR] = ACTIONS(5543), - [sym_raw_string] = ACTIONS(5545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), - [anon_sym_BQUOTE] = ACTIONS(5551), - [anon_sym_LT_LPAREN] = ACTIONS(5553), - [anon_sym_GT_LPAREN] = ACTIONS(5553), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5555), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_LF] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1150), }, [3295] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_esac] = ACTIONS(7554), - [anon_sym_SEMI_SEMI] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(7556), - [anon_sym_DQUOTE] = ACTIONS(7558), - [anon_sym_DOLLAR] = ACTIONS(7560), - [sym_raw_string] = ACTIONS(7558), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7558), - [anon_sym_BQUOTE] = ACTIONS(7558), - [anon_sym_LT_LPAREN] = ACTIONS(7558), - [anon_sym_GT_LPAREN] = ACTIONS(7558), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7556), + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [sym_concatenation] = STATE(3293), + [sym_string] = STATE(3292), + [sym_simple_expansion] = STATE(3292), + [sym_string_expansion] = STATE(3292), + [sym_expansion] = STATE(3292), + [sym_command_substitution] = STATE(3292), + [sym_process_substitution] = STATE(3292), + [aux_sym_while_statement_repeat1] = STATE(3777), + [aux_sym_command_repeat2] = STATE(3778), + [sym_file_descriptor] = ACTIONS(6677), + [anon_sym_esac] = ACTIONS(1150), + [anon_sym_PIPE] = ACTIONS(1150), + [anon_sym_SEMI_SEMI] = ACTIONS(1150), + [anon_sym_PIPE_AMP] = ACTIONS(1150), + [anon_sym_AMP_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1150), + [anon_sym_EQ_TILDE] = ACTIONS(6679), + [anon_sym_EQ_EQ] = ACTIONS(6679), + [anon_sym_LT] = ACTIONS(6681), + [anon_sym_GT] = ACTIONS(6681), + [anon_sym_GT_GT] = ACTIONS(6681), + [anon_sym_AMP_GT] = ACTIONS(6681), + [anon_sym_AMP_GT_GT] = ACTIONS(6681), + [anon_sym_LT_AMP] = ACTIONS(6681), + [anon_sym_GT_AMP] = ACTIONS(6681), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6683), + [sym__special_characters] = ACTIONS(6685), + [anon_sym_DQUOTE] = ACTIONS(6687), + [anon_sym_DOLLAR] = ACTIONS(6689), + [sym_raw_string] = ACTIONS(6691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6695), + [anon_sym_BQUOTE] = ACTIONS(6697), + [anon_sym_LT_LPAREN] = ACTIONS(6699), + [anon_sym_GT_LPAREN] = ACTIONS(6699), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6691), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_LF] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1150), }, [3296] = { - [anon_sym_esac] = ACTIONS(7554), - [sym__special_characters] = ACTIONS(7560), - [anon_sym_DQUOTE] = ACTIONS(7558), - [anon_sym_DOLLAR] = ACTIONS(7560), - [sym_raw_string] = ACTIONS(7558), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7558), - [anon_sym_BQUOTE] = ACTIONS(7558), - [anon_sym_LT_LPAREN] = ACTIONS(7558), - [anon_sym_GT_LPAREN] = ACTIONS(7558), + [anon_sym_esac] = ACTIONS(7518), + [sym__special_characters] = ACTIONS(7524), + [anon_sym_DQUOTE] = ACTIONS(7522), + [anon_sym_DOLLAR] = ACTIONS(7524), + [sym_raw_string] = ACTIONS(7522), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7522), + [anon_sym_BQUOTE] = ACTIONS(7522), + [anon_sym_LT_LPAREN] = ACTIONS(7522), + [anon_sym_GT_LPAREN] = ACTIONS(7522), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7556), + [sym_word] = ACTIONS(7520), }, [3297] = { - [anon_sym_esac] = ACTIONS(7562), - [anon_sym_PIPE] = ACTIONS(6655), - [anon_sym_SEMI_SEMI] = ACTIONS(7564), - [anon_sym_PIPE_AMP] = ACTIONS(6655), - [anon_sym_AMP_AMP] = ACTIONS(6659), - [anon_sym_PIPE_PIPE] = ACTIONS(6659), + [anon_sym_esac] = ACTIONS(7560), + [anon_sym_PIPE] = ACTIONS(6669), + [anon_sym_SEMI_SEMI] = ACTIONS(7562), + [anon_sym_PIPE_AMP] = ACTIONS(6669), + [anon_sym_AMP_AMP] = ACTIONS(6673), + [anon_sym_PIPE_PIPE] = ACTIONS(6673), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6661), - [anon_sym_LF] = ACTIONS(6661), - [anon_sym_AMP] = ACTIONS(6661), + [anon_sym_SEMI] = ACTIONS(6675), + [anon_sym_LF] = ACTIONS(6675), + [anon_sym_AMP] = ACTIONS(6675), }, [3298] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_esac] = ACTIONS(7562), - [anon_sym_PIPE] = ACTIONS(6655), - [anon_sym_SEMI_SEMI] = ACTIONS(7564), - [anon_sym_PIPE_AMP] = ACTIONS(6655), - [anon_sym_AMP_AMP] = ACTIONS(6659), - [anon_sym_PIPE_PIPE] = ACTIONS(6659), + [anon_sym_esac] = ACTIONS(7560), + [anon_sym_PIPE] = ACTIONS(6669), + [anon_sym_SEMI_SEMI] = ACTIONS(7562), + [anon_sym_PIPE_AMP] = ACTIONS(6669), + [anon_sym_AMP_AMP] = ACTIONS(6673), + [anon_sym_PIPE_PIPE] = ACTIONS(6673), [anon_sym_LT] = ACTIONS(382), [anon_sym_GT] = ACTIONS(382), [anon_sym_GT_GT] = ACTIONS(382), @@ -84133,344 +83986,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(6661), - [anon_sym_LF] = ACTIONS(6661), - [anon_sym_AMP] = ACTIONS(6661), + [anon_sym_SEMI] = ACTIONS(6675), + [anon_sym_LF] = ACTIONS(6675), + [anon_sym_AMP] = ACTIONS(6675), }, [3299] = { - [sym__terminated_statement] = STATE(2651), - [sym_for_statement] = STATE(3783), - [sym_while_statement] = STATE(3783), - [sym_if_statement] = STATE(3783), - [sym_case_statement] = STATE(3783), - [sym_function_definition] = STATE(3783), - [sym_subshell] = STATE(3783), - [sym_pipeline] = STATE(3783), - [sym_list] = STATE(3783), - [sym_command] = STATE(3783), - [sym_command_name] = STATE(2653), - [sym_bracket_command] = STATE(3783), - [sym_variable_assignment] = STATE(3784), - [sym_declaration_command] = STATE(3783), - [sym_unset_command] = STATE(3783), - [sym_subscript] = STATE(2655), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(2656), - [sym_string] = STATE(2645), - [sym_simple_expansion] = STATE(2645), - [sym_string_expansion] = STATE(2645), - [sym_expansion] = STATE(2645), - [sym_command_substitution] = STATE(2645), - [sym_process_substitution] = STATE(2645), - [aux_sym_program_repeat1] = STATE(3292), - [aux_sym_command_repeat1] = STATE(2658), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(5521), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(5523), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_esac] = ACTIONS(7554), - [anon_sym_SEMI_SEMI] = ACTIONS(7566), - [anon_sym_function] = ACTIONS(5529), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(5531), - [anon_sym_LBRACK_LBRACK] = ACTIONS(5533), - [anon_sym_declare] = ACTIONS(5535), - [anon_sym_typeset] = ACTIONS(5535), - [anon_sym_export] = ACTIONS(5535), - [anon_sym_readonly] = ACTIONS(5535), - [anon_sym_local] = ACTIONS(5535), - [anon_sym_unset] = ACTIONS(5537), - [anon_sym_unsetenv] = ACTIONS(5537), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(5539), - [anon_sym_DQUOTE] = ACTIONS(5541), - [anon_sym_DOLLAR] = ACTIONS(5543), - [sym_raw_string] = ACTIONS(5545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5549), - [anon_sym_BQUOTE] = ACTIONS(5551), - [anon_sym_LT_LPAREN] = ACTIONS(5553), - [anon_sym_GT_LPAREN] = ACTIONS(5553), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5555), - }, - [3300] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_RPAREN] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - }, - [3301] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7568), - [sym_comment] = ACTIONS(56), - }, - [3302] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7570), - [sym_comment] = ACTIONS(56), - }, - [3303] = { - [anon_sym_RBRACE] = ACTIONS(7570), - [sym_comment] = ACTIONS(56), - }, - [3304] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3788), - [anon_sym_RBRACE] = ACTIONS(7572), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3305] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3347), - [anon_sym_RPAREN] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), - }, - [3306] = { - [sym_concatenation] = STATE(3791), - [sym_string] = STATE(3790), - [sym_simple_expansion] = STATE(3790), - [sym_string_expansion] = STATE(3790), - [sym_expansion] = STATE(3790), - [sym_command_substitution] = STATE(3790), - [sym_process_substitution] = STATE(3790), - [anon_sym_RBRACE] = ACTIONS(7570), - [sym__special_characters] = ACTIONS(7574), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(7576), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7578), - }, - [3307] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(3392), - [anon_sym_RPAREN] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), - }, - [3308] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7580), - }, - [3309] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7582), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3310] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3400), - [anon_sym_RPAREN] = ACTIONS(3400), - [sym_comment] = ACTIONS(56), - }, - [3311] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7584), - }, - [3312] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7586), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3313] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7588), - }, - [3314] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7570), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3315] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3798), - [anon_sym_RBRACE] = ACTIONS(7590), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3316] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3412), - [anon_sym_RPAREN] = ACTIONS(3412), - [sym_comment] = ACTIONS(56), - }, - [3317] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3800), - [anon_sym_RBRACE] = ACTIONS(7592), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3318] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(3802), - [sym_while_statement] = STATE(3802), - [sym_if_statement] = STATE(3802), - [sym_case_statement] = STATE(3802), - [sym_function_definition] = STATE(3802), - [sym_subshell] = STATE(3802), - [sym_pipeline] = STATE(3802), - [sym_list] = STATE(3802), - [sym_command] = STATE(3802), + [sym__terminated_statement] = STATE(2659), + [sym_for_statement] = STATE(3780), + [sym_while_statement] = STATE(3780), + [sym_if_statement] = STATE(3780), + [sym_case_statement] = STATE(3780), + [sym_function_definition] = STATE(3780), + [sym_subshell] = STATE(3780), + [sym_pipeline] = STATE(3780), + [sym_list] = STATE(3780), + [sym_command] = STATE(3780), [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(3802), - [sym_variable_assignment] = STATE(3803), - [sym_declaration_command] = STATE(3802), - [sym_unset_command] = STATE(3802), + [sym_bracket_command] = STATE(3780), + [sym_variable_assignment] = STATE(3781), + [sym_declaration_command] = STATE(3780), + [sym_unset_command] = STATE(3780), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -84480,26 +84015,139 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(18), [sym_command_substitution] = STATE(18), [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(3804), + [aux_sym_program_repeat1] = STATE(3299), [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_esac] = ACTIONS(4311), + [anon_sym_SEMI_SEMI] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1184), + [anon_sym_typeset] = ACTIONS(1184), + [anon_sym_export] = ACTIONS(1184), + [anon_sym_readonly] = ACTIONS(1184), + [anon_sym_local] = ACTIONS(1184), + [anon_sym_unset] = ACTIONS(1187), + [anon_sym_unsetenv] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_AMP_GT] = ACTIONS(1190), + [anon_sym_AMP_GT_GT] = ACTIONS(1193), + [anon_sym_LT_AMP] = ACTIONS(1193), + [anon_sym_GT_AMP] = ACTIONS(1193), + [sym__special_characters] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(1202), + [sym_raw_string] = ACTIONS(1205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(1214), + [anon_sym_LT_LPAREN] = ACTIONS(1217), + [anon_sym_GT_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1220), + }, + [3300] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [sym_concatenation] = STATE(3293), + [sym_string] = STATE(3292), + [sym_simple_expansion] = STATE(3292), + [sym_string_expansion] = STATE(3292), + [sym_expansion] = STATE(3292), + [sym_command_substitution] = STATE(3292), + [sym_process_substitution] = STATE(3292), + [aux_sym_while_statement_repeat1] = STATE(3777), + [aux_sym_command_repeat2] = STATE(3782), + [sym_file_descriptor] = ACTIONS(6677), + [anon_sym_esac] = ACTIONS(1150), + [anon_sym_PIPE] = ACTIONS(1150), + [anon_sym_SEMI_SEMI] = ACTIONS(1150), + [anon_sym_PIPE_AMP] = ACTIONS(1150), + [anon_sym_AMP_AMP] = ACTIONS(1150), + [anon_sym_PIPE_PIPE] = ACTIONS(1150), + [anon_sym_EQ_TILDE] = ACTIONS(6679), + [anon_sym_EQ_EQ] = ACTIONS(6679), + [anon_sym_LT] = ACTIONS(6681), + [anon_sym_GT] = ACTIONS(6681), + [anon_sym_GT_GT] = ACTIONS(6681), + [anon_sym_AMP_GT] = ACTIONS(6681), + [anon_sym_AMP_GT_GT] = ACTIONS(6681), + [anon_sym_LT_AMP] = ACTIONS(6681), + [anon_sym_GT_AMP] = ACTIONS(6681), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6683), + [sym__special_characters] = ACTIONS(6685), + [anon_sym_DQUOTE] = ACTIONS(6687), + [anon_sym_DOLLAR] = ACTIONS(6689), + [sym_raw_string] = ACTIONS(6691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6695), + [anon_sym_BQUOTE] = ACTIONS(6697), + [anon_sym_LT_LPAREN] = ACTIONS(6699), + [anon_sym_GT_LPAREN] = ACTIONS(6699), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6691), + [anon_sym_SEMI] = ACTIONS(1150), + [anon_sym_LF] = ACTIONS(1150), + [anon_sym_AMP] = ACTIONS(1150), + }, + [3301] = { + [sym__terminated_statement] = STATE(2659), + [sym_for_statement] = STATE(3784), + [sym_while_statement] = STATE(3784), + [sym_if_statement] = STATE(3784), + [sym_case_statement] = STATE(3784), + [sym_function_definition] = STATE(3784), + [sym_subshell] = STATE(3784), + [sym_pipeline] = STATE(3784), + [sym_list] = STATE(3784), + [sym_command] = STATE(3784), + [sym_command_name] = STATE(2661), + [sym_bracket_command] = STATE(3784), + [sym_variable_assignment] = STATE(3785), + [sym_declaration_command] = STATE(3784), + [sym_unset_command] = STATE(3784), + [sym_subscript] = STATE(2663), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(2664), + [sym_string] = STATE(2653), + [sym_simple_expansion] = STATE(2653), + [sym_string_expansion] = STATE(2653), + [sym_expansion] = STATE(2653), + [sym_command_substitution] = STATE(2653), + [sym_process_substitution] = STATE(2653), + [aux_sym_program_repeat1] = STATE(3299), + [aux_sym_command_repeat1] = STATE(2666), [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), + [sym_variable_name] = ACTIONS(5537), [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), + [anon_sym_while] = ACTIONS(5539), [anon_sym_if] = ACTIONS(20), [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(7594), - [anon_sym_function] = ACTIONS(24), + [anon_sym_esac] = ACTIONS(7518), + [anon_sym_SEMI_SEMI] = ACTIONS(7564), + [anon_sym_function] = ACTIONS(5545), [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LBRACK] = ACTIONS(5547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), + [anon_sym_declare] = ACTIONS(5551), + [anon_sym_typeset] = ACTIONS(5551), + [anon_sym_export] = ACTIONS(5551), + [anon_sym_readonly] = ACTIONS(5551), + [anon_sym_local] = ACTIONS(5551), + [anon_sym_unset] = ACTIONS(5553), + [anon_sym_unsetenv] = ACTIONS(5553), [anon_sym_LT] = ACTIONS(36), [anon_sym_GT] = ACTIONS(36), [anon_sym_GT_GT] = ACTIONS(38), @@ -84507,25 +84155,433 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(38), [anon_sym_LT_AMP] = ACTIONS(38), [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym__special_characters] = ACTIONS(5555), + [anon_sym_DQUOTE] = ACTIONS(5557), + [anon_sym_DOLLAR] = ACTIONS(5559), + [sym_raw_string] = ACTIONS(5561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), + [anon_sym_BQUOTE] = ACTIONS(5567), + [anon_sym_LT_LPAREN] = ACTIONS(5569), + [anon_sym_GT_LPAREN] = ACTIONS(5569), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_word] = ACTIONS(5571), + }, + [3302] = { + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_esac] = ACTIONS(7566), + [anon_sym_SEMI_SEMI] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(7568), + [anon_sym_DQUOTE] = ACTIONS(7570), + [anon_sym_DOLLAR] = ACTIONS(7572), + [sym_raw_string] = ACTIONS(7570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7570), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7570), + [anon_sym_BQUOTE] = ACTIONS(7570), + [anon_sym_LT_LPAREN] = ACTIONS(7570), + [anon_sym_GT_LPAREN] = ACTIONS(7570), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7568), + }, + [3303] = { + [anon_sym_esac] = ACTIONS(7566), + [sym__special_characters] = ACTIONS(7572), + [anon_sym_DQUOTE] = ACTIONS(7570), + [anon_sym_DOLLAR] = ACTIONS(7572), + [sym_raw_string] = ACTIONS(7570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7570), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7570), + [anon_sym_BQUOTE] = ACTIONS(7570), + [anon_sym_LT_LPAREN] = ACTIONS(7570), + [anon_sym_GT_LPAREN] = ACTIONS(7570), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7568), + }, + [3304] = { + [anon_sym_esac] = ACTIONS(7574), + [anon_sym_PIPE] = ACTIONS(6669), + [anon_sym_SEMI_SEMI] = ACTIONS(7576), + [anon_sym_PIPE_AMP] = ACTIONS(6669), + [anon_sym_AMP_AMP] = ACTIONS(6673), + [anon_sym_PIPE_PIPE] = ACTIONS(6673), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6675), + [anon_sym_LF] = ACTIONS(6675), + [anon_sym_AMP] = ACTIONS(6675), + }, + [3305] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_esac] = ACTIONS(7574), + [anon_sym_PIPE] = ACTIONS(6669), + [anon_sym_SEMI_SEMI] = ACTIONS(7576), + [anon_sym_PIPE_AMP] = ACTIONS(6669), + [anon_sym_AMP_AMP] = ACTIONS(6673), + [anon_sym_PIPE_PIPE] = ACTIONS(6673), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(6675), + [anon_sym_LF] = ACTIONS(6675), + [anon_sym_AMP] = ACTIONS(6675), + }, + [3306] = { + [sym__terminated_statement] = STATE(2659), + [sym_for_statement] = STATE(3788), + [sym_while_statement] = STATE(3788), + [sym_if_statement] = STATE(3788), + [sym_case_statement] = STATE(3788), + [sym_function_definition] = STATE(3788), + [sym_subshell] = STATE(3788), + [sym_pipeline] = STATE(3788), + [sym_list] = STATE(3788), + [sym_command] = STATE(3788), + [sym_command_name] = STATE(2661), + [sym_bracket_command] = STATE(3788), + [sym_variable_assignment] = STATE(3789), + [sym_declaration_command] = STATE(3788), + [sym_unset_command] = STATE(3788), + [sym_subscript] = STATE(2663), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(2664), + [sym_string] = STATE(2653), + [sym_simple_expansion] = STATE(2653), + [sym_string_expansion] = STATE(2653), + [sym_expansion] = STATE(2653), + [sym_command_substitution] = STATE(2653), + [sym_process_substitution] = STATE(2653), + [aux_sym_program_repeat1] = STATE(3299), + [aux_sym_command_repeat1] = STATE(2666), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(5537), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(5539), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_esac] = ACTIONS(7566), + [anon_sym_SEMI_SEMI] = ACTIONS(7578), + [anon_sym_function] = ACTIONS(5545), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(5547), + [anon_sym_LBRACK_LBRACK] = ACTIONS(5549), + [anon_sym_declare] = ACTIONS(5551), + [anon_sym_typeset] = ACTIONS(5551), + [anon_sym_export] = ACTIONS(5551), + [anon_sym_readonly] = ACTIONS(5551), + [anon_sym_local] = ACTIONS(5551), + [anon_sym_unset] = ACTIONS(5553), + [anon_sym_unsetenv] = ACTIONS(5553), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(5555), + [anon_sym_DQUOTE] = ACTIONS(5557), + [anon_sym_DOLLAR] = ACTIONS(5559), + [sym_raw_string] = ACTIONS(5561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5563), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5565), + [anon_sym_BQUOTE] = ACTIONS(5567), + [anon_sym_LT_LPAREN] = ACTIONS(5569), + [anon_sym_GT_LPAREN] = ACTIONS(5569), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5571), + }, + [3307] = { + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3293), + [anon_sym_RPAREN] = ACTIONS(3293), + [sym_comment] = ACTIONS(56), + }, + [3308] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7580), + [sym_comment] = ACTIONS(56), + }, + [3309] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7582), + [sym_comment] = ACTIONS(56), + }, + [3310] = { + [anon_sym_RBRACE] = ACTIONS(7582), + [sym_comment] = ACTIONS(56), + }, + [3311] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3793), + [anon_sym_RBRACE] = ACTIONS(7584), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3312] = { + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3357), + [anon_sym_RPAREN] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), + }, + [3313] = { + [sym_concatenation] = STATE(3796), + [sym_string] = STATE(3795), + [sym_simple_expansion] = STATE(3795), + [sym_string_expansion] = STATE(3795), + [sym_expansion] = STATE(3795), + [sym_command_substitution] = STATE(3795), + [sym_process_substitution] = STATE(3795), + [anon_sym_RBRACE] = ACTIONS(7582), + [sym__special_characters] = ACTIONS(7586), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(7588), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7590), + }, + [3314] = { + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3402), + [anon_sym_RPAREN] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), + }, + [3315] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7592), + }, + [3316] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7594), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3317] = { + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3410), + [anon_sym_RPAREN] = ACTIONS(3410), + [sym_comment] = ACTIONS(56), + }, + [3318] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7596), }, [3319] = { - [aux_sym_case_item_repeat1] = STATE(2660), - [anon_sym_PIPE] = ACTIONS(4320), - [anon_sym_RPAREN] = ACTIONS(7596), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7598), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3320] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7600), + }, + [3321] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7582), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3322] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3803), + [anon_sym_RBRACE] = ACTIONS(7602), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3323] = { + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3422), + [anon_sym_RPAREN] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + }, + [3324] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3805), + [anon_sym_RBRACE] = ACTIONS(7604), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3325] = { [sym__terminated_statement] = STATE(25), [sym_for_statement] = STATE(3807), [sym_while_statement] = STATE(3807), @@ -84558,7 +84614,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(7598), + [anon_sym_SEMI_SEMI] = ACTIONS(7606), [anon_sym_function] = ACTIONS(24), [anon_sym_LPAREN] = ACTIONS(26), [anon_sym_LBRACK] = ACTIONS(28), @@ -84589,519 +84645,483 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(58), }, - [3321] = { - [aux_sym_case_item_repeat1] = STATE(2660), - [anon_sym_PIPE] = ACTIONS(4320), - [anon_sym_RPAREN] = ACTIONS(7600), + [3326] = { + [aux_sym_case_item_repeat1] = STATE(2668), + [anon_sym_PIPE] = ACTIONS(4332), + [anon_sym_RPAREN] = ACTIONS(7608), [sym_comment] = ACTIONS(56), }, - [3322] = { - [anon_sym_esac] = ACTIONS(7602), - [anon_sym_PIPE] = ACTIONS(7602), - [anon_sym_RPAREN] = ACTIONS(7602), - [anon_sym_SEMI_SEMI] = ACTIONS(7602), - [anon_sym_PIPE_AMP] = ACTIONS(7602), - [anon_sym_AMP_AMP] = ACTIONS(7602), - [anon_sym_PIPE_PIPE] = ACTIONS(7602), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7602), - [anon_sym_LF] = ACTIONS(7602), - [anon_sym_AMP] = ACTIONS(7602), - }, - [3323] = { - [anon_sym_esac] = ACTIONS(7604), - [anon_sym_PIPE] = ACTIONS(7604), - [anon_sym_RPAREN] = ACTIONS(7604), - [anon_sym_SEMI_SEMI] = ACTIONS(7604), - [anon_sym_PIPE_AMP] = ACTIONS(7604), - [anon_sym_AMP_AMP] = ACTIONS(7604), - [anon_sym_PIPE_PIPE] = ACTIONS(7604), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7604), - [anon_sym_LF] = ACTIONS(7604), - [anon_sym_AMP] = ACTIONS(7604), - }, - [3324] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_in] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), - }, - [3325] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_in] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), - }, - [3326] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_in] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), - }, [3327] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(3812), + [sym_while_statement] = STATE(3812), + [sym_if_statement] = STATE(3812), + [sym_case_statement] = STATE(3812), + [sym_function_definition] = STATE(3812), + [sym_subshell] = STATE(3812), + [sym_pipeline] = STATE(3812), + [sym_list] = STATE(3812), + [sym_command] = STATE(3812), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(3812), + [sym_variable_assignment] = STATE(3813), + [sym_declaration_command] = STATE(3812), + [sym_unset_command] = STATE(3812), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(3814), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(7610), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), }, [3328] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7606), + [aux_sym_case_item_repeat1] = STATE(2668), + [anon_sym_PIPE] = ACTIONS(4332), + [anon_sym_RPAREN] = ACTIONS(7612), [sym_comment] = ACTIONS(56), }, [3329] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7608), - [sym_comment] = ACTIONS(56), + [anon_sym_esac] = ACTIONS(7614), + [anon_sym_PIPE] = ACTIONS(7614), + [anon_sym_RPAREN] = ACTIONS(7614), + [anon_sym_SEMI_SEMI] = ACTIONS(7614), + [anon_sym_PIPE_AMP] = ACTIONS(7614), + [anon_sym_AMP_AMP] = ACTIONS(7614), + [anon_sym_PIPE_PIPE] = ACTIONS(7614), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7614), + [anon_sym_LF] = ACTIONS(7614), + [anon_sym_AMP] = ACTIONS(7614), }, [3330] = { - [anon_sym_RBRACE] = ACTIONS(7608), - [sym_comment] = ACTIONS(56), + [anon_sym_esac] = ACTIONS(7616), + [anon_sym_PIPE] = ACTIONS(7616), + [anon_sym_RPAREN] = ACTIONS(7616), + [anon_sym_SEMI_SEMI] = ACTIONS(7616), + [anon_sym_PIPE_AMP] = ACTIONS(7616), + [anon_sym_AMP_AMP] = ACTIONS(7616), + [anon_sym_PIPE_PIPE] = ACTIONS(7616), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7616), + [anon_sym_LF] = ACTIONS(7616), + [anon_sym_AMP] = ACTIONS(7616), }, [3331] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3814), - [anon_sym_RBRACE] = ACTIONS(7610), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(7032), + [anon_sym_in] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), }, [3332] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [sym__concat] = ACTIONS(7036), + [anon_sym_in] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), }, [3333] = { - [sym_concatenation] = STATE(3817), - [sym_string] = STATE(3816), - [sym_simple_expansion] = STATE(3816), - [sym_string_expansion] = STATE(3816), - [sym_expansion] = STATE(3816), - [sym_command_substitution] = STATE(3816), - [sym_process_substitution] = STATE(3816), - [anon_sym_RBRACE] = ACTIONS(7608), - [sym__special_characters] = ACTIONS(7612), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(7614), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7616), + [sym__concat] = ACTIONS(7040), + [anon_sym_in] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), }, [3334] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), }, [3335] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7618), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7618), + [sym_comment] = ACTIONS(56), }, [3336] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), [anon_sym_RBRACE] = ACTIONS(7620), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_comment] = ACTIONS(56), }, [3337] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), + [anon_sym_RBRACE] = ACTIONS(7620), + [sym_comment] = ACTIONS(56), }, [3338] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3819), + [anon_sym_RBRACE] = ACTIONS(7622), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7622), + [sym_word] = ACTIONS(866), }, [3339] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7624), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), }, [3340] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7626), + [sym_concatenation] = STATE(3822), + [sym_string] = STATE(3821), + [sym_simple_expansion] = STATE(3821), + [sym_string_expansion] = STATE(3821), + [sym_expansion] = STATE(3821), + [sym_command_substitution] = STATE(3821), + [sym_process_substitution] = STATE(3821), + [anon_sym_RBRACE] = ACTIONS(7620), + [sym__special_characters] = ACTIONS(7624), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(7626), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7628), }, [3341] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7608), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), }, [3342] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3824), - [anon_sym_RBRACE] = ACTIONS(7628), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(7630), }, [3343] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7632), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), + [sym_word] = ACTIONS(866), }, [3344] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3826), - [anon_sym_RBRACE] = ACTIONS(7630), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), }, [3345] = { - [sym_file_descriptor] = ACTIONS(4790), - [sym__concat] = ACTIONS(4790), - [sym_variable_name] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_RPAREN] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_AMP_GT] = ACTIONS(4792), - [anon_sym_AMP_GT_GT] = ACTIONS(4792), - [anon_sym_LT_AMP] = ACTIONS(4792), - [anon_sym_GT_AMP] = ACTIONS(4792), - [sym__special_characters] = ACTIONS(4792), - [anon_sym_DQUOTE] = ACTIONS(4792), - [anon_sym_DOLLAR] = ACTIONS(4792), - [sym_raw_string] = ACTIONS(4792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), - [anon_sym_BQUOTE] = ACTIONS(4792), - [anon_sym_LT_LPAREN] = ACTIONS(4792), - [anon_sym_GT_LPAREN] = ACTIONS(4792), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4792), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), + [sym_regex_without_right_brace] = ACTIONS(7634), }, [3346] = { - [sym_file_descriptor] = ACTIONS(4796), - [sym__concat] = ACTIONS(4796), - [sym_variable_name] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_RPAREN] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4798), - [anon_sym_GT] = ACTIONS(4798), - [anon_sym_GT_GT] = ACTIONS(4798), - [anon_sym_AMP_GT] = ACTIONS(4798), - [anon_sym_AMP_GT_GT] = ACTIONS(4798), - [anon_sym_LT_AMP] = ACTIONS(4798), - [anon_sym_GT_AMP] = ACTIONS(4798), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4798), - [anon_sym_DOLLAR] = ACTIONS(4798), - [sym_raw_string] = ACTIONS(4798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), - [anon_sym_BQUOTE] = ACTIONS(4798), - [anon_sym_LT_LPAREN] = ACTIONS(4798), - [anon_sym_GT_LPAREN] = ACTIONS(4798), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7636), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4798), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), + [sym_word] = ACTIONS(866), }, [3347] = { - [sym_file_descriptor] = ACTIONS(4859), - [sym__concat] = ACTIONS(4859), - [sym_variable_name] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_RPAREN] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_LT] = ACTIONS(4861), - [anon_sym_GT] = ACTIONS(4861), - [anon_sym_GT_GT] = ACTIONS(4861), - [anon_sym_AMP_GT] = ACTIONS(4861), - [anon_sym_AMP_GT_GT] = ACTIONS(4861), - [anon_sym_LT_AMP] = ACTIONS(4861), - [anon_sym_GT_AMP] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4861), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), + [sym_regex_without_right_brace] = ACTIONS(7638), }, [3348] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7632), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7620), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3349] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7634), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3829), + [anon_sym_RBRACE] = ACTIONS(7640), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3350] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7636), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), }, [3351] = { - [anon_sym_RBRACE] = ACTIONS(7636), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3831), + [anon_sym_RBRACE] = ACTIONS(7642), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3352] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3831), - [anon_sym_RBRACE] = ACTIONS(7638), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(4802), + [sym__concat] = ACTIONS(4802), + [sym_variable_name] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_RPAREN] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_GT_GT] = ACTIONS(4804), + [anon_sym_AMP_GT] = ACTIONS(4804), + [anon_sym_AMP_GT_GT] = ACTIONS(4804), + [anon_sym_LT_AMP] = ACTIONS(4804), + [anon_sym_GT_AMP] = ACTIONS(4804), + [sym__special_characters] = ACTIONS(4804), + [anon_sym_DQUOTE] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4804), + [sym_raw_string] = ACTIONS(4804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), + [anon_sym_BQUOTE] = ACTIONS(4804), + [anon_sym_LT_LPAREN] = ACTIONS(4804), + [anon_sym_GT_LPAREN] = ACTIONS(4804), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), }, [3353] = { + [sym_file_descriptor] = ACTIONS(4808), + [sym__concat] = ACTIONS(4808), + [sym_variable_name] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_RPAREN] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_GT_GT] = ACTIONS(4810), + [anon_sym_AMP_GT] = ACTIONS(4810), + [anon_sym_AMP_GT_GT] = ACTIONS(4810), + [anon_sym_LT_AMP] = ACTIONS(4810), + [anon_sym_GT_AMP] = ACTIONS(4810), + [sym__special_characters] = ACTIONS(4810), + [anon_sym_DQUOTE] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4810), + [sym_raw_string] = ACTIONS(4810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), + [anon_sym_BQUOTE] = ACTIONS(4810), + [anon_sym_LT_LPAREN] = ACTIONS(4810), + [anon_sym_GT_LPAREN] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), + }, + [3354] = { [sym_file_descriptor] = ACTIONS(4871), [sym__concat] = ACTIONS(4871), [sym_variable_name] = ACTIONS(4871), @@ -85133,97 +85153,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4873), [anon_sym_AMP] = ACTIONS(4873), }, - [3354] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3833), - [anon_sym_RBRACE] = ACTIONS(7640), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [3355] = { - [sym_file_descriptor] = ACTIONS(4877), - [sym__concat] = ACTIONS(4877), - [sym_variable_name] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_GT_GT] = ACTIONS(4879), - [anon_sym_AMP_GT] = ACTIONS(4879), - [anon_sym_AMP_GT_GT] = ACTIONS(4879), - [anon_sym_LT_AMP] = ACTIONS(4879), - [anon_sym_GT_AMP] = ACTIONS(4879), - [sym__special_characters] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4879), - [sym_raw_string] = ACTIONS(4879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), - [anon_sym_BQUOTE] = ACTIONS(4879), - [anon_sym_LT_LPAREN] = ACTIONS(4879), - [anon_sym_GT_LPAREN] = ACTIONS(4879), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7644), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), + [sym_word] = ACTIONS(866), }, [3356] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3835), - [anon_sym_RBRACE] = ACTIONS(7642), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7646), + [sym_comment] = ACTIONS(56), }, [3357] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7648), + [sym_comment] = ACTIONS(56), + }, + [3358] = { + [anon_sym_RBRACE] = ACTIONS(7648), + [sym_comment] = ACTIONS(56), + }, + [3359] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3836), + [anon_sym_RBRACE] = ACTIONS(7650), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3360] = { [sym_file_descriptor] = ACTIONS(4883), [sym__concat] = ACTIONS(4883), [sym_variable_name] = ACTIONS(4883), @@ -85255,36 +85259,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4885), [anon_sym_AMP] = ACTIONS(4885), }, - [3358] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7644), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3361] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3838), + [anon_sym_RBRACE] = ACTIONS(7652), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [3359] = { + [3362] = { [sym_file_descriptor] = ACTIONS(4889), [sym__concat] = ACTIONS(4889), [sym_variable_name] = ACTIONS(4889), @@ -85316,539 +85320,528 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4891), [anon_sym_AMP] = ACTIONS(4891), }, - [3360] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7646), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3361] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [3362] = { - [aux_sym_concatenation_repeat1] = STATE(3362), - [sym__concat] = ACTIONS(7648), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_RPAREN] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, [3363] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_RPAREN] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3840), + [anon_sym_RBRACE] = ACTIONS(7654), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), + [sym_word] = ACTIONS(866), }, [3364] = { - [sym_concatenation] = STATE(3841), - [sym_string] = STATE(3840), - [sym_simple_expansion] = STATE(3840), - [sym_string_expansion] = STATE(3840), - [sym_expansion] = STATE(3840), - [sym_command_substitution] = STATE(3840), - [sym_process_substitution] = STATE(3840), - [anon_sym_RBRACE] = ACTIONS(7651), - [sym__special_characters] = ACTIONS(7653), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(7655), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7657), + [sym_file_descriptor] = ACTIONS(4895), + [sym__concat] = ACTIONS(4895), + [sym_variable_name] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_RPAREN] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_GT_GT] = ACTIONS(4897), + [anon_sym_AMP_GT] = ACTIONS(4897), + [anon_sym_AMP_GT_GT] = ACTIONS(4897), + [anon_sym_LT_AMP] = ACTIONS(4897), + [anon_sym_GT_AMP] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(4897), + [anon_sym_DQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR] = ACTIONS(4897), + [sym_raw_string] = ACTIONS(4897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), + [anon_sym_BQUOTE] = ACTIONS(4897), + [anon_sym_LT_LPAREN] = ACTIONS(4897), + [anon_sym_GT_LPAREN] = ACTIONS(4897), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4897), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), }, [3365] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_RPAREN] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7656), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), + [sym_word] = ACTIONS(866), }, [3366] = { + [sym_file_descriptor] = ACTIONS(4901), + [sym__concat] = ACTIONS(4901), + [sym_variable_name] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_RPAREN] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [anon_sym_LT] = ACTIONS(4903), + [anon_sym_GT] = ACTIONS(4903), + [anon_sym_GT_GT] = ACTIONS(4903), + [anon_sym_AMP_GT] = ACTIONS(4903), + [anon_sym_AMP_GT_GT] = ACTIONS(4903), + [anon_sym_LT_AMP] = ACTIONS(4903), + [anon_sym_GT_AMP] = ACTIONS(4903), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4903), + [sym_raw_string] = ACTIONS(4903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), + [anon_sym_BQUOTE] = ACTIONS(4903), + [anon_sym_LT_LPAREN] = ACTIONS(4903), + [anon_sym_GT_LPAREN] = ACTIONS(4903), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7659), + [sym_word] = ACTIONS(4903), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), }, [3367] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7661), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7658), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3368] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(7663), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [3369] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3847), - [anon_sym_RBRACE] = ACTIONS(7665), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7667), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [aux_sym_concatenation_repeat1] = STATE(3369), + [sym__concat] = ACTIONS(7660), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_RPAREN] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [3370] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3850), - [anon_sym_RBRACE] = ACTIONS(7669), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7671), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), }, [3371] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3852), - [anon_sym_RBRACE] = ACTIONS(7651), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7673), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(3846), + [sym_string] = STATE(3845), + [sym_simple_expansion] = STATE(3845), + [sym_string_expansion] = STATE(3845), + [sym_expansion] = STATE(3845), + [sym_command_substitution] = STATE(3845), + [sym_process_substitution] = STATE(3845), + [anon_sym_RBRACE] = ACTIONS(7663), + [sym__special_characters] = ACTIONS(7665), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(7667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7669), }, [3372] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_RPAREN] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_RPAREN] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), }, [3373] = { [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7675), + [sym_regex_without_right_brace] = ACTIONS(7671), }, [3374] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7677), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7673), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3375] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_RPAREN] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(7675), + [sym_comment] = ACTIONS(56), }, [3376] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3852), + [anon_sym_RBRACE] = ACTIONS(7677), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7679), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7679), + [sym_word] = ACTIONS(866), }, [3377] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7651), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3855), + [anon_sym_RBRACE] = ACTIONS(7681), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7683), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3378] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_RPAREN] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3857), + [anon_sym_RBRACE] = ACTIONS(7663), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7685), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), + [sym_word] = ACTIONS(866), }, [3379] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_RPAREN] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [sym__concat] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_RPAREN] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), }, [3380] = { - [sym__concat] = ACTIONS(6025), - [sym_variable_name] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [sym__special_characters] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6027), - [sym_raw_string] = ACTIONS(6027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), - [anon_sym_BQUOTE] = ACTIONS(6027), - [anon_sym_LT_LPAREN] = ACTIONS(6027), - [anon_sym_GT_LPAREN] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6027), - [sym_word] = ACTIONS(6027), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), + [sym_regex_without_right_brace] = ACTIONS(7687), }, [3381] = { - [sym__concat] = ACTIONS(6029), - [sym_variable_name] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [sym__special_characters] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6031), - [sym_raw_string] = ACTIONS(6031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), - [anon_sym_BQUOTE] = ACTIONS(6031), - [anon_sym_LT_LPAREN] = ACTIONS(6031), - [anon_sym_GT_LPAREN] = ACTIONS(6031), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7689), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6031), - [sym_word] = ACTIONS(6031), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), + [sym_word] = ACTIONS(866), }, [3382] = { - [sym__concat] = ACTIONS(6033), - [sym_variable_name] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_RPAREN] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), - [sym__special_characters] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6035), - [sym_raw_string] = ACTIONS(6035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), - [anon_sym_BQUOTE] = ACTIONS(6035), - [anon_sym_LT_LPAREN] = ACTIONS(6035), - [anon_sym_GT_LPAREN] = ACTIONS(6035), + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_RPAREN] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6035), - [sym_word] = ACTIONS(6035), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), }, [3383] = { - [sym__concat] = ACTIONS(6037), - [sym_variable_name] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_RPAREN] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), - [sym__special_characters] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6039), - [sym_raw_string] = ACTIONS(6039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), - [anon_sym_BQUOTE] = ACTIONS(6039), - [anon_sym_LT_LPAREN] = ACTIONS(6039), - [anon_sym_GT_LPAREN] = ACTIONS(6039), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6039), - [sym_word] = ACTIONS(6039), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), + [sym_regex_without_right_brace] = ACTIONS(7691), }, [3384] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7681), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7663), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3385] = { - [sym__concat] = ACTIONS(6043), - [sym_variable_name] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6045), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_RPAREN] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6045), - [sym_word] = ACTIONS(6045), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), }, [3386] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7683), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_RPAREN] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), }, [3387] = { + [sym__concat] = ACTIONS(6041), + [sym_variable_name] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_RPAREN] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6043), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6043), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6043), + [sym_word] = ACTIONS(6043), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), + }, + [3388] = { + [sym__concat] = ACTIONS(6045), + [sym_variable_name] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_RPAREN] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [sym__special_characters] = ACTIONS(6047), + [anon_sym_DQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR] = ACTIONS(6047), + [sym_raw_string] = ACTIONS(6047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), + [anon_sym_BQUOTE] = ACTIONS(6047), + [anon_sym_LT_LPAREN] = ACTIONS(6047), + [anon_sym_GT_LPAREN] = ACTIONS(6047), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6047), + [sym_word] = ACTIONS(6047), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), + }, + [3389] = { [sym__concat] = ACTIONS(6049), [sym_variable_name] = ACTIONS(6049), [anon_sym_PIPE] = ACTIONS(6051), @@ -85873,61 +85866,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6051), [anon_sym_AMP] = ACTIONS(6051), }, - [3388] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7685), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3389] = { - [sym__concat] = ACTIONS(6055), - [sym_variable_name] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_RPAREN] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [sym__special_characters] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(6057), - [anon_sym_DOLLAR] = ACTIONS(6057), - [sym_raw_string] = ACTIONS(6057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), - [anon_sym_BQUOTE] = ACTIONS(6057), - [anon_sym_LT_LPAREN] = ACTIONS(6057), - [anon_sym_GT_LPAREN] = ACTIONS(6057), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6057), - [sym_word] = ACTIONS(6057), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), - }, [3390] = { + [sym__concat] = ACTIONS(6053), + [sym_variable_name] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6055), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6055), + [sym_word] = ACTIONS(6055), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), + }, + [3391] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7693), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3392] = { [sym__concat] = ACTIONS(6059), [sym_variable_name] = ACTIONS(6059), [anon_sym_PIPE] = ACTIONS(6061), @@ -85952,185 +85945,188 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6061), [anon_sym_AMP] = ACTIONS(6061), }, - [3391] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [sym__special_characters] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6027), - [sym_raw_string] = ACTIONS(6027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), - [anon_sym_BQUOTE] = ACTIONS(6027), - [anon_sym_LT_LPAREN] = ACTIONS(6027), - [anon_sym_GT_LPAREN] = ACTIONS(6027), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6027), - [sym_word] = ACTIONS(6027), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), - }, - [3392] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [sym__special_characters] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6031), - [sym_raw_string] = ACTIONS(6031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), - [anon_sym_BQUOTE] = ACTIONS(6031), - [anon_sym_LT_LPAREN] = ACTIONS(6031), - [anon_sym_GT_LPAREN] = ACTIONS(6031), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6031), - [sym_word] = ACTIONS(6031), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), - }, [3393] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_RPAREN] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), - [sym__special_characters] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6035), - [sym_raw_string] = ACTIONS(6035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), - [anon_sym_BQUOTE] = ACTIONS(6035), - [anon_sym_LT_LPAREN] = ACTIONS(6035), - [anon_sym_GT_LPAREN] = ACTIONS(6035), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7695), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6035), - [sym_word] = ACTIONS(6035), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), + [sym_word] = ACTIONS(866), }, [3394] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_RPAREN] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), - [sym__special_characters] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6039), - [sym_raw_string] = ACTIONS(6039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), - [anon_sym_BQUOTE] = ACTIONS(6039), - [anon_sym_LT_LPAREN] = ACTIONS(6039), - [anon_sym_GT_LPAREN] = ACTIONS(6039), + [sym__concat] = ACTIONS(6065), + [sym_variable_name] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_RPAREN] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [sym__special_characters] = ACTIONS(6067), + [anon_sym_DQUOTE] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6067), + [sym_raw_string] = ACTIONS(6067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), + [anon_sym_BQUOTE] = ACTIONS(6067), + [anon_sym_LT_LPAREN] = ACTIONS(6067), + [anon_sym_GT_LPAREN] = ACTIONS(6067), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6039), - [sym_word] = ACTIONS(6039), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6067), + [sym_word] = ACTIONS(6067), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), }, [3395] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7687), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7697), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3396] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6045), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym__concat] = ACTIONS(6071), + [sym_variable_name] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_RPAREN] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [sym__special_characters] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR] = ACTIONS(6073), + [sym_raw_string] = ACTIONS(6073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), + [anon_sym_BQUOTE] = ACTIONS(6073), + [anon_sym_LT_LPAREN] = ACTIONS(6073), + [anon_sym_GT_LPAREN] = ACTIONS(6073), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6045), - [sym_word] = ACTIONS(6045), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6073), + [sym_word] = ACTIONS(6073), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), }, [3397] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7689), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(6075), + [sym_variable_name] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_RPAREN] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), + [anon_sym_BQUOTE] = ACTIONS(6077), + [anon_sym_LT_LPAREN] = ACTIONS(6077), + [anon_sym_GT_LPAREN] = ACTIONS(6077), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6077), + [sym_word] = ACTIONS(6077), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), }, [3398] = { + [sym__concat] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_RPAREN] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6043), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6043), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6043), + [sym_word] = ACTIONS(6043), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), + }, + [3399] = { + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_RPAREN] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [sym__special_characters] = ACTIONS(6047), + [anon_sym_DQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR] = ACTIONS(6047), + [sym_raw_string] = ACTIONS(6047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), + [anon_sym_BQUOTE] = ACTIONS(6047), + [anon_sym_LT_LPAREN] = ACTIONS(6047), + [anon_sym_GT_LPAREN] = ACTIONS(6047), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6047), + [sym_word] = ACTIONS(6047), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), + }, + [3400] = { [sym__concat] = ACTIONS(6049), [anon_sym_PIPE] = ACTIONS(6051), [anon_sym_RPAREN] = ACTIONS(6051), @@ -86154,60 +86150,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6051), [anon_sym_AMP] = ACTIONS(6051), }, - [3399] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7691), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3400] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_RPAREN] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [sym__special_characters] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(6057), - [anon_sym_DOLLAR] = ACTIONS(6057), - [sym_raw_string] = ACTIONS(6057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), - [anon_sym_BQUOTE] = ACTIONS(6057), - [anon_sym_LT_LPAREN] = ACTIONS(6057), - [anon_sym_GT_LPAREN] = ACTIONS(6057), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6057), - [sym_word] = ACTIONS(6057), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), - }, [3401] = { + [sym__concat] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6055), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6055), + [sym_word] = ACTIONS(6055), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), + }, + [3402] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7699), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3403] = { [sym__concat] = ACTIONS(6059), [anon_sym_PIPE] = ACTIONS(6061), [anon_sym_RPAREN] = ACTIONS(6061), @@ -86231,261 +86227,293 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6061), [anon_sym_AMP] = ACTIONS(6061), }, - [3402] = { - [sym_file_descriptor] = ACTIONS(7018), - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_RPAREN] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [anon_sym_EQ_TILDE] = ACTIONS(7020), - [anon_sym_EQ_EQ] = ACTIONS(7020), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_GT] = ACTIONS(7020), - [anon_sym_AMP_GT] = ACTIONS(7020), - [anon_sym_AMP_GT_GT] = ACTIONS(7020), - [anon_sym_LT_AMP] = ACTIONS(7020), - [anon_sym_GT_AMP] = ACTIONS(7020), - [anon_sym_LT_LT] = ACTIONS(7020), - [anon_sym_LT_LT_DASH] = ACTIONS(7020), - [anon_sym_LT_LT_LT] = ACTIONS(7020), - [sym__special_characters] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7020), - [anon_sym_DOLLAR] = ACTIONS(7020), - [sym_raw_string] = ACTIONS(7020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), - [anon_sym_BQUOTE] = ACTIONS(7020), - [anon_sym_LT_LPAREN] = ACTIONS(7020), - [anon_sym_GT_LPAREN] = ACTIONS(7020), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7020), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), - }, - [3403] = { - [sym_file_descriptor] = ACTIONS(7022), - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_RPAREN] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), - [anon_sym_EQ_TILDE] = ACTIONS(7024), - [anon_sym_EQ_EQ] = ACTIONS(7024), - [anon_sym_LT] = ACTIONS(7024), - [anon_sym_GT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_AMP_GT] = ACTIONS(7024), - [anon_sym_AMP_GT_GT] = ACTIONS(7024), - [anon_sym_LT_AMP] = ACTIONS(7024), - [anon_sym_GT_AMP] = ACTIONS(7024), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_LT_LT_DASH] = ACTIONS(7024), - [anon_sym_LT_LT_LT] = ACTIONS(7024), - [sym__special_characters] = ACTIONS(7024), - [anon_sym_DQUOTE] = ACTIONS(7024), - [anon_sym_DOLLAR] = ACTIONS(7024), - [sym_raw_string] = ACTIONS(7024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), - [anon_sym_BQUOTE] = ACTIONS(7024), - [anon_sym_LT_LPAREN] = ACTIONS(7024), - [anon_sym_GT_LPAREN] = ACTIONS(7024), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), - }, [3404] = { - [sym_file_descriptor] = ACTIONS(7026), - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_RPAREN] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), - [anon_sym_EQ_TILDE] = ACTIONS(7028), - [anon_sym_EQ_EQ] = ACTIONS(7028), - [anon_sym_LT] = ACTIONS(7028), - [anon_sym_GT] = ACTIONS(7028), - [anon_sym_GT_GT] = ACTIONS(7028), - [anon_sym_AMP_GT] = ACTIONS(7028), - [anon_sym_AMP_GT_GT] = ACTIONS(7028), - [anon_sym_LT_AMP] = ACTIONS(7028), - [anon_sym_GT_AMP] = ACTIONS(7028), - [anon_sym_LT_LT] = ACTIONS(7028), - [anon_sym_LT_LT_DASH] = ACTIONS(7028), - [anon_sym_LT_LT_LT] = ACTIONS(7028), - [sym__special_characters] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7028), - [anon_sym_DOLLAR] = ACTIONS(7028), - [sym_raw_string] = ACTIONS(7028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), - [anon_sym_BQUOTE] = ACTIONS(7028), - [anon_sym_LT_LPAREN] = ACTIONS(7028), - [anon_sym_GT_LPAREN] = ACTIONS(7028), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7701), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7028), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), + [sym_word] = ACTIONS(866), }, [3405] = { - [sym_file_descriptor] = ACTIONS(4790), - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_RPAREN] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_AMP_GT] = ACTIONS(4792), - [anon_sym_AMP_GT_GT] = ACTIONS(4792), - [anon_sym_LT_AMP] = ACTIONS(4792), - [anon_sym_GT_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4792), - [anon_sym_LT_LT_DASH] = ACTIONS(4792), - [anon_sym_LT_LT_LT] = ACTIONS(4792), + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_RPAREN] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [sym__special_characters] = ACTIONS(6067), + [anon_sym_DQUOTE] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6067), + [sym_raw_string] = ACTIONS(6067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), + [anon_sym_BQUOTE] = ACTIONS(6067), + [anon_sym_LT_LPAREN] = ACTIONS(6067), + [anon_sym_GT_LPAREN] = ACTIONS(6067), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6067), + [sym_word] = ACTIONS(6067), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), }, [3406] = { - [sym_file_descriptor] = ACTIONS(4796), - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_RPAREN] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4798), - [anon_sym_GT] = ACTIONS(4798), - [anon_sym_GT_GT] = ACTIONS(4798), - [anon_sym_AMP_GT] = ACTIONS(4798), - [anon_sym_AMP_GT_GT] = ACTIONS(4798), - [anon_sym_LT_AMP] = ACTIONS(4798), - [anon_sym_GT_AMP] = ACTIONS(4798), - [anon_sym_LT_LT] = ACTIONS(4798), - [anon_sym_LT_LT_DASH] = ACTIONS(4798), - [anon_sym_LT_LT_LT] = ACTIONS(4798), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7703), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), + [sym_word] = ACTIONS(866), }, [3407] = { - [sym_file_descriptor] = ACTIONS(4859), - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_RPAREN] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_LT] = ACTIONS(4861), - [anon_sym_GT] = ACTIONS(4861), - [anon_sym_GT_GT] = ACTIONS(4861), - [anon_sym_AMP_GT] = ACTIONS(4861), - [anon_sym_AMP_GT_GT] = ACTIONS(4861), - [anon_sym_LT_AMP] = ACTIONS(4861), - [anon_sym_GT_AMP] = ACTIONS(4861), - [anon_sym_LT_LT] = ACTIONS(4861), - [anon_sym_LT_LT_DASH] = ACTIONS(4861), - [anon_sym_LT_LT_LT] = ACTIONS(4861), + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_RPAREN] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [sym__special_characters] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR] = ACTIONS(6073), + [sym_raw_string] = ACTIONS(6073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), + [anon_sym_BQUOTE] = ACTIONS(6073), + [anon_sym_LT_LPAREN] = ACTIONS(6073), + [anon_sym_GT_LPAREN] = ACTIONS(6073), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6073), + [sym_word] = ACTIONS(6073), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), }, [3408] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7693), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_RPAREN] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), + [anon_sym_BQUOTE] = ACTIONS(6077), + [anon_sym_LT_LPAREN] = ACTIONS(6077), + [anon_sym_GT_LPAREN] = ACTIONS(6077), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6077), + [sym_word] = ACTIONS(6077), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), }, [3409] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7695), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(7032), + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_RPAREN] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [anon_sym_EQ_TILDE] = ACTIONS(7034), + [anon_sym_EQ_EQ] = ACTIONS(7034), + [anon_sym_LT] = ACTIONS(7034), + [anon_sym_GT] = ACTIONS(7034), + [anon_sym_GT_GT] = ACTIONS(7034), + [anon_sym_AMP_GT] = ACTIONS(7034), + [anon_sym_AMP_GT_GT] = ACTIONS(7034), + [anon_sym_LT_AMP] = ACTIONS(7034), + [anon_sym_GT_AMP] = ACTIONS(7034), + [anon_sym_LT_LT] = ACTIONS(7034), + [anon_sym_LT_LT_DASH] = ACTIONS(7034), + [anon_sym_LT_LT_LT] = ACTIONS(7034), + [sym__special_characters] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [anon_sym_DOLLAR] = ACTIONS(7034), + [sym_raw_string] = ACTIONS(7034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), + [anon_sym_BQUOTE] = ACTIONS(7034), + [anon_sym_LT_LPAREN] = ACTIONS(7034), + [anon_sym_GT_LPAREN] = ACTIONS(7034), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(7034), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), }, [3410] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7697), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(7036), + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_RPAREN] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [anon_sym_EQ_TILDE] = ACTIONS(7038), + [anon_sym_EQ_EQ] = ACTIONS(7038), + [anon_sym_LT] = ACTIONS(7038), + [anon_sym_GT] = ACTIONS(7038), + [anon_sym_GT_GT] = ACTIONS(7038), + [anon_sym_AMP_GT] = ACTIONS(7038), + [anon_sym_AMP_GT_GT] = ACTIONS(7038), + [anon_sym_LT_AMP] = ACTIONS(7038), + [anon_sym_GT_AMP] = ACTIONS(7038), + [anon_sym_LT_LT] = ACTIONS(7038), + [anon_sym_LT_LT_DASH] = ACTIONS(7038), + [anon_sym_LT_LT_LT] = ACTIONS(7038), + [sym__special_characters] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7038), + [anon_sym_DOLLAR] = ACTIONS(7038), + [sym_raw_string] = ACTIONS(7038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), + [anon_sym_BQUOTE] = ACTIONS(7038), + [anon_sym_LT_LPAREN] = ACTIONS(7038), + [anon_sym_GT_LPAREN] = ACTIONS(7038), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(7038), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), }, [3411] = { - [anon_sym_RBRACE] = ACTIONS(7697), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(7040), + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_RPAREN] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [anon_sym_EQ_TILDE] = ACTIONS(7042), + [anon_sym_EQ_EQ] = ACTIONS(7042), + [anon_sym_LT] = ACTIONS(7042), + [anon_sym_GT] = ACTIONS(7042), + [anon_sym_GT_GT] = ACTIONS(7042), + [anon_sym_AMP_GT] = ACTIONS(7042), + [anon_sym_AMP_GT_GT] = ACTIONS(7042), + [anon_sym_LT_AMP] = ACTIONS(7042), + [anon_sym_GT_AMP] = ACTIONS(7042), + [anon_sym_LT_LT] = ACTIONS(7042), + [anon_sym_LT_LT_DASH] = ACTIONS(7042), + [anon_sym_LT_LT_LT] = ACTIONS(7042), + [sym__special_characters] = ACTIONS(7042), + [anon_sym_DQUOTE] = ACTIONS(7042), + [anon_sym_DOLLAR] = ACTIONS(7042), + [sym_raw_string] = ACTIONS(7042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), + [anon_sym_BQUOTE] = ACTIONS(7042), + [anon_sym_LT_LPAREN] = ACTIONS(7042), + [anon_sym_GT_LPAREN] = ACTIONS(7042), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(7042), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), }, [3412] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3866), - [anon_sym_RBRACE] = ACTIONS(7699), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(4802), + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_RPAREN] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_GT_GT] = ACTIONS(4804), + [anon_sym_AMP_GT] = ACTIONS(4804), + [anon_sym_AMP_GT_GT] = ACTIONS(4804), + [anon_sym_LT_AMP] = ACTIONS(4804), + [anon_sym_GT_AMP] = ACTIONS(4804), + [anon_sym_LT_LT] = ACTIONS(4804), + [anon_sym_LT_LT_DASH] = ACTIONS(4804), + [anon_sym_LT_LT_LT] = ACTIONS(4804), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), }, [3413] = { + [sym_file_descriptor] = ACTIONS(4808), + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_RPAREN] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_GT_GT] = ACTIONS(4810), + [anon_sym_AMP_GT] = ACTIONS(4810), + [anon_sym_AMP_GT_GT] = ACTIONS(4810), + [anon_sym_LT_AMP] = ACTIONS(4810), + [anon_sym_GT_AMP] = ACTIONS(4810), + [anon_sym_LT_LT] = ACTIONS(4810), + [anon_sym_LT_LT_DASH] = ACTIONS(4810), + [anon_sym_LT_LT_LT] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), + }, + [3414] = { [sym_file_descriptor] = ACTIONS(4871), [sym__concat] = ACTIONS(4871), [anon_sym_PIPE] = ACTIONS(4873), @@ -86509,89 +86537,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4873), [anon_sym_AMP] = ACTIONS(4873), }, - [3414] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3868), - [anon_sym_RBRACE] = ACTIONS(7701), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [3415] = { - [sym_file_descriptor] = ACTIONS(4877), - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_GT_GT] = ACTIONS(4879), - [anon_sym_AMP_GT] = ACTIONS(4879), - [anon_sym_AMP_GT_GT] = ACTIONS(4879), - [anon_sym_LT_AMP] = ACTIONS(4879), - [anon_sym_GT_AMP] = ACTIONS(4879), - [anon_sym_LT_LT] = ACTIONS(4879), - [anon_sym_LT_LT_DASH] = ACTIONS(4879), - [anon_sym_LT_LT_LT] = ACTIONS(4879), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7705), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), + [sym_word] = ACTIONS(866), }, [3416] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3870), - [anon_sym_RBRACE] = ACTIONS(7703), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7707), + [sym_comment] = ACTIONS(56), }, [3417] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7709), + [sym_comment] = ACTIONS(56), + }, + [3418] = { + [anon_sym_RBRACE] = ACTIONS(7709), + [sym_comment] = ACTIONS(56), + }, + [3419] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3871), + [anon_sym_RBRACE] = ACTIONS(7711), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3420] = { [sym_file_descriptor] = ACTIONS(4883), [sym__concat] = ACTIONS(4883), [anon_sym_PIPE] = ACTIONS(4885), @@ -86615,36 +86635,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4885), [anon_sym_AMP] = ACTIONS(4885), }, - [3418] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7705), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3421] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3873), + [anon_sym_RBRACE] = ACTIONS(7713), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [3419] = { + [3422] = { [sym_file_descriptor] = ACTIONS(4889), [sym__concat] = ACTIONS(4889), [anon_sym_PIPE] = ACTIONS(4891), @@ -86668,785 +86688,767 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4891), [anon_sym_AMP] = ACTIONS(4891), }, - [3420] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7707), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3421] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_EQ_TILDE] = ACTIONS(7709), - [anon_sym_EQ_EQ] = ACTIONS(7709), - [anon_sym_RBRACK] = ACTIONS(7018), - [sym__special_characters] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7018), - [anon_sym_DOLLAR] = ACTIONS(7709), - [sym_raw_string] = ACTIONS(7018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), - [anon_sym_BQUOTE] = ACTIONS(7018), - [anon_sym_LT_LPAREN] = ACTIONS(7018), - [anon_sym_GT_LPAREN] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7020), - }, - [3422] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_EQ_TILDE] = ACTIONS(7711), - [anon_sym_EQ_EQ] = ACTIONS(7711), - [anon_sym_RBRACK] = ACTIONS(7022), - [sym__special_characters] = ACTIONS(7024), - [anon_sym_DQUOTE] = ACTIONS(7022), - [anon_sym_DOLLAR] = ACTIONS(7711), - [sym_raw_string] = ACTIONS(7022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), - [anon_sym_BQUOTE] = ACTIONS(7022), - [anon_sym_LT_LPAREN] = ACTIONS(7022), - [anon_sym_GT_LPAREN] = ACTIONS(7022), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7024), - }, [3423] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_EQ_TILDE] = ACTIONS(7713), - [anon_sym_EQ_EQ] = ACTIONS(7713), - [anon_sym_RBRACK] = ACTIONS(7026), - [sym__special_characters] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7026), - [anon_sym_DOLLAR] = ACTIONS(7713), - [sym_raw_string] = ACTIONS(7026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), - [anon_sym_BQUOTE] = ACTIONS(7026), - [anon_sym_LT_LPAREN] = ACTIONS(7026), - [anon_sym_GT_LPAREN] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7028), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3875), + [anon_sym_RBRACE] = ACTIONS(7715), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3424] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_EQ_TILDE] = ACTIONS(7709), - [anon_sym_EQ_EQ] = ACTIONS(7709), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7018), - [sym__special_characters] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7018), - [anon_sym_DOLLAR] = ACTIONS(7709), - [sym_raw_string] = ACTIONS(7018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), - [anon_sym_BQUOTE] = ACTIONS(7018), - [anon_sym_LT_LPAREN] = ACTIONS(7018), - [anon_sym_GT_LPAREN] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7020), + [sym_file_descriptor] = ACTIONS(4895), + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_RPAREN] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_GT_GT] = ACTIONS(4897), + [anon_sym_AMP_GT] = ACTIONS(4897), + [anon_sym_AMP_GT_GT] = ACTIONS(4897), + [anon_sym_LT_AMP] = ACTIONS(4897), + [anon_sym_GT_AMP] = ACTIONS(4897), + [anon_sym_LT_LT] = ACTIONS(4897), + [anon_sym_LT_LT_DASH] = ACTIONS(4897), + [anon_sym_LT_LT_LT] = ACTIONS(4897), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), }, [3425] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_EQ_TILDE] = ACTIONS(7711), - [anon_sym_EQ_EQ] = ACTIONS(7711), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7022), - [sym__special_characters] = ACTIONS(7024), - [anon_sym_DQUOTE] = ACTIONS(7022), - [anon_sym_DOLLAR] = ACTIONS(7711), - [sym_raw_string] = ACTIONS(7022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), - [anon_sym_BQUOTE] = ACTIONS(7022), - [anon_sym_LT_LPAREN] = ACTIONS(7022), - [anon_sym_GT_LPAREN] = ACTIONS(7022), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7024), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7717), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3426] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_EQ_TILDE] = ACTIONS(7713), - [anon_sym_EQ_EQ] = ACTIONS(7713), - [anon_sym_RBRACK_RBRACK] = ACTIONS(7026), - [sym__special_characters] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7026), - [anon_sym_DOLLAR] = ACTIONS(7713), - [sym_raw_string] = ACTIONS(7026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), - [anon_sym_BQUOTE] = ACTIONS(7026), - [anon_sym_LT_LPAREN] = ACTIONS(7026), - [anon_sym_GT_LPAREN] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7028), + [sym_file_descriptor] = ACTIONS(4901), + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_RPAREN] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [anon_sym_LT] = ACTIONS(4903), + [anon_sym_GT] = ACTIONS(4903), + [anon_sym_GT_GT] = ACTIONS(4903), + [anon_sym_AMP_GT] = ACTIONS(4903), + [anon_sym_AMP_GT_GT] = ACTIONS(4903), + [anon_sym_LT_AMP] = ACTIONS(4903), + [anon_sym_GT_AMP] = ACTIONS(4903), + [anon_sym_LT_LT] = ACTIONS(4903), + [anon_sym_LT_LT_DASH] = ACTIONS(4903), + [anon_sym_LT_LT_LT] = ACTIONS(4903), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), }, [3427] = { - [sym__concat] = ACTIONS(7018), - [sym_variable_name] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [sym__special_characters] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7020), - [anon_sym_DOLLAR] = ACTIONS(7020), - [sym_raw_string] = ACTIONS(7020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), - [anon_sym_BQUOTE] = ACTIONS(7020), - [anon_sym_LT_LPAREN] = ACTIONS(7020), - [anon_sym_GT_LPAREN] = ACTIONS(7020), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7719), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7020), - [sym_word] = ACTIONS(7020), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), + [sym_word] = ACTIONS(866), }, [3428] = { - [sym__concat] = ACTIONS(7022), - [sym_variable_name] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), - [sym__special_characters] = ACTIONS(7024), - [anon_sym_DQUOTE] = ACTIONS(7024), - [anon_sym_DOLLAR] = ACTIONS(7024), - [sym_raw_string] = ACTIONS(7024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), - [anon_sym_BQUOTE] = ACTIONS(7024), - [anon_sym_LT_LPAREN] = ACTIONS(7024), - [anon_sym_GT_LPAREN] = ACTIONS(7024), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7024), - [sym_word] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), + [sym__concat] = ACTIONS(7032), + [anon_sym_EQ_TILDE] = ACTIONS(7721), + [anon_sym_EQ_EQ] = ACTIONS(7721), + [anon_sym_RBRACK] = ACTIONS(7032), + [sym__special_characters] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7721), + [sym_raw_string] = ACTIONS(7032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), + [anon_sym_BQUOTE] = ACTIONS(7032), + [anon_sym_LT_LPAREN] = ACTIONS(7032), + [anon_sym_GT_LPAREN] = ACTIONS(7032), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7034), }, [3429] = { - [sym__concat] = ACTIONS(7026), - [sym_variable_name] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), - [sym__special_characters] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7028), - [anon_sym_DOLLAR] = ACTIONS(7028), - [sym_raw_string] = ACTIONS(7028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), - [anon_sym_BQUOTE] = ACTIONS(7028), - [anon_sym_LT_LPAREN] = ACTIONS(7028), - [anon_sym_GT_LPAREN] = ACTIONS(7028), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7028), - [sym_word] = ACTIONS(7028), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), + [sym__concat] = ACTIONS(7036), + [anon_sym_EQ_TILDE] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7723), + [anon_sym_RBRACK] = ACTIONS(7036), + [sym__special_characters] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7036), + [anon_sym_DOLLAR] = ACTIONS(7723), + [sym_raw_string] = ACTIONS(7036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), + [anon_sym_BQUOTE] = ACTIONS(7036), + [anon_sym_LT_LPAREN] = ACTIONS(7036), + [anon_sym_GT_LPAREN] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7038), }, [3430] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [sym__special_characters] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7020), - [anon_sym_DOLLAR] = ACTIONS(7020), - [sym_raw_string] = ACTIONS(7020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), - [anon_sym_BQUOTE] = ACTIONS(7020), - [anon_sym_LT_LPAREN] = ACTIONS(7020), - [anon_sym_GT_LPAREN] = ACTIONS(7020), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7020), - [sym_word] = ACTIONS(7020), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), + [sym__concat] = ACTIONS(7040), + [anon_sym_EQ_TILDE] = ACTIONS(7725), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_RBRACK] = ACTIONS(7040), + [sym__special_characters] = ACTIONS(7042), + [anon_sym_DQUOTE] = ACTIONS(7040), + [anon_sym_DOLLAR] = ACTIONS(7725), + [sym_raw_string] = ACTIONS(7040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), + [anon_sym_BQUOTE] = ACTIONS(7040), + [anon_sym_LT_LPAREN] = ACTIONS(7040), + [anon_sym_GT_LPAREN] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7042), }, [3431] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), - [sym__special_characters] = ACTIONS(7024), - [anon_sym_DQUOTE] = ACTIONS(7024), - [anon_sym_DOLLAR] = ACTIONS(7024), - [sym_raw_string] = ACTIONS(7024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), - [anon_sym_BQUOTE] = ACTIONS(7024), - [anon_sym_LT_LPAREN] = ACTIONS(7024), - [anon_sym_GT_LPAREN] = ACTIONS(7024), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7024), - [sym_word] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), + [sym__concat] = ACTIONS(7032), + [anon_sym_EQ_TILDE] = ACTIONS(7721), + [anon_sym_EQ_EQ] = ACTIONS(7721), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7032), + [sym__special_characters] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7721), + [sym_raw_string] = ACTIONS(7032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), + [anon_sym_BQUOTE] = ACTIONS(7032), + [anon_sym_LT_LPAREN] = ACTIONS(7032), + [anon_sym_GT_LPAREN] = ACTIONS(7032), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7034), }, [3432] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), - [sym__special_characters] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7028), - [anon_sym_DOLLAR] = ACTIONS(7028), - [sym_raw_string] = ACTIONS(7028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), - [anon_sym_BQUOTE] = ACTIONS(7028), - [anon_sym_LT_LPAREN] = ACTIONS(7028), - [anon_sym_GT_LPAREN] = ACTIONS(7028), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7028), - [sym_word] = ACTIONS(7028), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), + [sym__concat] = ACTIONS(7036), + [anon_sym_EQ_TILDE] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7723), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7036), + [sym__special_characters] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7036), + [anon_sym_DOLLAR] = ACTIONS(7723), + [sym_raw_string] = ACTIONS(7036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), + [anon_sym_BQUOTE] = ACTIONS(7036), + [anon_sym_LT_LPAREN] = ACTIONS(7036), + [anon_sym_GT_LPAREN] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7038), }, [3433] = { - [sym_file_descriptor] = ACTIONS(7018), - [sym__concat] = ACTIONS(7018), - [sym_variable_name] = ACTIONS(7018), - [anon_sym_LT] = ACTIONS(7709), - [anon_sym_GT] = ACTIONS(7709), - [anon_sym_GT_GT] = ACTIONS(7018), - [anon_sym_AMP_GT] = ACTIONS(7709), - [anon_sym_AMP_GT_GT] = ACTIONS(7018), - [anon_sym_LT_AMP] = ACTIONS(7018), - [anon_sym_GT_AMP] = ACTIONS(7018), - [sym__special_characters] = ACTIONS(7709), - [anon_sym_DQUOTE] = ACTIONS(7018), - [anon_sym_DOLLAR] = ACTIONS(7709), - [sym_raw_string] = ACTIONS(7018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), - [anon_sym_BQUOTE] = ACTIONS(7018), - [anon_sym_LT_LPAREN] = ACTIONS(7018), - [anon_sym_GT_LPAREN] = ACTIONS(7018), + [sym__concat] = ACTIONS(7040), + [anon_sym_EQ_TILDE] = ACTIONS(7725), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_RBRACK_RBRACK] = ACTIONS(7040), + [sym__special_characters] = ACTIONS(7042), + [anon_sym_DQUOTE] = ACTIONS(7040), + [anon_sym_DOLLAR] = ACTIONS(7725), + [sym_raw_string] = ACTIONS(7040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), + [anon_sym_BQUOTE] = ACTIONS(7040), + [anon_sym_LT_LPAREN] = ACTIONS(7040), + [anon_sym_GT_LPAREN] = ACTIONS(7040), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7709), + [sym_word] = ACTIONS(7042), }, [3434] = { - [sym_file_descriptor] = ACTIONS(7022), - [sym__concat] = ACTIONS(7022), - [sym_variable_name] = ACTIONS(7022), - [anon_sym_LT] = ACTIONS(7711), - [anon_sym_GT] = ACTIONS(7711), - [anon_sym_GT_GT] = ACTIONS(7022), - [anon_sym_AMP_GT] = ACTIONS(7711), - [anon_sym_AMP_GT_GT] = ACTIONS(7022), - [anon_sym_LT_AMP] = ACTIONS(7022), - [anon_sym_GT_AMP] = ACTIONS(7022), - [sym__special_characters] = ACTIONS(7711), - [anon_sym_DQUOTE] = ACTIONS(7022), - [anon_sym_DOLLAR] = ACTIONS(7711), - [sym_raw_string] = ACTIONS(7022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), - [anon_sym_BQUOTE] = ACTIONS(7022), - [anon_sym_LT_LPAREN] = ACTIONS(7022), - [anon_sym_GT_LPAREN] = ACTIONS(7022), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7711), + [sym__concat] = ACTIONS(7032), + [sym_variable_name] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [sym__special_characters] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [anon_sym_DOLLAR] = ACTIONS(7034), + [sym_raw_string] = ACTIONS(7034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), + [anon_sym_BQUOTE] = ACTIONS(7034), + [anon_sym_LT_LPAREN] = ACTIONS(7034), + [anon_sym_GT_LPAREN] = ACTIONS(7034), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7034), + [sym_word] = ACTIONS(7034), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), }, [3435] = { - [sym_file_descriptor] = ACTIONS(7026), - [sym__concat] = ACTIONS(7026), - [sym_variable_name] = ACTIONS(7026), - [anon_sym_LT] = ACTIONS(7713), - [anon_sym_GT] = ACTIONS(7713), - [anon_sym_GT_GT] = ACTIONS(7026), - [anon_sym_AMP_GT] = ACTIONS(7713), - [anon_sym_AMP_GT_GT] = ACTIONS(7026), - [anon_sym_LT_AMP] = ACTIONS(7026), - [anon_sym_GT_AMP] = ACTIONS(7026), - [sym__special_characters] = ACTIONS(7713), - [anon_sym_DQUOTE] = ACTIONS(7026), - [anon_sym_DOLLAR] = ACTIONS(7713), - [sym_raw_string] = ACTIONS(7026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), - [anon_sym_BQUOTE] = ACTIONS(7026), - [anon_sym_LT_LPAREN] = ACTIONS(7026), - [anon_sym_GT_LPAREN] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7713), + [sym__concat] = ACTIONS(7036), + [sym_variable_name] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [sym__special_characters] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7038), + [anon_sym_DOLLAR] = ACTIONS(7038), + [sym_raw_string] = ACTIONS(7038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), + [anon_sym_BQUOTE] = ACTIONS(7038), + [anon_sym_LT_LPAREN] = ACTIONS(7038), + [anon_sym_GT_LPAREN] = ACTIONS(7038), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7038), + [sym_word] = ACTIONS(7038), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), }, [3436] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_DQUOTE] = ACTIONS(7020), - [anon_sym_DOLLAR] = ACTIONS(7020), - [sym__string_content] = ACTIONS(7709), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), - [anon_sym_BQUOTE] = ACTIONS(7020), + [sym__concat] = ACTIONS(7040), + [sym_variable_name] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [sym__special_characters] = ACTIONS(7042), + [anon_sym_DQUOTE] = ACTIONS(7042), + [anon_sym_DOLLAR] = ACTIONS(7042), + [sym_raw_string] = ACTIONS(7042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), + [anon_sym_BQUOTE] = ACTIONS(7042), + [anon_sym_LT_LPAREN] = ACTIONS(7042), + [anon_sym_GT_LPAREN] = ACTIONS(7042), [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7042), + [sym_word] = ACTIONS(7042), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), }, [3437] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_DQUOTE] = ACTIONS(7024), - [anon_sym_DOLLAR] = ACTIONS(7024), - [sym__string_content] = ACTIONS(7711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), - [anon_sym_BQUOTE] = ACTIONS(7024), + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [sym__special_characters] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [anon_sym_DOLLAR] = ACTIONS(7034), + [sym_raw_string] = ACTIONS(7034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), + [anon_sym_BQUOTE] = ACTIONS(7034), + [anon_sym_LT_LPAREN] = ACTIONS(7034), + [anon_sym_GT_LPAREN] = ACTIONS(7034), [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7034), + [sym_word] = ACTIONS(7034), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), }, [3438] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_DQUOTE] = ACTIONS(7028), - [anon_sym_DOLLAR] = ACTIONS(7028), - [sym__string_content] = ACTIONS(7713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), - [anon_sym_BQUOTE] = ACTIONS(7028), + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [sym__special_characters] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7038), + [anon_sym_DOLLAR] = ACTIONS(7038), + [sym_raw_string] = ACTIONS(7038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), + [anon_sym_BQUOTE] = ACTIONS(7038), + [anon_sym_LT_LPAREN] = ACTIONS(7038), + [anon_sym_GT_LPAREN] = ACTIONS(7038), [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7038), + [sym_word] = ACTIONS(7038), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), }, [3439] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_RBRACE] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [sym__special_characters] = ACTIONS(7042), + [anon_sym_DQUOTE] = ACTIONS(7042), + [anon_sym_DOLLAR] = ACTIONS(7042), + [sym_raw_string] = ACTIONS(7042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), + [anon_sym_BQUOTE] = ACTIONS(7042), + [anon_sym_LT_LPAREN] = ACTIONS(7042), + [anon_sym_GT_LPAREN] = ACTIONS(7042), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7042), + [sym_word] = ACTIONS(7042), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), }, [3440] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_RBRACE] = ACTIONS(4796), + [sym_file_descriptor] = ACTIONS(7032), + [sym__concat] = ACTIONS(7032), + [sym_variable_name] = ACTIONS(7032), + [anon_sym_LT] = ACTIONS(7721), + [anon_sym_GT] = ACTIONS(7721), + [anon_sym_GT_GT] = ACTIONS(7032), + [anon_sym_AMP_GT] = ACTIONS(7721), + [anon_sym_AMP_GT_GT] = ACTIONS(7032), + [anon_sym_LT_AMP] = ACTIONS(7032), + [anon_sym_GT_AMP] = ACTIONS(7032), + [sym__special_characters] = ACTIONS(7721), + [anon_sym_DQUOTE] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7721), + [sym_raw_string] = ACTIONS(7032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), + [anon_sym_BQUOTE] = ACTIONS(7032), + [anon_sym_LT_LPAREN] = ACTIONS(7032), + [anon_sym_GT_LPAREN] = ACTIONS(7032), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7721), }, [3441] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_RBRACE] = ACTIONS(4859), + [sym_file_descriptor] = ACTIONS(7036), + [sym__concat] = ACTIONS(7036), + [sym_variable_name] = ACTIONS(7036), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7036), + [anon_sym_AMP_GT] = ACTIONS(7723), + [anon_sym_AMP_GT_GT] = ACTIONS(7036), + [anon_sym_LT_AMP] = ACTIONS(7036), + [anon_sym_GT_AMP] = ACTIONS(7036), + [sym__special_characters] = ACTIONS(7723), + [anon_sym_DQUOTE] = ACTIONS(7036), + [anon_sym_DOLLAR] = ACTIONS(7723), + [sym_raw_string] = ACTIONS(7036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), + [anon_sym_BQUOTE] = ACTIONS(7036), + [anon_sym_LT_LPAREN] = ACTIONS(7036), + [anon_sym_GT_LPAREN] = ACTIONS(7036), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7723), }, [3442] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7715), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(7040), + [sym__concat] = ACTIONS(7040), + [sym_variable_name] = ACTIONS(7040), + [anon_sym_LT] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7725), + [anon_sym_GT_GT] = ACTIONS(7040), + [anon_sym_AMP_GT] = ACTIONS(7725), + [anon_sym_AMP_GT_GT] = ACTIONS(7040), + [anon_sym_LT_AMP] = ACTIONS(7040), + [anon_sym_GT_AMP] = ACTIONS(7040), + [sym__special_characters] = ACTIONS(7725), + [anon_sym_DQUOTE] = ACTIONS(7040), + [anon_sym_DOLLAR] = ACTIONS(7725), + [sym_raw_string] = ACTIONS(7040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), + [anon_sym_BQUOTE] = ACTIONS(7040), + [anon_sym_LT_LPAREN] = ACTIONS(7040), + [anon_sym_GT_LPAREN] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7725), }, [3443] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7717), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(7032), + [anon_sym_DQUOTE] = ACTIONS(7034), + [anon_sym_DOLLAR] = ACTIONS(7034), + [sym__string_content] = ACTIONS(7721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), + [anon_sym_BQUOTE] = ACTIONS(7034), + [sym_comment] = ACTIONS(182), }, [3444] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7719), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(7036), + [anon_sym_DQUOTE] = ACTIONS(7038), + [anon_sym_DOLLAR] = ACTIONS(7038), + [sym__string_content] = ACTIONS(7723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), + [anon_sym_BQUOTE] = ACTIONS(7038), + [sym_comment] = ACTIONS(182), }, [3445] = { - [anon_sym_RBRACE] = ACTIONS(7719), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(7040), + [anon_sym_DQUOTE] = ACTIONS(7042), + [anon_sym_DOLLAR] = ACTIONS(7042), + [sym__string_content] = ACTIONS(7725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), + [anon_sym_BQUOTE] = ACTIONS(7042), + [sym_comment] = ACTIONS(182), }, [3446] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3877), - [anon_sym_RBRACE] = ACTIONS(7721), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(4802), + [anon_sym_RBRACE] = ACTIONS(4802), + [sym_comment] = ACTIONS(56), }, [3447] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_RBRACE] = ACTIONS(4808), + [sym_comment] = ACTIONS(56), + }, + [3448] = { [sym__concat] = ACTIONS(4871), [anon_sym_RBRACE] = ACTIONS(4871), [sym_comment] = ACTIONS(56), }, - [3448] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3879), - [anon_sym_RBRACE] = ACTIONS(7723), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [3449] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_RBRACE] = ACTIONS(4877), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7727), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3450] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3881), - [anon_sym_RBRACE] = ACTIONS(7725), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7729), + [sym_comment] = ACTIONS(56), }, [3451] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7731), + [sym_comment] = ACTIONS(56), + }, + [3452] = { + [anon_sym_RBRACE] = ACTIONS(7731), + [sym_comment] = ACTIONS(56), + }, + [3453] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3882), + [anon_sym_RBRACE] = ACTIONS(7733), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3454] = { [sym__concat] = ACTIONS(4883), [anon_sym_RBRACE] = ACTIONS(4883), [sym_comment] = ACTIONS(56), }, - [3452] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7727), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3455] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3884), + [anon_sym_RBRACE] = ACTIONS(7735), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [3453] = { + [3456] = { [sym__concat] = ACTIONS(4889), [anon_sym_RBRACE] = ACTIONS(4889), [sym_comment] = ACTIONS(56), }, - [3454] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7729), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3455] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_RBRACE] = ACTIONS(6025), - [anon_sym_EQ] = ACTIONS(6916), - [sym__special_characters] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(6025), - [anon_sym_DOLLAR] = ACTIONS(6916), - [sym_raw_string] = ACTIONS(6025), - [anon_sym_POUND] = ACTIONS(6025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), - [anon_sym_COLON] = ACTIONS(6916), - [anon_sym_COLON_QMARK] = ACTIONS(6916), - [anon_sym_COLON_DASH] = ACTIONS(6916), - [anon_sym_PERCENT] = ACTIONS(6916), - [anon_sym_DASH] = ACTIONS(6916), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), - [anon_sym_BQUOTE] = ACTIONS(6025), - [anon_sym_LT_LPAREN] = ACTIONS(6025), - [anon_sym_GT_LPAREN] = ACTIONS(6025), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6027), - }, - [3456] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_RBRACE] = ACTIONS(6029), - [anon_sym_EQ] = ACTIONS(6918), - [sym__special_characters] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(6029), - [anon_sym_DOLLAR] = ACTIONS(6918), - [sym_raw_string] = ACTIONS(6029), - [anon_sym_POUND] = ACTIONS(6029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), - [anon_sym_COLON] = ACTIONS(6918), - [anon_sym_COLON_QMARK] = ACTIONS(6918), - [anon_sym_COLON_DASH] = ACTIONS(6918), - [anon_sym_PERCENT] = ACTIONS(6918), - [anon_sym_DASH] = ACTIONS(6918), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), - [anon_sym_BQUOTE] = ACTIONS(6029), - [anon_sym_LT_LPAREN] = ACTIONS(6029), - [anon_sym_GT_LPAREN] = ACTIONS(6029), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6031), - }, [3457] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_RBRACE] = ACTIONS(6033), - [anon_sym_EQ] = ACTIONS(6920), - [sym__special_characters] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(6033), - [anon_sym_DOLLAR] = ACTIONS(6920), - [sym_raw_string] = ACTIONS(6033), - [anon_sym_POUND] = ACTIONS(6033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), - [anon_sym_COLON] = ACTIONS(6920), - [anon_sym_COLON_QMARK] = ACTIONS(6920), - [anon_sym_COLON_DASH] = ACTIONS(6920), - [anon_sym_PERCENT] = ACTIONS(6920), - [anon_sym_DASH] = ACTIONS(6920), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), - [anon_sym_BQUOTE] = ACTIONS(6033), - [anon_sym_LT_LPAREN] = ACTIONS(6033), - [anon_sym_GT_LPAREN] = ACTIONS(6033), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3886), + [anon_sym_RBRACE] = ACTIONS(7737), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6035), + [sym_word] = ACTIONS(866), }, [3458] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_RBRACE] = ACTIONS(6037), - [anon_sym_EQ] = ACTIONS(6922), - [sym__special_characters] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(6922), - [sym_raw_string] = ACTIONS(6037), - [anon_sym_POUND] = ACTIONS(6037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), - [anon_sym_COLON] = ACTIONS(6922), - [anon_sym_COLON_QMARK] = ACTIONS(6922), - [anon_sym_COLON_DASH] = ACTIONS(6922), - [anon_sym_PERCENT] = ACTIONS(6922), - [anon_sym_DASH] = ACTIONS(6922), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), - [anon_sym_BQUOTE] = ACTIONS(6037), - [anon_sym_LT_LPAREN] = ACTIONS(6037), - [anon_sym_GT_LPAREN] = ACTIONS(6037), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6039), + [sym__concat] = ACTIONS(4895), + [anon_sym_RBRACE] = ACTIONS(4895), + [sym_comment] = ACTIONS(56), }, [3459] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7731), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7739), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3460] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_RBRACE] = ACTIONS(6043), - [anon_sym_EQ] = ACTIONS(6926), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6926), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_POUND] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_COLON] = ACTIONS(6926), - [anon_sym_COLON_QMARK] = ACTIONS(6926), - [anon_sym_COLON_DASH] = ACTIONS(6926), - [anon_sym_PERCENT] = ACTIONS(6926), - [anon_sym_DASH] = ACTIONS(6926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6045), + [sym__concat] = ACTIONS(4901), + [anon_sym_RBRACE] = ACTIONS(4901), + [sym_comment] = ACTIONS(56), }, [3461] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7733), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7741), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3462] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_RBRACE] = ACTIONS(6049), + [sym__concat] = ACTIONS(6041), + [anon_sym_RBRACE] = ACTIONS(6041), [anon_sym_EQ] = ACTIONS(6930), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(6043), + [anon_sym_DQUOTE] = ACTIONS(6041), [anon_sym_DOLLAR] = ACTIONS(6930), - [sym_raw_string] = ACTIONS(6049), - [anon_sym_POUND] = ACTIONS(6049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [sym_raw_string] = ACTIONS(6041), + [anon_sym_POUND] = ACTIONS(6041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), [anon_sym_COLON] = ACTIONS(6930), [anon_sym_COLON_QMARK] = ACTIONS(6930), [anon_sym_COLON_DASH] = ACTIONS(6930), [anon_sym_PERCENT] = ACTIONS(6930), [anon_sym_DASH] = ACTIONS(6930), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), + [anon_sym_BQUOTE] = ACTIONS(6041), + [anon_sym_LT_LPAREN] = ACTIONS(6041), + [anon_sym_GT_LPAREN] = ACTIONS(6041), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6043), + }, + [3463] = { + [sym__concat] = ACTIONS(6045), + [anon_sym_RBRACE] = ACTIONS(6045), + [anon_sym_EQ] = ACTIONS(6932), + [sym__special_characters] = ACTIONS(6047), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6932), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_POUND] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_COLON] = ACTIONS(6932), + [anon_sym_COLON_QMARK] = ACTIONS(6932), + [anon_sym_COLON_DASH] = ACTIONS(6932), + [anon_sym_PERCENT] = ACTIONS(6932), + [anon_sym_DASH] = ACTIONS(6932), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6047), + }, + [3464] = { + [sym__concat] = ACTIONS(6049), + [anon_sym_RBRACE] = ACTIONS(6049), + [anon_sym_EQ] = ACTIONS(6934), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6934), + [sym_raw_string] = ACTIONS(6049), + [anon_sym_POUND] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [anon_sym_COLON] = ACTIONS(6934), + [anon_sym_COLON_QMARK] = ACTIONS(6934), + [anon_sym_COLON_DASH] = ACTIONS(6934), + [anon_sym_PERCENT] = ACTIONS(6934), + [anon_sym_DASH] = ACTIONS(6934), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), [anon_sym_BQUOTE] = ACTIONS(6049), [anon_sym_LT_LPAREN] = ACTIONS(6049), @@ -87454,72 +87456,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(6051), }, - [3463] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7735), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3464] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_RBRACE] = ACTIONS(6055), - [anon_sym_EQ] = ACTIONS(6934), - [sym__special_characters] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_POUND] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_COLON] = ACTIONS(6934), - [anon_sym_COLON_QMARK] = ACTIONS(6934), - [anon_sym_COLON_DASH] = ACTIONS(6934), - [anon_sym_PERCENT] = ACTIONS(6934), - [anon_sym_DASH] = ACTIONS(6934), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6057), - }, [3465] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_RBRACE] = ACTIONS(6059), + [sym__concat] = ACTIONS(6053), + [anon_sym_RBRACE] = ACTIONS(6053), [anon_sym_EQ] = ACTIONS(6936), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6059), + [sym__special_characters] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6053), [anon_sym_DOLLAR] = ACTIONS(6936), - [sym_raw_string] = ACTIONS(6059), - [anon_sym_POUND] = ACTIONS(6059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [sym_raw_string] = ACTIONS(6053), + [anon_sym_POUND] = ACTIONS(6053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), [anon_sym_COLON] = ACTIONS(6936), [anon_sym_COLON_QMARK] = ACTIONS(6936), [anon_sym_COLON_DASH] = ACTIONS(6936), [anon_sym_PERCENT] = ACTIONS(6936), [anon_sym_DASH] = ACTIONS(6936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), + [anon_sym_BQUOTE] = ACTIONS(6053), + [anon_sym_LT_LPAREN] = ACTIONS(6053), + [anon_sym_GT_LPAREN] = ACTIONS(6053), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6055), + }, + [3466] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7743), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3467] = { + [sym__concat] = ACTIONS(6059), + [anon_sym_RBRACE] = ACTIONS(6059), + [anon_sym_EQ] = ACTIONS(6940), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6940), + [sym_raw_string] = ACTIONS(6059), + [anon_sym_POUND] = ACTIONS(6059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [anon_sym_COLON] = ACTIONS(6940), + [anon_sym_COLON_QMARK] = ACTIONS(6940), + [anon_sym_COLON_DASH] = ACTIONS(6940), + [anon_sym_PERCENT] = ACTIONS(6940), + [anon_sym_DASH] = ACTIONS(6940), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), [anon_sym_BQUOTE] = ACTIONS(6059), [anon_sym_LT_LPAREN] = ACTIONS(6059), @@ -87527,183 +87529,205 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(182), [sym_word] = ACTIONS(6061), }, - [3466] = { - [sym_file_descriptor] = ACTIONS(4790), - [sym__concat] = ACTIONS(4790), - [sym_variable_name] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_PIPE_AMP] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_GT_GT] = ACTIONS(4790), - [anon_sym_AMP_GT] = ACTIONS(5844), - [anon_sym_AMP_GT_GT] = ACTIONS(4790), - [anon_sym_LT_AMP] = ACTIONS(4790), - [anon_sym_GT_AMP] = ACTIONS(4790), - [sym__special_characters] = ACTIONS(5844), - [anon_sym_DQUOTE] = ACTIONS(4790), - [anon_sym_DOLLAR] = ACTIONS(5844), - [sym_raw_string] = ACTIONS(4790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4790), - [anon_sym_LT_LPAREN] = ACTIONS(4790), - [anon_sym_GT_LPAREN] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5844), - }, - [3467] = { - [sym_file_descriptor] = ACTIONS(4796), - [sym__concat] = ACTIONS(4796), - [sym_variable_name] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(4796), - [anon_sym_PIPE_AMP] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4796), - [anon_sym_PIPE_PIPE] = ACTIONS(4796), - [anon_sym_LT] = ACTIONS(5846), - [anon_sym_GT] = ACTIONS(5846), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_AMP_GT] = ACTIONS(5846), - [anon_sym_AMP_GT_GT] = ACTIONS(4796), - [anon_sym_LT_AMP] = ACTIONS(4796), - [anon_sym_GT_AMP] = ACTIONS(4796), - [sym__special_characters] = ACTIONS(5846), - [anon_sym_DQUOTE] = ACTIONS(4796), - [anon_sym_DOLLAR] = ACTIONS(5846), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), - [anon_sym_BQUOTE] = ACTIONS(4796), - [anon_sym_LT_LPAREN] = ACTIONS(4796), - [anon_sym_GT_LPAREN] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5846), - }, [3468] = { - [sym_file_descriptor] = ACTIONS(4859), - [sym__concat] = ACTIONS(4859), - [sym_variable_name] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_RPAREN] = ACTIONS(4859), - [anon_sym_PIPE_AMP] = ACTIONS(4859), - [anon_sym_AMP_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4859), - [anon_sym_LT] = ACTIONS(5848), - [anon_sym_GT] = ACTIONS(5848), - [anon_sym_GT_GT] = ACTIONS(4859), - [anon_sym_AMP_GT] = ACTIONS(5848), - [anon_sym_AMP_GT_GT] = ACTIONS(4859), - [anon_sym_LT_AMP] = ACTIONS(4859), - [anon_sym_GT_AMP] = ACTIONS(4859), - [sym__special_characters] = ACTIONS(5848), - [anon_sym_DQUOTE] = ACTIONS(4859), - [anon_sym_DOLLAR] = ACTIONS(5848), - [sym_raw_string] = ACTIONS(4859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4859), - [anon_sym_LT_LPAREN] = ACTIONS(4859), - [anon_sym_GT_LPAREN] = ACTIONS(4859), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5848), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7745), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3469] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7737), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(6065), + [anon_sym_RBRACE] = ACTIONS(6065), + [anon_sym_EQ] = ACTIONS(6944), + [sym__special_characters] = ACTIONS(6067), + [anon_sym_DQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR] = ACTIONS(6944), + [sym_raw_string] = ACTIONS(6065), + [anon_sym_POUND] = ACTIONS(6065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), + [anon_sym_COLON] = ACTIONS(6944), + [anon_sym_COLON_QMARK] = ACTIONS(6944), + [anon_sym_COLON_DASH] = ACTIONS(6944), + [anon_sym_PERCENT] = ACTIONS(6944), + [anon_sym_DASH] = ACTIONS(6944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), + [anon_sym_BQUOTE] = ACTIONS(6065), + [anon_sym_LT_LPAREN] = ACTIONS(6065), + [anon_sym_GT_LPAREN] = ACTIONS(6065), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(6067), }, [3470] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7739), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7747), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3471] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7741), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(6071), + [anon_sym_RBRACE] = ACTIONS(6071), + [anon_sym_EQ] = ACTIONS(6948), + [sym__special_characters] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6948), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_POUND] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_COLON] = ACTIONS(6948), + [anon_sym_COLON_QMARK] = ACTIONS(6948), + [anon_sym_COLON_DASH] = ACTIONS(6948), + [anon_sym_PERCENT] = ACTIONS(6948), + [anon_sym_DASH] = ACTIONS(6948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6073), }, [3472] = { - [anon_sym_RBRACE] = ACTIONS(7741), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(6075), + [anon_sym_RBRACE] = ACTIONS(6075), + [anon_sym_EQ] = ACTIONS(6950), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6950), + [sym_raw_string] = ACTIONS(6075), + [anon_sym_POUND] = ACTIONS(6075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), + [anon_sym_COLON] = ACTIONS(6950), + [anon_sym_COLON_QMARK] = ACTIONS(6950), + [anon_sym_COLON_DASH] = ACTIONS(6950), + [anon_sym_PERCENT] = ACTIONS(6950), + [anon_sym_DASH] = ACTIONS(6950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), + [anon_sym_BQUOTE] = ACTIONS(6075), + [anon_sym_LT_LPAREN] = ACTIONS(6075), + [anon_sym_GT_LPAREN] = ACTIONS(6075), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6077), }, [3473] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3891), - [anon_sym_RBRACE] = ACTIONS(7743), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(4802), + [sym__concat] = ACTIONS(4802), + [sym_variable_name] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(5860), + [anon_sym_RPAREN] = ACTIONS(4802), + [anon_sym_PIPE_AMP] = ACTIONS(4802), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [anon_sym_LT] = ACTIONS(5860), + [anon_sym_GT] = ACTIONS(5860), + [anon_sym_GT_GT] = ACTIONS(4802), + [anon_sym_AMP_GT] = ACTIONS(5860), + [anon_sym_AMP_GT_GT] = ACTIONS(4802), + [anon_sym_LT_AMP] = ACTIONS(4802), + [anon_sym_GT_AMP] = ACTIONS(4802), + [sym__special_characters] = ACTIONS(5860), + [anon_sym_DQUOTE] = ACTIONS(4802), + [anon_sym_DOLLAR] = ACTIONS(5860), + [sym_raw_string] = ACTIONS(4802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), + [anon_sym_BQUOTE] = ACTIONS(4802), + [anon_sym_LT_LPAREN] = ACTIONS(4802), + [anon_sym_GT_LPAREN] = ACTIONS(4802), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5860), }, [3474] = { + [sym_file_descriptor] = ACTIONS(4808), + [sym__concat] = ACTIONS(4808), + [sym_variable_name] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_RPAREN] = ACTIONS(4808), + [anon_sym_PIPE_AMP] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), + [anon_sym_LT] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5862), + [anon_sym_GT_GT] = ACTIONS(4808), + [anon_sym_AMP_GT] = ACTIONS(5862), + [anon_sym_AMP_GT_GT] = ACTIONS(4808), + [anon_sym_LT_AMP] = ACTIONS(4808), + [anon_sym_GT_AMP] = ACTIONS(4808), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4808), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), + [anon_sym_BQUOTE] = ACTIONS(4808), + [anon_sym_LT_LPAREN] = ACTIONS(4808), + [anon_sym_GT_LPAREN] = ACTIONS(4808), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5862), + }, + [3475] = { [sym_file_descriptor] = ACTIONS(4871), [sym__concat] = ACTIONS(4871), [sym_variable_name] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_PIPE] = ACTIONS(5864), [anon_sym_RPAREN] = ACTIONS(4871), [anon_sym_PIPE_AMP] = ACTIONS(4871), [anon_sym_AMP_AMP] = ACTIONS(4871), [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_LT] = ACTIONS(5858), - [anon_sym_GT] = ACTIONS(5858), + [anon_sym_LT] = ACTIONS(5864), + [anon_sym_GT] = ACTIONS(5864), [anon_sym_GT_GT] = ACTIONS(4871), - [anon_sym_AMP_GT] = ACTIONS(5858), + [anon_sym_AMP_GT] = ACTIONS(5864), [anon_sym_AMP_GT_GT] = ACTIONS(4871), [anon_sym_LT_AMP] = ACTIONS(4871), [anon_sym_GT_AMP] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5858), + [sym__special_characters] = ACTIONS(5864), [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_DOLLAR] = ACTIONS(5864), [sym_raw_string] = ACTIONS(4871), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), @@ -87711,113 +87735,101 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4871), [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5858), - }, - [3475] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3893), - [anon_sym_RBRACE] = ACTIONS(7745), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(5864), }, [3476] = { - [sym_file_descriptor] = ACTIONS(4877), - [sym__concat] = ACTIONS(4877), - [sym_variable_name] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(4877), - [anon_sym_PIPE_AMP] = ACTIONS(4877), - [anon_sym_AMP_AMP] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4877), - [anon_sym_LT] = ACTIONS(5862), - [anon_sym_GT] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(4877), - [anon_sym_AMP_GT] = ACTIONS(5862), - [anon_sym_AMP_GT_GT] = ACTIONS(4877), - [anon_sym_LT_AMP] = ACTIONS(4877), - [anon_sym_GT_AMP] = ACTIONS(4877), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(4877), - [anon_sym_LT_LPAREN] = ACTIONS(4877), - [anon_sym_GT_LPAREN] = ACTIONS(4877), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7749), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3477] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3895), - [anon_sym_RBRACE] = ACTIONS(7747), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7751), + [sym_comment] = ACTIONS(56), }, [3478] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7753), + [sym_comment] = ACTIONS(56), + }, + [3479] = { + [anon_sym_RBRACE] = ACTIONS(7753), + [sym_comment] = ACTIONS(56), + }, + [3480] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3896), + [anon_sym_RBRACE] = ACTIONS(7755), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3481] = { [sym_file_descriptor] = ACTIONS(4883), [sym__concat] = ACTIONS(4883), [sym_variable_name] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_PIPE] = ACTIONS(5874), [anon_sym_RPAREN] = ACTIONS(4883), [anon_sym_PIPE_AMP] = ACTIONS(4883), [anon_sym_AMP_AMP] = ACTIONS(4883), [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), + [anon_sym_LT] = ACTIONS(5874), + [anon_sym_GT] = ACTIONS(5874), [anon_sym_GT_GT] = ACTIONS(4883), - [anon_sym_AMP_GT] = ACTIONS(5866), + [anon_sym_AMP_GT] = ACTIONS(5874), [anon_sym_AMP_GT_GT] = ACTIONS(4883), [anon_sym_LT_AMP] = ACTIONS(4883), [anon_sym_GT_AMP] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5866), + [sym__special_characters] = ACTIONS(5874), [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5866), + [anon_sym_DOLLAR] = ACTIONS(5874), [sym_raw_string] = ACTIONS(4883), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), @@ -87825,56 +87837,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4883), [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5866), + [sym_word] = ACTIONS(5874), }, - [3479] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7749), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3482] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3898), + [anon_sym_RBRACE] = ACTIONS(7757), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, - [3480] = { + [3483] = { [sym_file_descriptor] = ACTIONS(4889), [sym__concat] = ACTIONS(4889), [sym_variable_name] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_PIPE] = ACTIONS(5878), [anon_sym_RPAREN] = ACTIONS(4889), [anon_sym_PIPE_AMP] = ACTIONS(4889), [anon_sym_AMP_AMP] = ACTIONS(4889), [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_LT] = ACTIONS(5870), - [anon_sym_GT] = ACTIONS(5870), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_GT] = ACTIONS(5878), [anon_sym_GT_GT] = ACTIONS(4889), - [anon_sym_AMP_GT] = ACTIONS(5870), + [anon_sym_AMP_GT] = ACTIONS(5878), [anon_sym_AMP_GT_GT] = ACTIONS(4889), [anon_sym_LT_AMP] = ACTIONS(4889), [anon_sym_GT_AMP] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5870), + [sym__special_characters] = ACTIONS(5878), [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5870), + [anon_sym_DOLLAR] = ACTIONS(5878), [sym_raw_string] = ACTIONS(4889), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), @@ -87882,133 +87894,152 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4889), [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5870), - }, - [3481] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7751), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3482] = { - [anon_sym_PIPE] = ACTIONS(4933), - [anon_sym_RPAREN] = ACTIONS(2669), - [anon_sym_PIPE_AMP] = ACTIONS(2669), - [anon_sym_AMP_AMP] = ACTIONS(2669), - [anon_sym_PIPE_PIPE] = ACTIONS(2669), - [anon_sym_BQUOTE] = ACTIONS(2669), - [sym_comment] = ACTIONS(56), - }, - [3483] = { - [sym__terminated_statement] = STATE(691), - [sym_for_statement] = STATE(692), - [sym_while_statement] = STATE(692), - [sym_if_statement] = STATE(692), - [sym_case_statement] = STATE(692), - [sym_function_definition] = STATE(692), - [sym_subshell] = STATE(692), - [sym_pipeline] = STATE(692), - [sym_list] = STATE(692), - [sym_command] = STATE(692), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(692), - [sym_variable_assignment] = STATE(693), - [sym_declaration_command] = STATE(692), - [sym_unset_command] = STATE(692), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(1311), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_done] = ACTIONS(7753), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), + [sym_word] = ACTIONS(5878), }, [3484] = { - [anon_sym_PIPE] = ACTIONS(7755), - [anon_sym_RPAREN] = ACTIONS(7757), - [anon_sym_PIPE_AMP] = ACTIONS(7757), - [anon_sym_AMP_AMP] = ACTIONS(7757), - [anon_sym_PIPE_PIPE] = ACTIONS(7757), - [anon_sym_BQUOTE] = ACTIONS(7757), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3900), + [anon_sym_RBRACE] = ACTIONS(7759), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3485] = { - [anon_sym_PIPE] = ACTIONS(7759), - [anon_sym_RPAREN] = ACTIONS(7761), - [anon_sym_PIPE_AMP] = ACTIONS(7761), - [anon_sym_AMP_AMP] = ACTIONS(7761), - [anon_sym_PIPE_PIPE] = ACTIONS(7761), - [anon_sym_BQUOTE] = ACTIONS(7761), + [sym_file_descriptor] = ACTIONS(4895), + [sym__concat] = ACTIONS(4895), + [sym_variable_name] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(5882), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_PIPE_AMP] = ACTIONS(4895), + [anon_sym_AMP_AMP] = ACTIONS(4895), + [anon_sym_PIPE_PIPE] = ACTIONS(4895), + [anon_sym_LT] = ACTIONS(5882), + [anon_sym_GT] = ACTIONS(5882), + [anon_sym_GT_GT] = ACTIONS(4895), + [anon_sym_AMP_GT] = ACTIONS(5882), + [anon_sym_AMP_GT_GT] = ACTIONS(4895), + [anon_sym_LT_AMP] = ACTIONS(4895), + [anon_sym_GT_AMP] = ACTIONS(4895), + [sym__special_characters] = ACTIONS(5882), + [anon_sym_DQUOTE] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(5882), + [sym_raw_string] = ACTIONS(4895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(4895), + [anon_sym_LT_LPAREN] = ACTIONS(4895), + [anon_sym_GT_LPAREN] = ACTIONS(4895), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5882), }, [3486] = { - [anon_sym_esac] = ACTIONS(7763), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7761), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3487] = { + [sym_file_descriptor] = ACTIONS(4901), + [sym__concat] = ACTIONS(4901), + [sym_variable_name] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(5886), + [anon_sym_RPAREN] = ACTIONS(4901), + [anon_sym_PIPE_AMP] = ACTIONS(4901), + [anon_sym_AMP_AMP] = ACTIONS(4901), + [anon_sym_PIPE_PIPE] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(5886), + [anon_sym_GT] = ACTIONS(5886), + [anon_sym_GT_GT] = ACTIONS(4901), + [anon_sym_AMP_GT] = ACTIONS(5886), + [anon_sym_AMP_GT_GT] = ACTIONS(4901), + [anon_sym_LT_AMP] = ACTIONS(4901), + [anon_sym_GT_AMP] = ACTIONS(4901), + [sym__special_characters] = ACTIONS(5886), + [anon_sym_DQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(5886), + [sym_raw_string] = ACTIONS(4901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4901), + [anon_sym_LT_LPAREN] = ACTIONS(4901), + [anon_sym_GT_LPAREN] = ACTIONS(4901), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5886), + }, + [3488] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7763), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3489] = { [anon_sym_PIPE] = ACTIONS(7765), [anon_sym_RPAREN] = ACTIONS(7767), [anon_sym_PIPE_AMP] = ACTIONS(7767), @@ -88017,472 +88048,373 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(7767), [sym_comment] = ACTIONS(56), }, - [3488] = { - [anon_sym_esac] = ACTIONS(7769), - [sym_comment] = ACTIONS(56), - }, - [3489] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), - }, [3490] = { - [aux_sym_concatenation_repeat1] = STATE(3490), - [sym__concat] = ACTIONS(7771), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_RPAREN] = ACTIONS(1886), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(7769), + [anon_sym_RPAREN] = ACTIONS(7771), + [anon_sym_PIPE_AMP] = ACTIONS(7771), + [anon_sym_AMP_AMP] = ACTIONS(7771), + [anon_sym_PIPE_PIPE] = ACTIONS(7771), + [anon_sym_BQUOTE] = ACTIONS(7771), [sym_comment] = ACTIONS(56), }, [3491] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_RPAREN] = ACTIONS(1923), - [anon_sym_PIPE_AMP] = ACTIONS(1923), - [anon_sym_AMP_AMP] = ACTIONS(1923), - [anon_sym_PIPE_PIPE] = ACTIONS(1923), + [anon_sym_esac] = ACTIONS(7773), [sym_comment] = ACTIONS(56), }, [3492] = { - [sym_concatenation] = STATE(3904), - [sym_string] = STATE(3903), - [sym_simple_expansion] = STATE(3903), - [sym_string_expansion] = STATE(3903), - [sym_expansion] = STATE(3903), - [sym_command_substitution] = STATE(3903), - [sym_process_substitution] = STATE(3903), - [anon_sym_RBRACE] = ACTIONS(7774), - [sym__special_characters] = ACTIONS(7776), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(7778), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [anon_sym_PIPE] = ACTIONS(7775), + [anon_sym_RPAREN] = ACTIONS(7777), + [anon_sym_PIPE_AMP] = ACTIONS(7777), + [anon_sym_AMP_AMP] = ACTIONS(7777), + [anon_sym_PIPE_PIPE] = ACTIONS(7777), + [anon_sym_BQUOTE] = ACTIONS(7777), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7780), }, [3493] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(1968), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1968), - [anon_sym_PIPE_PIPE] = ACTIONS(1968), + [anon_sym_esac] = ACTIONS(7779), [sym_comment] = ACTIONS(56), }, [3494] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7782), + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), }, [3495] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7784), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(3495), + [sym__concat] = ACTIONS(7781), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_RPAREN] = ACTIONS(1890), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), }, [3496] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(7786), + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_RPAREN] = ACTIONS(1927), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), [sym_comment] = ACTIONS(56), }, [3497] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3910), - [anon_sym_RBRACE] = ACTIONS(7788), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7790), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(3908), + [sym_string] = STATE(3907), + [sym_simple_expansion] = STATE(3907), + [sym_string_expansion] = STATE(3907), + [sym_expansion] = STATE(3907), + [sym_command_substitution] = STATE(3907), + [sym_process_substitution] = STATE(3907), + [anon_sym_RBRACE] = ACTIONS(7784), + [sym__special_characters] = ACTIONS(7786), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(7788), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7790), }, [3498] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3913), - [anon_sym_RBRACE] = ACTIONS(7792), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7794), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(3081), + [anon_sym_RPAREN] = ACTIONS(1972), + [anon_sym_PIPE_AMP] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_PIPE_PIPE] = ACTIONS(1972), + [sym_comment] = ACTIONS(56), }, [3499] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3915), - [anon_sym_RBRACE] = ACTIONS(7774), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7796), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(7792), }, [3500] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_RPAREN] = ACTIONS(2022), - [anon_sym_PIPE_AMP] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7794), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3501] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7798), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(7796), + [sym_comment] = ACTIONS(56), }, [3502] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7800), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3914), + [anon_sym_RBRACE] = ACTIONS(7798), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7800), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3503] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_RPAREN] = ACTIONS(2030), - [anon_sym_PIPE_AMP] = ACTIONS(2030), - [anon_sym_AMP_AMP] = ACTIONS(2030), - [anon_sym_PIPE_PIPE] = ACTIONS(2030), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3917), + [anon_sym_RBRACE] = ACTIONS(7802), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7804), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3504] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3919), + [anon_sym_RBRACE] = ACTIONS(7784), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7806), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7802), + [sym_word] = ACTIONS(866), }, [3505] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7774), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_RPAREN] = ACTIONS(2026), + [anon_sym_PIPE_AMP] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [sym_comment] = ACTIONS(56), }, [3506] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(2190), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7808), }, [3507] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_RPAREN] = ACTIONS(2396), - [anon_sym_PIPE_AMP] = ACTIONS(2396), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7810), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3508] = { - [sym__concat] = ACTIONS(6025), - [sym_variable_name] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6916), - [anon_sym_RPAREN] = ACTIONS(6025), - [anon_sym_PIPE_AMP] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [sym__special_characters] = ACTIONS(6916), - [anon_sym_DQUOTE] = ACTIONS(6025), - [anon_sym_DOLLAR] = ACTIONS(6916), - [sym_raw_string] = ACTIONS(6025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), - [anon_sym_BQUOTE] = ACTIONS(6025), - [anon_sym_LT_LPAREN] = ACTIONS(6025), - [anon_sym_GT_LPAREN] = ACTIONS(6025), + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_RPAREN] = ACTIONS(2034), + [anon_sym_PIPE_AMP] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_PIPE_PIPE] = ACTIONS(2034), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6916), - [sym_word] = ACTIONS(6027), }, [3509] = { - [sym__concat] = ACTIONS(6029), - [sym_variable_name] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6918), - [anon_sym_RPAREN] = ACTIONS(6029), - [anon_sym_PIPE_AMP] = ACTIONS(6029), - [anon_sym_AMP_AMP] = ACTIONS(6029), - [anon_sym_PIPE_PIPE] = ACTIONS(6029), - [sym__special_characters] = ACTIONS(6918), - [anon_sym_DQUOTE] = ACTIONS(6029), - [anon_sym_DOLLAR] = ACTIONS(6918), - [sym_raw_string] = ACTIONS(6029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), - [anon_sym_BQUOTE] = ACTIONS(6029), - [anon_sym_LT_LPAREN] = ACTIONS(6029), - [anon_sym_GT_LPAREN] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6918), - [sym_word] = ACTIONS(6031), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7812), }, [3510] = { - [sym__concat] = ACTIONS(6033), - [sym_variable_name] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6920), - [anon_sym_RPAREN] = ACTIONS(6033), - [anon_sym_PIPE_AMP] = ACTIONS(6033), - [anon_sym_AMP_AMP] = ACTIONS(6033), - [anon_sym_PIPE_PIPE] = ACTIONS(6033), - [sym__special_characters] = ACTIONS(6920), - [anon_sym_DQUOTE] = ACTIONS(6033), - [anon_sym_DOLLAR] = ACTIONS(6920), - [sym_raw_string] = ACTIONS(6033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), - [anon_sym_BQUOTE] = ACTIONS(6033), - [anon_sym_LT_LPAREN] = ACTIONS(6033), - [anon_sym_GT_LPAREN] = ACTIONS(6033), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6920), - [sym_word] = ACTIONS(6035), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7784), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3511] = { - [sym__concat] = ACTIONS(6037), - [sym_variable_name] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6922), - [anon_sym_RPAREN] = ACTIONS(6037), - [anon_sym_PIPE_AMP] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(6037), - [anon_sym_PIPE_PIPE] = ACTIONS(6037), - [sym__special_characters] = ACTIONS(6922), - [anon_sym_DQUOTE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(6922), - [sym_raw_string] = ACTIONS(6037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), - [anon_sym_BQUOTE] = ACTIONS(6037), - [anon_sym_LT_LPAREN] = ACTIONS(6037), - [anon_sym_GT_LPAREN] = ACTIONS(6037), + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(3109), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6922), - [sym_word] = ACTIONS(6039), }, [3512] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7804), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_RPAREN] = ACTIONS(2402), + [anon_sym_PIPE_AMP] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), }, [3513] = { - [sym__concat] = ACTIONS(6043), - [sym_variable_name] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6926), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6926), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6926), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), + [sym__concat] = ACTIONS(6041), + [sym_variable_name] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_RPAREN] = ACTIONS(6041), + [anon_sym_PIPE_AMP] = ACTIONS(6041), + [anon_sym_AMP_AMP] = ACTIONS(6041), + [anon_sym_PIPE_PIPE] = ACTIONS(6041), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), + [anon_sym_BQUOTE] = ACTIONS(6041), + [anon_sym_LT_LPAREN] = ACTIONS(6041), + [anon_sym_GT_LPAREN] = ACTIONS(6041), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6926), - [sym_word] = ACTIONS(6045), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6930), + [sym_word] = ACTIONS(6043), }, [3514] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7806), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6045), + [sym_variable_name] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6932), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6932), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6932), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6932), + [sym_word] = ACTIONS(6047), }, [3515] = { [sym__concat] = ACTIONS(6049), [sym_variable_name] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE] = ACTIONS(6934), [anon_sym_RPAREN] = ACTIONS(6049), [anon_sym_PIPE_AMP] = ACTIONS(6049), [anon_sym_AMP_AMP] = ACTIONS(6049), [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6930), + [sym__special_characters] = ACTIONS(6934), [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6930), + [anon_sym_DOLLAR] = ACTIONS(6934), [sym_raw_string] = ACTIONS(6049), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), @@ -88490,70 +88422,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(6049), [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6930), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6934), [sym_word] = ACTIONS(6051), }, [3516] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7808), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6053), + [sym_variable_name] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_RPAREN] = ACTIONS(6053), + [anon_sym_PIPE_AMP] = ACTIONS(6053), + [anon_sym_AMP_AMP] = ACTIONS(6053), + [anon_sym_PIPE_PIPE] = ACTIONS(6053), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), + [anon_sym_BQUOTE] = ACTIONS(6053), + [anon_sym_LT_LPAREN] = ACTIONS(6053), + [anon_sym_GT_LPAREN] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6936), + [sym_word] = ACTIONS(6055), }, [3517] = { - [sym__concat] = ACTIONS(6055), - [sym_variable_name] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6934), - [sym_word] = ACTIONS(6057), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7814), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3518] = { [sym__concat] = ACTIONS(6059), [sym_variable_name] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE] = ACTIONS(6940), [anon_sym_RPAREN] = ACTIONS(6059), [anon_sym_PIPE_AMP] = ACTIONS(6059), [anon_sym_AMP_AMP] = ACTIONS(6059), [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6936), + [sym__special_characters] = ACTIONS(6940), [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6936), + [anon_sym_DOLLAR] = ACTIONS(6940), [sym_raw_string] = ACTIONS(6059), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), @@ -88561,177 +88493,180 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(6059), [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6936), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6940), [sym_word] = ACTIONS(6061), }, [3519] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6916), - [anon_sym_RPAREN] = ACTIONS(6025), - [anon_sym_PIPE_AMP] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [sym__special_characters] = ACTIONS(6916), - [anon_sym_DQUOTE] = ACTIONS(6025), - [anon_sym_DOLLAR] = ACTIONS(6916), - [sym_raw_string] = ACTIONS(6025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), - [anon_sym_BQUOTE] = ACTIONS(6025), - [anon_sym_LT_LPAREN] = ACTIONS(6025), - [anon_sym_GT_LPAREN] = ACTIONS(6025), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6916), - [sym_word] = ACTIONS(6027), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7816), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3520] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6918), - [anon_sym_RPAREN] = ACTIONS(6029), - [anon_sym_PIPE_AMP] = ACTIONS(6029), - [anon_sym_AMP_AMP] = ACTIONS(6029), - [anon_sym_PIPE_PIPE] = ACTIONS(6029), - [sym__special_characters] = ACTIONS(6918), - [anon_sym_DQUOTE] = ACTIONS(6029), - [anon_sym_DOLLAR] = ACTIONS(6918), - [sym_raw_string] = ACTIONS(6029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), - [anon_sym_BQUOTE] = ACTIONS(6029), - [anon_sym_LT_LPAREN] = ACTIONS(6029), - [anon_sym_GT_LPAREN] = ACTIONS(6029), + [sym__concat] = ACTIONS(6065), + [sym_variable_name] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6944), + [anon_sym_RPAREN] = ACTIONS(6065), + [anon_sym_PIPE_AMP] = ACTIONS(6065), + [anon_sym_AMP_AMP] = ACTIONS(6065), + [anon_sym_PIPE_PIPE] = ACTIONS(6065), + [sym__special_characters] = ACTIONS(6944), + [anon_sym_DQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR] = ACTIONS(6944), + [sym_raw_string] = ACTIONS(6065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), + [anon_sym_BQUOTE] = ACTIONS(6065), + [anon_sym_LT_LPAREN] = ACTIONS(6065), + [anon_sym_GT_LPAREN] = ACTIONS(6065), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6918), - [sym_word] = ACTIONS(6031), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6944), + [sym_word] = ACTIONS(6067), }, [3521] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6920), - [anon_sym_RPAREN] = ACTIONS(6033), - [anon_sym_PIPE_AMP] = ACTIONS(6033), - [anon_sym_AMP_AMP] = ACTIONS(6033), - [anon_sym_PIPE_PIPE] = ACTIONS(6033), - [sym__special_characters] = ACTIONS(6920), - [anon_sym_DQUOTE] = ACTIONS(6033), - [anon_sym_DOLLAR] = ACTIONS(6920), - [sym_raw_string] = ACTIONS(6033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), - [anon_sym_BQUOTE] = ACTIONS(6033), - [anon_sym_LT_LPAREN] = ACTIONS(6033), - [anon_sym_GT_LPAREN] = ACTIONS(6033), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6920), - [sym_word] = ACTIONS(6035), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7818), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3522] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6922), - [anon_sym_RPAREN] = ACTIONS(6037), - [anon_sym_PIPE_AMP] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(6037), - [anon_sym_PIPE_PIPE] = ACTIONS(6037), - [sym__special_characters] = ACTIONS(6922), - [anon_sym_DQUOTE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(6922), - [sym_raw_string] = ACTIONS(6037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), - [anon_sym_BQUOTE] = ACTIONS(6037), - [anon_sym_LT_LPAREN] = ACTIONS(6037), - [anon_sym_GT_LPAREN] = ACTIONS(6037), + [sym__concat] = ACTIONS(6071), + [sym_variable_name] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6948), + [anon_sym_RPAREN] = ACTIONS(6071), + [anon_sym_PIPE_AMP] = ACTIONS(6071), + [anon_sym_AMP_AMP] = ACTIONS(6071), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [sym__special_characters] = ACTIONS(6948), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6948), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6922), - [sym_word] = ACTIONS(6039), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6948), + [sym_word] = ACTIONS(6073), }, [3523] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7810), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6075), + [sym_variable_name] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_RPAREN] = ACTIONS(6075), + [anon_sym_PIPE_AMP] = ACTIONS(6075), + [anon_sym_AMP_AMP] = ACTIONS(6075), + [anon_sym_PIPE_PIPE] = ACTIONS(6075), + [sym__special_characters] = ACTIONS(6950), + [anon_sym_DQUOTE] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6950), + [sym_raw_string] = ACTIONS(6075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), + [anon_sym_BQUOTE] = ACTIONS(6075), + [anon_sym_LT_LPAREN] = ACTIONS(6075), + [anon_sym_GT_LPAREN] = ACTIONS(6075), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6950), + [sym_word] = ACTIONS(6077), }, [3524] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6926), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6926), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6926), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), + [sym__concat] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_RPAREN] = ACTIONS(6041), + [anon_sym_PIPE_AMP] = ACTIONS(6041), + [anon_sym_AMP_AMP] = ACTIONS(6041), + [anon_sym_PIPE_PIPE] = ACTIONS(6041), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), + [anon_sym_BQUOTE] = ACTIONS(6041), + [anon_sym_LT_LPAREN] = ACTIONS(6041), + [anon_sym_GT_LPAREN] = ACTIONS(6041), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6926), - [sym_word] = ACTIONS(6045), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6930), + [sym_word] = ACTIONS(6043), }, [3525] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7812), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6932), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6932), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6932), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6932), + [sym_word] = ACTIONS(6047), }, [3526] = { [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE] = ACTIONS(6934), [anon_sym_RPAREN] = ACTIONS(6049), [anon_sym_PIPE_AMP] = ACTIONS(6049), [anon_sym_AMP_AMP] = ACTIONS(6049), [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6930), + [sym__special_characters] = ACTIONS(6934), [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6930), + [anon_sym_DOLLAR] = ACTIONS(6934), [sym_raw_string] = ACTIONS(6049), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), @@ -88739,68 +88674,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(6049), [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6930), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6934), [sym_word] = ACTIONS(6051), }, [3527] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7814), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_RPAREN] = ACTIONS(6053), + [anon_sym_PIPE_AMP] = ACTIONS(6053), + [anon_sym_AMP_AMP] = ACTIONS(6053), + [anon_sym_PIPE_PIPE] = ACTIONS(6053), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), + [anon_sym_BQUOTE] = ACTIONS(6053), + [anon_sym_LT_LPAREN] = ACTIONS(6053), + [anon_sym_GT_LPAREN] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6936), + [sym_word] = ACTIONS(6055), }, [3528] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6934), - [sym_word] = ACTIONS(6057), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7820), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3529] = { [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE] = ACTIONS(6940), [anon_sym_RPAREN] = ACTIONS(6059), [anon_sym_PIPE_AMP] = ACTIONS(6059), [anon_sym_AMP_AMP] = ACTIONS(6059), [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6936), + [sym__special_characters] = ACTIONS(6940), [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6936), + [anon_sym_DOLLAR] = ACTIONS(6940), [sym_raw_string] = ACTIONS(6059), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), @@ -88808,608 +88743,625 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(6059), [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6936), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6940), [sym_word] = ACTIONS(6061), }, [3530] = { - [sym_file_descriptor] = ACTIONS(7018), - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7709), - [anon_sym_RPAREN] = ACTIONS(7018), - [anon_sym_PIPE_AMP] = ACTIONS(7018), - [anon_sym_AMP_AMP] = ACTIONS(7018), - [anon_sym_PIPE_PIPE] = ACTIONS(7018), - [anon_sym_EQ_TILDE] = ACTIONS(7709), - [anon_sym_EQ_EQ] = ACTIONS(7709), - [anon_sym_LT] = ACTIONS(7709), - [anon_sym_GT] = ACTIONS(7709), - [anon_sym_GT_GT] = ACTIONS(7018), - [anon_sym_AMP_GT] = ACTIONS(7709), - [anon_sym_AMP_GT_GT] = ACTIONS(7018), - [anon_sym_LT_AMP] = ACTIONS(7018), - [anon_sym_GT_AMP] = ACTIONS(7018), - [anon_sym_LT_LT] = ACTIONS(7709), - [anon_sym_LT_LT_DASH] = ACTIONS(7018), - [anon_sym_LT_LT_LT] = ACTIONS(7018), - [sym__special_characters] = ACTIONS(7709), - [anon_sym_DQUOTE] = ACTIONS(7018), - [anon_sym_DOLLAR] = ACTIONS(7709), - [sym_raw_string] = ACTIONS(7018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), - [anon_sym_BQUOTE] = ACTIONS(7018), - [anon_sym_LT_LPAREN] = ACTIONS(7018), - [anon_sym_GT_LPAREN] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7020), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7822), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3531] = { - [sym_file_descriptor] = ACTIONS(7022), - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7711), - [anon_sym_RPAREN] = ACTIONS(7022), - [anon_sym_PIPE_AMP] = ACTIONS(7022), - [anon_sym_AMP_AMP] = ACTIONS(7022), - [anon_sym_PIPE_PIPE] = ACTIONS(7022), - [anon_sym_EQ_TILDE] = ACTIONS(7711), - [anon_sym_EQ_EQ] = ACTIONS(7711), - [anon_sym_LT] = ACTIONS(7711), - [anon_sym_GT] = ACTIONS(7711), - [anon_sym_GT_GT] = ACTIONS(7022), - [anon_sym_AMP_GT] = ACTIONS(7711), - [anon_sym_AMP_GT_GT] = ACTIONS(7022), - [anon_sym_LT_AMP] = ACTIONS(7022), - [anon_sym_GT_AMP] = ACTIONS(7022), - [anon_sym_LT_LT] = ACTIONS(7711), - [anon_sym_LT_LT_DASH] = ACTIONS(7022), - [anon_sym_LT_LT_LT] = ACTIONS(7022), - [sym__special_characters] = ACTIONS(7711), - [anon_sym_DQUOTE] = ACTIONS(7022), - [anon_sym_DOLLAR] = ACTIONS(7711), - [sym_raw_string] = ACTIONS(7022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), - [anon_sym_BQUOTE] = ACTIONS(7022), - [anon_sym_LT_LPAREN] = ACTIONS(7022), - [anon_sym_GT_LPAREN] = ACTIONS(7022), + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6944), + [anon_sym_RPAREN] = ACTIONS(6065), + [anon_sym_PIPE_AMP] = ACTIONS(6065), + [anon_sym_AMP_AMP] = ACTIONS(6065), + [anon_sym_PIPE_PIPE] = ACTIONS(6065), + [sym__special_characters] = ACTIONS(6944), + [anon_sym_DQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR] = ACTIONS(6944), + [sym_raw_string] = ACTIONS(6065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), + [anon_sym_BQUOTE] = ACTIONS(6065), + [anon_sym_LT_LPAREN] = ACTIONS(6065), + [anon_sym_GT_LPAREN] = ACTIONS(6065), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7024), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6944), + [sym_word] = ACTIONS(6067), }, [3532] = { - [sym_file_descriptor] = ACTIONS(7026), - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_RPAREN] = ACTIONS(7026), - [anon_sym_PIPE_AMP] = ACTIONS(7026), - [anon_sym_AMP_AMP] = ACTIONS(7026), - [anon_sym_PIPE_PIPE] = ACTIONS(7026), - [anon_sym_EQ_TILDE] = ACTIONS(7713), - [anon_sym_EQ_EQ] = ACTIONS(7713), - [anon_sym_LT] = ACTIONS(7713), - [anon_sym_GT] = ACTIONS(7713), - [anon_sym_GT_GT] = ACTIONS(7026), - [anon_sym_AMP_GT] = ACTIONS(7713), - [anon_sym_AMP_GT_GT] = ACTIONS(7026), - [anon_sym_LT_AMP] = ACTIONS(7026), - [anon_sym_GT_AMP] = ACTIONS(7026), - [anon_sym_LT_LT] = ACTIONS(7713), - [anon_sym_LT_LT_DASH] = ACTIONS(7026), - [anon_sym_LT_LT_LT] = ACTIONS(7026), - [sym__special_characters] = ACTIONS(7713), - [anon_sym_DQUOTE] = ACTIONS(7026), - [anon_sym_DOLLAR] = ACTIONS(7713), - [sym_raw_string] = ACTIONS(7026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), - [anon_sym_BQUOTE] = ACTIONS(7026), - [anon_sym_LT_LPAREN] = ACTIONS(7026), - [anon_sym_GT_LPAREN] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7028), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7824), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3533] = { - [sym_file_descriptor] = ACTIONS(4790), - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_PIPE_AMP] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_GT_GT] = ACTIONS(4790), - [anon_sym_AMP_GT] = ACTIONS(5844), - [anon_sym_AMP_GT_GT] = ACTIONS(4790), - [anon_sym_LT_AMP] = ACTIONS(4790), - [anon_sym_GT_AMP] = ACTIONS(4790), - [anon_sym_LT_LT] = ACTIONS(5844), - [anon_sym_LT_LT_DASH] = ACTIONS(4790), - [anon_sym_LT_LT_LT] = ACTIONS(4790), + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6948), + [anon_sym_RPAREN] = ACTIONS(6071), + [anon_sym_PIPE_AMP] = ACTIONS(6071), + [anon_sym_AMP_AMP] = ACTIONS(6071), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [sym__special_characters] = ACTIONS(6948), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6948), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6948), + [sym_word] = ACTIONS(6073), }, [3534] = { - [sym_file_descriptor] = ACTIONS(4796), - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(4796), - [anon_sym_PIPE_AMP] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4796), - [anon_sym_PIPE_PIPE] = ACTIONS(4796), - [anon_sym_LT] = ACTIONS(5846), - [anon_sym_GT] = ACTIONS(5846), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_AMP_GT] = ACTIONS(5846), - [anon_sym_AMP_GT_GT] = ACTIONS(4796), - [anon_sym_LT_AMP] = ACTIONS(4796), - [anon_sym_GT_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(5846), - [anon_sym_LT_LT_DASH] = ACTIONS(4796), - [anon_sym_LT_LT_LT] = ACTIONS(4796), + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_RPAREN] = ACTIONS(6075), + [anon_sym_PIPE_AMP] = ACTIONS(6075), + [anon_sym_AMP_AMP] = ACTIONS(6075), + [anon_sym_PIPE_PIPE] = ACTIONS(6075), + [sym__special_characters] = ACTIONS(6950), + [anon_sym_DQUOTE] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6950), + [sym_raw_string] = ACTIONS(6075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), + [anon_sym_BQUOTE] = ACTIONS(6075), + [anon_sym_LT_LPAREN] = ACTIONS(6075), + [anon_sym_GT_LPAREN] = ACTIONS(6075), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6950), + [sym_word] = ACTIONS(6077), }, [3535] = { - [sym_file_descriptor] = ACTIONS(4859), - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_RPAREN] = ACTIONS(4859), - [anon_sym_PIPE_AMP] = ACTIONS(4859), - [anon_sym_AMP_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4859), - [anon_sym_LT] = ACTIONS(5848), - [anon_sym_GT] = ACTIONS(5848), - [anon_sym_GT_GT] = ACTIONS(4859), - [anon_sym_AMP_GT] = ACTIONS(5848), - [anon_sym_AMP_GT_GT] = ACTIONS(4859), - [anon_sym_LT_AMP] = ACTIONS(4859), - [anon_sym_GT_AMP] = ACTIONS(4859), - [anon_sym_LT_LT] = ACTIONS(5848), - [anon_sym_LT_LT_DASH] = ACTIONS(4859), - [anon_sym_LT_LT_LT] = ACTIONS(4859), + [sym_file_descriptor] = ACTIONS(7032), + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7721), + [anon_sym_RPAREN] = ACTIONS(7032), + [anon_sym_PIPE_AMP] = ACTIONS(7032), + [anon_sym_AMP_AMP] = ACTIONS(7032), + [anon_sym_PIPE_PIPE] = ACTIONS(7032), + [anon_sym_EQ_TILDE] = ACTIONS(7721), + [anon_sym_EQ_EQ] = ACTIONS(7721), + [anon_sym_LT] = ACTIONS(7721), + [anon_sym_GT] = ACTIONS(7721), + [anon_sym_GT_GT] = ACTIONS(7032), + [anon_sym_AMP_GT] = ACTIONS(7721), + [anon_sym_AMP_GT_GT] = ACTIONS(7032), + [anon_sym_LT_AMP] = ACTIONS(7032), + [anon_sym_GT_AMP] = ACTIONS(7032), + [anon_sym_LT_LT] = ACTIONS(7721), + [anon_sym_LT_LT_DASH] = ACTIONS(7032), + [anon_sym_LT_LT_LT] = ACTIONS(7032), + [sym__special_characters] = ACTIONS(7721), + [anon_sym_DQUOTE] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7721), + [sym_raw_string] = ACTIONS(7032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), + [anon_sym_BQUOTE] = ACTIONS(7032), + [anon_sym_LT_LPAREN] = ACTIONS(7032), + [anon_sym_GT_LPAREN] = ACTIONS(7032), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7034), }, [3536] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7816), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(7036), + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_RPAREN] = ACTIONS(7036), + [anon_sym_PIPE_AMP] = ACTIONS(7036), + [anon_sym_AMP_AMP] = ACTIONS(7036), + [anon_sym_PIPE_PIPE] = ACTIONS(7036), + [anon_sym_EQ_TILDE] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7036), + [anon_sym_AMP_GT] = ACTIONS(7723), + [anon_sym_AMP_GT_GT] = ACTIONS(7036), + [anon_sym_LT_AMP] = ACTIONS(7036), + [anon_sym_GT_AMP] = ACTIONS(7036), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_LT_LT_DASH] = ACTIONS(7036), + [anon_sym_LT_LT_LT] = ACTIONS(7036), + [sym__special_characters] = ACTIONS(7723), + [anon_sym_DQUOTE] = ACTIONS(7036), + [anon_sym_DOLLAR] = ACTIONS(7723), + [sym_raw_string] = ACTIONS(7036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), + [anon_sym_BQUOTE] = ACTIONS(7036), + [anon_sym_LT_LPAREN] = ACTIONS(7036), + [anon_sym_GT_LPAREN] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7038), }, [3537] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7818), + [sym_file_descriptor] = ACTIONS(7040), + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7040), + [anon_sym_PIPE_AMP] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7040), + [anon_sym_PIPE_PIPE] = ACTIONS(7040), + [anon_sym_EQ_TILDE] = ACTIONS(7725), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_LT] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7725), + [anon_sym_GT_GT] = ACTIONS(7040), + [anon_sym_AMP_GT] = ACTIONS(7725), + [anon_sym_AMP_GT_GT] = ACTIONS(7040), + [anon_sym_LT_AMP] = ACTIONS(7040), + [anon_sym_GT_AMP] = ACTIONS(7040), + [anon_sym_LT_LT] = ACTIONS(7725), + [anon_sym_LT_LT_DASH] = ACTIONS(7040), + [anon_sym_LT_LT_LT] = ACTIONS(7040), + [sym__special_characters] = ACTIONS(7725), + [anon_sym_DQUOTE] = ACTIONS(7040), + [anon_sym_DOLLAR] = ACTIONS(7725), + [sym_raw_string] = ACTIONS(7040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), + [anon_sym_BQUOTE] = ACTIONS(7040), + [anon_sym_LT_LPAREN] = ACTIONS(7040), + [anon_sym_GT_LPAREN] = ACTIONS(7040), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7042), }, [3538] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7820), + [sym_file_descriptor] = ACTIONS(4802), + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(5860), + [anon_sym_RPAREN] = ACTIONS(4802), + [anon_sym_PIPE_AMP] = ACTIONS(4802), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [anon_sym_LT] = ACTIONS(5860), + [anon_sym_GT] = ACTIONS(5860), + [anon_sym_GT_GT] = ACTIONS(4802), + [anon_sym_AMP_GT] = ACTIONS(5860), + [anon_sym_AMP_GT_GT] = ACTIONS(4802), + [anon_sym_LT_AMP] = ACTIONS(4802), + [anon_sym_GT_AMP] = ACTIONS(4802), + [anon_sym_LT_LT] = ACTIONS(5860), + [anon_sym_LT_LT_DASH] = ACTIONS(4802), + [anon_sym_LT_LT_LT] = ACTIONS(4802), [sym_comment] = ACTIONS(56), }, [3539] = { - [anon_sym_RBRACE] = ACTIONS(7820), + [sym_file_descriptor] = ACTIONS(4808), + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_RPAREN] = ACTIONS(4808), + [anon_sym_PIPE_AMP] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), + [anon_sym_LT] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5862), + [anon_sym_GT_GT] = ACTIONS(4808), + [anon_sym_AMP_GT] = ACTIONS(5862), + [anon_sym_AMP_GT_GT] = ACTIONS(4808), + [anon_sym_LT_AMP] = ACTIONS(4808), + [anon_sym_GT_AMP] = ACTIONS(4808), + [anon_sym_LT_LT] = ACTIONS(5862), + [anon_sym_LT_LT_DASH] = ACTIONS(4808), + [anon_sym_LT_LT_LT] = ACTIONS(4808), [sym_comment] = ACTIONS(56), }, [3540] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3929), - [anon_sym_RBRACE] = ACTIONS(7822), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3541] = { [sym_file_descriptor] = ACTIONS(4871), [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_PIPE] = ACTIONS(5864), [anon_sym_RPAREN] = ACTIONS(4871), [anon_sym_PIPE_AMP] = ACTIONS(4871), [anon_sym_AMP_AMP] = ACTIONS(4871), [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_LT] = ACTIONS(5858), - [anon_sym_GT] = ACTIONS(5858), + [anon_sym_LT] = ACTIONS(5864), + [anon_sym_GT] = ACTIONS(5864), [anon_sym_GT_GT] = ACTIONS(4871), - [anon_sym_AMP_GT] = ACTIONS(5858), + [anon_sym_AMP_GT] = ACTIONS(5864), [anon_sym_AMP_GT_GT] = ACTIONS(4871), [anon_sym_LT_AMP] = ACTIONS(4871), [anon_sym_GT_AMP] = ACTIONS(4871), - [anon_sym_LT_LT] = ACTIONS(5858), + [anon_sym_LT_LT] = ACTIONS(5864), [anon_sym_LT_LT_DASH] = ACTIONS(4871), [anon_sym_LT_LT_LT] = ACTIONS(4871), [sym_comment] = ACTIONS(56), }, - [3542] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3931), - [anon_sym_RBRACE] = ACTIONS(7824), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3541] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7826), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), + }, + [3542] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7828), + [sym_comment] = ACTIONS(56), }, [3543] = { - [sym_file_descriptor] = ACTIONS(4877), - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(4877), - [anon_sym_PIPE_AMP] = ACTIONS(4877), - [anon_sym_AMP_AMP] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4877), - [anon_sym_LT] = ACTIONS(5862), - [anon_sym_GT] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(4877), - [anon_sym_AMP_GT] = ACTIONS(5862), - [anon_sym_AMP_GT_GT] = ACTIONS(4877), - [anon_sym_LT_AMP] = ACTIONS(4877), - [anon_sym_GT_AMP] = ACTIONS(4877), - [anon_sym_LT_LT] = ACTIONS(5862), - [anon_sym_LT_LT_DASH] = ACTIONS(4877), - [anon_sym_LT_LT_LT] = ACTIONS(4877), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7830), [sym_comment] = ACTIONS(56), }, [3544] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3933), - [anon_sym_RBRACE] = ACTIONS(7826), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_RBRACE] = ACTIONS(7830), + [sym_comment] = ACTIONS(56), }, [3545] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3933), + [anon_sym_RBRACE] = ACTIONS(7832), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3546] = { [sym_file_descriptor] = ACTIONS(4883), [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_PIPE] = ACTIONS(5874), [anon_sym_RPAREN] = ACTIONS(4883), [anon_sym_PIPE_AMP] = ACTIONS(4883), [anon_sym_AMP_AMP] = ACTIONS(4883), [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), + [anon_sym_LT] = ACTIONS(5874), + [anon_sym_GT] = ACTIONS(5874), [anon_sym_GT_GT] = ACTIONS(4883), - [anon_sym_AMP_GT] = ACTIONS(5866), + [anon_sym_AMP_GT] = ACTIONS(5874), [anon_sym_AMP_GT_GT] = ACTIONS(4883), [anon_sym_LT_AMP] = ACTIONS(4883), [anon_sym_GT_AMP] = ACTIONS(4883), - [anon_sym_LT_LT] = ACTIONS(5866), + [anon_sym_LT_LT] = ACTIONS(5874), [anon_sym_LT_LT_DASH] = ACTIONS(4883), [anon_sym_LT_LT_LT] = ACTIONS(4883), [sym_comment] = ACTIONS(56), }, - [3546] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7828), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [3547] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3935), + [anon_sym_RBRACE] = ACTIONS(7834), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3548] = { [sym_file_descriptor] = ACTIONS(4889), [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_PIPE] = ACTIONS(5878), [anon_sym_RPAREN] = ACTIONS(4889), [anon_sym_PIPE_AMP] = ACTIONS(4889), [anon_sym_AMP_AMP] = ACTIONS(4889), [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_LT] = ACTIONS(5870), - [anon_sym_GT] = ACTIONS(5870), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_GT] = ACTIONS(5878), [anon_sym_GT_GT] = ACTIONS(4889), - [anon_sym_AMP_GT] = ACTIONS(5870), + [anon_sym_AMP_GT] = ACTIONS(5878), [anon_sym_AMP_GT_GT] = ACTIONS(4889), [anon_sym_LT_AMP] = ACTIONS(4889), [anon_sym_GT_AMP] = ACTIONS(4889), - [anon_sym_LT_LT] = ACTIONS(5870), + [anon_sym_LT_LT] = ACTIONS(5878), [anon_sym_LT_LT_DASH] = ACTIONS(4889), [anon_sym_LT_LT_LT] = ACTIONS(4889), [sym_comment] = ACTIONS(56), }, - [3548] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7830), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [3549] = { - [sym_file_descriptor] = ACTIONS(4790), - [sym__concat] = ACTIONS(4790), - [sym_variable_name] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_PIPE_AMP] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_GT_GT] = ACTIONS(4790), - [anon_sym_AMP_GT] = ACTIONS(5844), - [anon_sym_AMP_GT_GT] = ACTIONS(4790), - [anon_sym_LT_AMP] = ACTIONS(4790), - [anon_sym_GT_AMP] = ACTIONS(4790), - [sym__special_characters] = ACTIONS(5844), - [anon_sym_DQUOTE] = ACTIONS(4790), - [anon_sym_DOLLAR] = ACTIONS(5844), - [sym_raw_string] = ACTIONS(4790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4790), - [anon_sym_LT_LPAREN] = ACTIONS(4790), - [anon_sym_GT_LPAREN] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5844), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3937), + [anon_sym_RBRACE] = ACTIONS(7836), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3550] = { - [sym_file_descriptor] = ACTIONS(4796), - [sym__concat] = ACTIONS(4796), - [sym_variable_name] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(5846), - [anon_sym_PIPE_AMP] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4796), - [anon_sym_PIPE_PIPE] = ACTIONS(4796), - [anon_sym_LT] = ACTIONS(5846), - [anon_sym_GT] = ACTIONS(5846), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_AMP_GT] = ACTIONS(5846), - [anon_sym_AMP_GT_GT] = ACTIONS(4796), - [anon_sym_LT_AMP] = ACTIONS(4796), - [anon_sym_GT_AMP] = ACTIONS(4796), - [sym__special_characters] = ACTIONS(5846), - [anon_sym_DQUOTE] = ACTIONS(4796), - [anon_sym_DOLLAR] = ACTIONS(5846), - [sym_raw_string] = ACTIONS(4796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4796), - [anon_sym_BQUOTE] = ACTIONS(4796), - [anon_sym_LT_LPAREN] = ACTIONS(4796), - [anon_sym_GT_LPAREN] = ACTIONS(4796), + [sym_file_descriptor] = ACTIONS(4895), + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(5882), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_PIPE_AMP] = ACTIONS(4895), + [anon_sym_AMP_AMP] = ACTIONS(4895), + [anon_sym_PIPE_PIPE] = ACTIONS(4895), + [anon_sym_LT] = ACTIONS(5882), + [anon_sym_GT] = ACTIONS(5882), + [anon_sym_GT_GT] = ACTIONS(4895), + [anon_sym_AMP_GT] = ACTIONS(5882), + [anon_sym_AMP_GT_GT] = ACTIONS(4895), + [anon_sym_LT_AMP] = ACTIONS(4895), + [anon_sym_GT_AMP] = ACTIONS(4895), + [anon_sym_LT_LT] = ACTIONS(5882), + [anon_sym_LT_LT_DASH] = ACTIONS(4895), + [anon_sym_LT_LT_LT] = ACTIONS(4895), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5846), }, [3551] = { - [sym_file_descriptor] = ACTIONS(4859), - [sym__concat] = ACTIONS(4859), - [sym_variable_name] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_PIPE_AMP] = ACTIONS(4859), - [anon_sym_AMP_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4859), - [anon_sym_LT] = ACTIONS(5848), - [anon_sym_GT] = ACTIONS(5848), - [anon_sym_GT_GT] = ACTIONS(4859), - [anon_sym_AMP_GT] = ACTIONS(5848), - [anon_sym_AMP_GT_GT] = ACTIONS(4859), - [anon_sym_LT_AMP] = ACTIONS(4859), - [anon_sym_GT_AMP] = ACTIONS(4859), - [sym__special_characters] = ACTIONS(5848), - [anon_sym_DQUOTE] = ACTIONS(4859), - [anon_sym_DOLLAR] = ACTIONS(5848), - [sym_raw_string] = ACTIONS(4859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4859), - [anon_sym_LT_LPAREN] = ACTIONS(4859), - [anon_sym_GT_LPAREN] = ACTIONS(4859), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5848), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7838), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3552] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7832), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(4901), + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(5886), + [anon_sym_RPAREN] = ACTIONS(4901), + [anon_sym_PIPE_AMP] = ACTIONS(4901), + [anon_sym_AMP_AMP] = ACTIONS(4901), + [anon_sym_PIPE_PIPE] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(5886), + [anon_sym_GT] = ACTIONS(5886), + [anon_sym_GT_GT] = ACTIONS(4901), + [anon_sym_AMP_GT] = ACTIONS(5886), + [anon_sym_AMP_GT_GT] = ACTIONS(4901), + [anon_sym_LT_AMP] = ACTIONS(4901), + [anon_sym_GT_AMP] = ACTIONS(4901), + [anon_sym_LT_LT] = ACTIONS(5886), + [anon_sym_LT_LT_DASH] = ACTIONS(4901), + [anon_sym_LT_LT_LT] = ACTIONS(4901), + [sym_comment] = ACTIONS(56), }, [3553] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7834), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7840), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3554] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7836), + [sym_file_descriptor] = ACTIONS(4802), + [sym__concat] = ACTIONS(4802), + [sym_variable_name] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(5860), + [anon_sym_PIPE_AMP] = ACTIONS(4802), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [anon_sym_LT] = ACTIONS(5860), + [anon_sym_GT] = ACTIONS(5860), + [anon_sym_GT_GT] = ACTIONS(4802), + [anon_sym_AMP_GT] = ACTIONS(5860), + [anon_sym_AMP_GT_GT] = ACTIONS(4802), + [anon_sym_LT_AMP] = ACTIONS(4802), + [anon_sym_GT_AMP] = ACTIONS(4802), + [sym__special_characters] = ACTIONS(5860), + [anon_sym_DQUOTE] = ACTIONS(4802), + [anon_sym_DOLLAR] = ACTIONS(5860), + [sym_raw_string] = ACTIONS(4802), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4802), + [anon_sym_BQUOTE] = ACTIONS(4802), + [anon_sym_LT_LPAREN] = ACTIONS(4802), + [anon_sym_GT_LPAREN] = ACTIONS(4802), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5860), }, [3555] = { - [anon_sym_RBRACE] = ACTIONS(7836), + [sym_file_descriptor] = ACTIONS(4808), + [sym__concat] = ACTIONS(4808), + [sym_variable_name] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_PIPE_AMP] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), + [anon_sym_LT] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5862), + [anon_sym_GT_GT] = ACTIONS(4808), + [anon_sym_AMP_GT] = ACTIONS(5862), + [anon_sym_AMP_GT_GT] = ACTIONS(4808), + [anon_sym_LT_AMP] = ACTIONS(4808), + [anon_sym_GT_AMP] = ACTIONS(4808), + [sym__special_characters] = ACTIONS(5862), + [anon_sym_DQUOTE] = ACTIONS(4808), + [anon_sym_DOLLAR] = ACTIONS(5862), + [sym_raw_string] = ACTIONS(4808), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4808), + [anon_sym_BQUOTE] = ACTIONS(4808), + [anon_sym_LT_LPAREN] = ACTIONS(4808), + [anon_sym_GT_LPAREN] = ACTIONS(4808), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5862), }, [3556] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3940), - [anon_sym_RBRACE] = ACTIONS(7838), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3557] = { [sym_file_descriptor] = ACTIONS(4871), [sym__concat] = ACTIONS(4871), [sym_variable_name] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_PIPE] = ACTIONS(5864), [anon_sym_PIPE_AMP] = ACTIONS(4871), [anon_sym_AMP_AMP] = ACTIONS(4871), [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_LT] = ACTIONS(5858), - [anon_sym_GT] = ACTIONS(5858), + [anon_sym_LT] = ACTIONS(5864), + [anon_sym_GT] = ACTIONS(5864), [anon_sym_GT_GT] = ACTIONS(4871), - [anon_sym_AMP_GT] = ACTIONS(5858), + [anon_sym_AMP_GT] = ACTIONS(5864), [anon_sym_AMP_GT_GT] = ACTIONS(4871), [anon_sym_LT_AMP] = ACTIONS(4871), [anon_sym_GT_AMP] = ACTIONS(4871), - [sym__special_characters] = ACTIONS(5858), + [sym__special_characters] = ACTIONS(5864), [anon_sym_DQUOTE] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_DOLLAR] = ACTIONS(5864), [sym_raw_string] = ACTIONS(4871), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4871), @@ -89417,111 +89369,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4871), [anon_sym_GT_LPAREN] = ACTIONS(4871), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5858), + [sym_word] = ACTIONS(5864), + }, + [3557] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7842), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3558] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3942), - [anon_sym_RBRACE] = ACTIONS(7840), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7844), + [sym_comment] = ACTIONS(56), }, [3559] = { - [sym_file_descriptor] = ACTIONS(4877), - [sym__concat] = ACTIONS(4877), - [sym_variable_name] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_PIPE_AMP] = ACTIONS(4877), - [anon_sym_AMP_AMP] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4877), - [anon_sym_LT] = ACTIONS(5862), - [anon_sym_GT] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(4877), - [anon_sym_AMP_GT] = ACTIONS(5862), - [anon_sym_AMP_GT_GT] = ACTIONS(4877), - [anon_sym_LT_AMP] = ACTIONS(4877), - [anon_sym_GT_AMP] = ACTIONS(4877), - [sym__special_characters] = ACTIONS(5862), - [anon_sym_DQUOTE] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(5862), - [sym_raw_string] = ACTIONS(4877), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(4877), - [anon_sym_LT_LPAREN] = ACTIONS(4877), - [anon_sym_GT_LPAREN] = ACTIONS(4877), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7846), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5862), }, [3560] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3944), - [anon_sym_RBRACE] = ACTIONS(7842), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_RBRACE] = ACTIONS(7846), + [sym_comment] = ACTIONS(56), }, [3561] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3944), + [anon_sym_RBRACE] = ACTIONS(7848), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3562] = { [sym_file_descriptor] = ACTIONS(4883), [sym__concat] = ACTIONS(4883), [sym_variable_name] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_PIPE] = ACTIONS(5874), [anon_sym_PIPE_AMP] = ACTIONS(4883), [anon_sym_AMP_AMP] = ACTIONS(4883), [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), + [anon_sym_LT] = ACTIONS(5874), + [anon_sym_GT] = ACTIONS(5874), [anon_sym_GT_GT] = ACTIONS(4883), - [anon_sym_AMP_GT] = ACTIONS(5866), + [anon_sym_AMP_GT] = ACTIONS(5874), [anon_sym_AMP_GT_GT] = ACTIONS(4883), [anon_sym_LT_AMP] = ACTIONS(4883), [anon_sym_GT_AMP] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(5866), + [sym__special_characters] = ACTIONS(5874), [anon_sym_DQUOTE] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5866), + [anon_sym_DOLLAR] = ACTIONS(5874), [sym_raw_string] = ACTIONS(4883), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4883), @@ -89529,55 +89470,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4883), [anon_sym_GT_LPAREN] = ACTIONS(4883), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5866), - }, - [3562] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7844), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(5874), }, [3563] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3946), + [anon_sym_RBRACE] = ACTIONS(7850), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3564] = { [sym_file_descriptor] = ACTIONS(4889), [sym__concat] = ACTIONS(4889), [sym_variable_name] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_PIPE] = ACTIONS(5878), [anon_sym_PIPE_AMP] = ACTIONS(4889), [anon_sym_AMP_AMP] = ACTIONS(4889), [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_LT] = ACTIONS(5870), - [anon_sym_GT] = ACTIONS(5870), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_GT] = ACTIONS(5878), [anon_sym_GT_GT] = ACTIONS(4889), - [anon_sym_AMP_GT] = ACTIONS(5870), + [anon_sym_AMP_GT] = ACTIONS(5878), [anon_sym_AMP_GT_GT] = ACTIONS(4889), [anon_sym_LT_AMP] = ACTIONS(4889), [anon_sym_GT_AMP] = ACTIONS(4889), - [sym__special_characters] = ACTIONS(5870), + [sym__special_characters] = ACTIONS(5878), [anon_sym_DQUOTE] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5870), + [anon_sym_DOLLAR] = ACTIONS(5878), [sym_raw_string] = ACTIONS(4889), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), [anon_sym_DOLLAR_LPAREN] = ACTIONS(4889), @@ -89585,493 +89526,487 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(4889), [anon_sym_GT_LPAREN] = ACTIONS(4889), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(5870), - }, - [3564] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7846), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(5878), }, [3565] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3948), + [anon_sym_RBRACE] = ACTIONS(7852), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3566] = { - [aux_sym_concatenation_repeat1] = STATE(3566), - [sym__concat] = ACTIONS(7848), - [anon_sym_PIPE] = ACTIONS(3056), - [anon_sym_PIPE_AMP] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_BQUOTE] = ACTIONS(1886), + [sym_file_descriptor] = ACTIONS(4895), + [sym__concat] = ACTIONS(4895), + [sym_variable_name] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(5882), + [anon_sym_PIPE_AMP] = ACTIONS(4895), + [anon_sym_AMP_AMP] = ACTIONS(4895), + [anon_sym_PIPE_PIPE] = ACTIONS(4895), + [anon_sym_LT] = ACTIONS(5882), + [anon_sym_GT] = ACTIONS(5882), + [anon_sym_GT_GT] = ACTIONS(4895), + [anon_sym_AMP_GT] = ACTIONS(5882), + [anon_sym_AMP_GT_GT] = ACTIONS(4895), + [anon_sym_LT_AMP] = ACTIONS(4895), + [anon_sym_GT_AMP] = ACTIONS(4895), + [sym__special_characters] = ACTIONS(5882), + [anon_sym_DQUOTE] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(5882), + [sym_raw_string] = ACTIONS(4895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(4895), + [anon_sym_LT_LPAREN] = ACTIONS(4895), + [anon_sym_GT_LPAREN] = ACTIONS(4895), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(5882), }, [3567] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_PIPE_AMP] = ACTIONS(1923), - [anon_sym_AMP_AMP] = ACTIONS(1923), - [anon_sym_PIPE_PIPE] = ACTIONS(1923), - [anon_sym_BQUOTE] = ACTIONS(1923), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7854), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3568] = { - [sym_concatenation] = STATE(3950), - [sym_string] = STATE(3949), - [sym_simple_expansion] = STATE(3949), - [sym_string_expansion] = STATE(3949), - [sym_expansion] = STATE(3949), - [sym_command_substitution] = STATE(3949), - [sym_process_substitution] = STATE(3949), - [anon_sym_RBRACE] = ACTIONS(7851), - [sym__special_characters] = ACTIONS(7853), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(7855), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [sym_file_descriptor] = ACTIONS(4901), + [sym__concat] = ACTIONS(4901), + [sym_variable_name] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(5886), + [anon_sym_PIPE_AMP] = ACTIONS(4901), + [anon_sym_AMP_AMP] = ACTIONS(4901), + [anon_sym_PIPE_PIPE] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(5886), + [anon_sym_GT] = ACTIONS(5886), + [anon_sym_GT_GT] = ACTIONS(4901), + [anon_sym_AMP_GT] = ACTIONS(5886), + [anon_sym_AMP_GT_GT] = ACTIONS(4901), + [anon_sym_LT_AMP] = ACTIONS(4901), + [anon_sym_GT_AMP] = ACTIONS(4901), + [sym__special_characters] = ACTIONS(5886), + [anon_sym_DQUOTE] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(5886), + [sym_raw_string] = ACTIONS(4901), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4901), + [anon_sym_LT_LPAREN] = ACTIONS(4901), + [anon_sym_GT_LPAREN] = ACTIONS(4901), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7857), + [sym_word] = ACTIONS(5886), }, [3569] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(3071), - [anon_sym_PIPE_AMP] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1968), - [anon_sym_PIPE_PIPE] = ACTIONS(1968), - [anon_sym_BQUOTE] = ACTIONS(1968), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7856), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3570] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7859), + [sym__concat] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), }, [3571] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7861), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_concatenation_repeat1] = STATE(3571), + [sym__concat] = ACTIONS(7858), + [anon_sym_PIPE] = ACTIONS(3066), + [anon_sym_PIPE_AMP] = ACTIONS(1890), + [anon_sym_AMP_AMP] = ACTIONS(1890), + [anon_sym_PIPE_PIPE] = ACTIONS(1890), + [anon_sym_BQUOTE] = ACTIONS(1890), + [sym_comment] = ACTIONS(56), }, [3572] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(7863), + [sym__concat] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(3071), + [anon_sym_PIPE_AMP] = ACTIONS(1927), + [anon_sym_AMP_AMP] = ACTIONS(1927), + [anon_sym_PIPE_PIPE] = ACTIONS(1927), + [anon_sym_BQUOTE] = ACTIONS(1927), [sym_comment] = ACTIONS(56), }, [3573] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3956), - [anon_sym_RBRACE] = ACTIONS(7865), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7867), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_concatenation] = STATE(3954), + [sym_string] = STATE(3953), + [sym_simple_expansion] = STATE(3953), + [sym_string_expansion] = STATE(3953), + [sym_expansion] = STATE(3953), + [sym_command_substitution] = STATE(3953), + [sym_process_substitution] = STATE(3953), + [anon_sym_RBRACE] = ACTIONS(7861), + [sym__special_characters] = ACTIONS(7863), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(7865), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7867), }, [3574] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3959), - [anon_sym_RBRACE] = ACTIONS(7869), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7871), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(3081), + [anon_sym_PIPE_AMP] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_PIPE_PIPE] = ACTIONS(1972), + [anon_sym_BQUOTE] = ACTIONS(1972), + [sym_comment] = ACTIONS(56), }, [3575] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3961), - [anon_sym_RBRACE] = ACTIONS(7851), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(7873), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(7869), }, [3576] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_PIPE_AMP] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), - [anon_sym_BQUOTE] = ACTIONS(2022), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7871), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3577] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7875), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(7873), + [sym_comment] = ACTIONS(56), }, [3578] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7877), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3960), + [anon_sym_RBRACE] = ACTIONS(7875), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7877), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3579] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_PIPE] = ACTIONS(3095), - [anon_sym_PIPE_AMP] = ACTIONS(2030), - [anon_sym_AMP_AMP] = ACTIONS(2030), - [anon_sym_PIPE_PIPE] = ACTIONS(2030), - [anon_sym_BQUOTE] = ACTIONS(2030), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3963), + [anon_sym_RBRACE] = ACTIONS(7879), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7881), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3580] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3965), + [anon_sym_RBRACE] = ACTIONS(7861), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(7883), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(7879), + [sym_word] = ACTIONS(866), }, [3581] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7851), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(2026), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_PIPE_AMP] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2026), + [anon_sym_PIPE_PIPE] = ACTIONS(2026), + [anon_sym_BQUOTE] = ACTIONS(2026), + [sym_comment] = ACTIONS(56), }, [3582] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(3099), - [anon_sym_PIPE_AMP] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7885), }, [3583] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_PIPE_AMP] = ACTIONS(2396), - [anon_sym_AMP_AMP] = ACTIONS(2396), - [anon_sym_PIPE_PIPE] = ACTIONS(2396), - [anon_sym_BQUOTE] = ACTIONS(2396), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7887), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3584] = { - [sym__concat] = ACTIONS(6025), - [sym_variable_name] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6916), - [anon_sym_PIPE_AMP] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [sym__special_characters] = ACTIONS(6916), - [anon_sym_DQUOTE] = ACTIONS(6025), - [anon_sym_DOLLAR] = ACTIONS(6916), - [sym_raw_string] = ACTIONS(6025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), - [anon_sym_BQUOTE] = ACTIONS(6025), - [anon_sym_LT_LPAREN] = ACTIONS(6025), - [anon_sym_GT_LPAREN] = ACTIONS(6025), + [sym__concat] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_PIPE_AMP] = ACTIONS(2034), + [anon_sym_AMP_AMP] = ACTIONS(2034), + [anon_sym_PIPE_PIPE] = ACTIONS(2034), + [anon_sym_BQUOTE] = ACTIONS(2034), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6916), - [sym_word] = ACTIONS(6027), }, [3585] = { - [sym__concat] = ACTIONS(6029), - [sym_variable_name] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6918), - [anon_sym_PIPE_AMP] = ACTIONS(6029), - [anon_sym_AMP_AMP] = ACTIONS(6029), - [anon_sym_PIPE_PIPE] = ACTIONS(6029), - [sym__special_characters] = ACTIONS(6918), - [anon_sym_DQUOTE] = ACTIONS(6029), - [anon_sym_DOLLAR] = ACTIONS(6918), - [sym_raw_string] = ACTIONS(6029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), - [anon_sym_BQUOTE] = ACTIONS(6029), - [anon_sym_LT_LPAREN] = ACTIONS(6029), - [anon_sym_GT_LPAREN] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6918), - [sym_word] = ACTIONS(6031), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(7889), }, [3586] = { - [sym__concat] = ACTIONS(6033), - [sym_variable_name] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6920), - [anon_sym_PIPE_AMP] = ACTIONS(6033), - [anon_sym_AMP_AMP] = ACTIONS(6033), - [anon_sym_PIPE_PIPE] = ACTIONS(6033), - [sym__special_characters] = ACTIONS(6920), - [anon_sym_DQUOTE] = ACTIONS(6033), - [anon_sym_DOLLAR] = ACTIONS(6920), - [sym_raw_string] = ACTIONS(6033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), - [anon_sym_BQUOTE] = ACTIONS(6033), - [anon_sym_LT_LPAREN] = ACTIONS(6033), - [anon_sym_GT_LPAREN] = ACTIONS(6033), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6920), - [sym_word] = ACTIONS(6035), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7861), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3587] = { - [sym__concat] = ACTIONS(6037), - [sym_variable_name] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6922), - [anon_sym_PIPE_AMP] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(6037), - [anon_sym_PIPE_PIPE] = ACTIONS(6037), - [sym__special_characters] = ACTIONS(6922), - [anon_sym_DQUOTE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(6922), - [sym_raw_string] = ACTIONS(6037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), - [anon_sym_BQUOTE] = ACTIONS(6037), - [anon_sym_LT_LPAREN] = ACTIONS(6037), - [anon_sym_GT_LPAREN] = ACTIONS(6037), + [sym__concat] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(3109), + [anon_sym_PIPE_AMP] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_BQUOTE] = ACTIONS(2196), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6922), - [sym_word] = ACTIONS(6039), }, [3588] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7881), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(2402), + [anon_sym_PIPE] = ACTIONS(3111), + [anon_sym_PIPE_AMP] = ACTIONS(2402), + [anon_sym_AMP_AMP] = ACTIONS(2402), + [anon_sym_PIPE_PIPE] = ACTIONS(2402), + [anon_sym_BQUOTE] = ACTIONS(2402), + [sym_comment] = ACTIONS(56), }, [3589] = { - [sym__concat] = ACTIONS(6043), - [sym_variable_name] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6926), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6926), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6926), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), + [sym__concat] = ACTIONS(6041), + [sym_variable_name] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE_AMP] = ACTIONS(6041), + [anon_sym_AMP_AMP] = ACTIONS(6041), + [anon_sym_PIPE_PIPE] = ACTIONS(6041), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), + [anon_sym_BQUOTE] = ACTIONS(6041), + [anon_sym_LT_LPAREN] = ACTIONS(6041), + [anon_sym_GT_LPAREN] = ACTIONS(6041), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6926), - [sym_word] = ACTIONS(6045), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6930), + [sym_word] = ACTIONS(6043), }, [3590] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7883), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6045), + [sym_variable_name] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6932), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6932), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6932), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6932), + [sym_word] = ACTIONS(6047), }, [3591] = { [sym__concat] = ACTIONS(6049), [sym_variable_name] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE] = ACTIONS(6934), [anon_sym_PIPE_AMP] = ACTIONS(6049), [anon_sym_AMP_AMP] = ACTIONS(6049), [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6930), + [sym__special_characters] = ACTIONS(6934), [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6930), + [anon_sym_DOLLAR] = ACTIONS(6934), [sym_raw_string] = ACTIONS(6049), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), @@ -90079,68 +90014,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(6049), [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6930), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6934), [sym_word] = ACTIONS(6051), }, [3592] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7885), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6053), + [sym_variable_name] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE_AMP] = ACTIONS(6053), + [anon_sym_AMP_AMP] = ACTIONS(6053), + [anon_sym_PIPE_PIPE] = ACTIONS(6053), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), + [anon_sym_BQUOTE] = ACTIONS(6053), + [anon_sym_LT_LPAREN] = ACTIONS(6053), + [anon_sym_GT_LPAREN] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6936), + [sym_word] = ACTIONS(6055), }, [3593] = { - [sym__concat] = ACTIONS(6055), - [sym_variable_name] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6934), - [sym_word] = ACTIONS(6057), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7891), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3594] = { [sym__concat] = ACTIONS(6059), [sym_variable_name] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE] = ACTIONS(6940), [anon_sym_PIPE_AMP] = ACTIONS(6059), [anon_sym_AMP_AMP] = ACTIONS(6059), [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6936), + [sym__special_characters] = ACTIONS(6940), [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6936), + [anon_sym_DOLLAR] = ACTIONS(6940), [sym_raw_string] = ACTIONS(6059), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), @@ -90148,171 +90083,174 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(6059), [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6936), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6940), [sym_word] = ACTIONS(6061), }, [3595] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6916), - [anon_sym_PIPE_AMP] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [sym__special_characters] = ACTIONS(6916), - [anon_sym_DQUOTE] = ACTIONS(6025), - [anon_sym_DOLLAR] = ACTIONS(6916), - [sym_raw_string] = ACTIONS(6025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), - [anon_sym_BQUOTE] = ACTIONS(6025), - [anon_sym_LT_LPAREN] = ACTIONS(6025), - [anon_sym_GT_LPAREN] = ACTIONS(6025), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6916), - [sym_word] = ACTIONS(6027), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7893), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3596] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6918), - [anon_sym_PIPE_AMP] = ACTIONS(6029), - [anon_sym_AMP_AMP] = ACTIONS(6029), - [anon_sym_PIPE_PIPE] = ACTIONS(6029), - [sym__special_characters] = ACTIONS(6918), - [anon_sym_DQUOTE] = ACTIONS(6029), - [anon_sym_DOLLAR] = ACTIONS(6918), - [sym_raw_string] = ACTIONS(6029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), - [anon_sym_BQUOTE] = ACTIONS(6029), - [anon_sym_LT_LPAREN] = ACTIONS(6029), - [anon_sym_GT_LPAREN] = ACTIONS(6029), + [sym__concat] = ACTIONS(6065), + [sym_variable_name] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6944), + [anon_sym_PIPE_AMP] = ACTIONS(6065), + [anon_sym_AMP_AMP] = ACTIONS(6065), + [anon_sym_PIPE_PIPE] = ACTIONS(6065), + [sym__special_characters] = ACTIONS(6944), + [anon_sym_DQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR] = ACTIONS(6944), + [sym_raw_string] = ACTIONS(6065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), + [anon_sym_BQUOTE] = ACTIONS(6065), + [anon_sym_LT_LPAREN] = ACTIONS(6065), + [anon_sym_GT_LPAREN] = ACTIONS(6065), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6918), - [sym_word] = ACTIONS(6031), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6944), + [sym_word] = ACTIONS(6067), }, [3597] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6920), - [anon_sym_PIPE_AMP] = ACTIONS(6033), - [anon_sym_AMP_AMP] = ACTIONS(6033), - [anon_sym_PIPE_PIPE] = ACTIONS(6033), - [sym__special_characters] = ACTIONS(6920), - [anon_sym_DQUOTE] = ACTIONS(6033), - [anon_sym_DOLLAR] = ACTIONS(6920), - [sym_raw_string] = ACTIONS(6033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), - [anon_sym_BQUOTE] = ACTIONS(6033), - [anon_sym_LT_LPAREN] = ACTIONS(6033), - [anon_sym_GT_LPAREN] = ACTIONS(6033), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6920), - [sym_word] = ACTIONS(6035), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7895), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3598] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6922), - [anon_sym_PIPE_AMP] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(6037), - [anon_sym_PIPE_PIPE] = ACTIONS(6037), - [sym__special_characters] = ACTIONS(6922), - [anon_sym_DQUOTE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(6922), - [sym_raw_string] = ACTIONS(6037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), - [anon_sym_BQUOTE] = ACTIONS(6037), - [anon_sym_LT_LPAREN] = ACTIONS(6037), - [anon_sym_GT_LPAREN] = ACTIONS(6037), + [sym__concat] = ACTIONS(6071), + [sym_variable_name] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6948), + [anon_sym_PIPE_AMP] = ACTIONS(6071), + [anon_sym_AMP_AMP] = ACTIONS(6071), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [sym__special_characters] = ACTIONS(6948), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6948), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6922), - [sym_word] = ACTIONS(6039), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6948), + [sym_word] = ACTIONS(6073), }, [3599] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7887), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6075), + [sym_variable_name] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_PIPE_AMP] = ACTIONS(6075), + [anon_sym_AMP_AMP] = ACTIONS(6075), + [anon_sym_PIPE_PIPE] = ACTIONS(6075), + [sym__special_characters] = ACTIONS(6950), + [anon_sym_DQUOTE] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6950), + [sym_raw_string] = ACTIONS(6075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), + [anon_sym_BQUOTE] = ACTIONS(6075), + [anon_sym_LT_LPAREN] = ACTIONS(6075), + [anon_sym_GT_LPAREN] = ACTIONS(6075), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6950), + [sym_word] = ACTIONS(6077), }, [3600] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6926), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6926), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6926), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), + [sym__concat] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE_AMP] = ACTIONS(6041), + [anon_sym_AMP_AMP] = ACTIONS(6041), + [anon_sym_PIPE_PIPE] = ACTIONS(6041), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), + [anon_sym_BQUOTE] = ACTIONS(6041), + [anon_sym_LT_LPAREN] = ACTIONS(6041), + [anon_sym_GT_LPAREN] = ACTIONS(6041), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6926), - [sym_word] = ACTIONS(6045), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6930), + [sym_word] = ACTIONS(6043), }, [3601] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7889), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6932), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6932), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6932), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6932), + [sym_word] = ACTIONS(6047), }, [3602] = { [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE] = ACTIONS(6934), [anon_sym_PIPE_AMP] = ACTIONS(6049), [anon_sym_AMP_AMP] = ACTIONS(6049), [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6930), + [sym__special_characters] = ACTIONS(6934), [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6930), + [anon_sym_DOLLAR] = ACTIONS(6934), [sym_raw_string] = ACTIONS(6049), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), @@ -90320,66 +90258,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(6049), [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6930), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6934), [sym_word] = ACTIONS(6051), }, [3603] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7891), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE_AMP] = ACTIONS(6053), + [anon_sym_AMP_AMP] = ACTIONS(6053), + [anon_sym_PIPE_PIPE] = ACTIONS(6053), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), + [anon_sym_BQUOTE] = ACTIONS(6053), + [anon_sym_LT_LPAREN] = ACTIONS(6053), + [anon_sym_GT_LPAREN] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6936), + [sym_word] = ACTIONS(6055), }, [3604] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6934), - [sym_word] = ACTIONS(6057), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7897), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3605] = { [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE] = ACTIONS(6940), [anon_sym_PIPE_AMP] = ACTIONS(6059), [anon_sym_AMP_AMP] = ACTIONS(6059), [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6936), + [sym__special_characters] = ACTIONS(6940), [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6936), + [anon_sym_DOLLAR] = ACTIONS(6940), [sym_raw_string] = ACTIONS(6059), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), @@ -90387,604 +90325,592 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(6059), [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6936), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6940), [sym_word] = ACTIONS(6061), }, [3606] = { - [sym_file_descriptor] = ACTIONS(7018), - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7709), - [anon_sym_PIPE_AMP] = ACTIONS(7018), - [anon_sym_AMP_AMP] = ACTIONS(7018), - [anon_sym_PIPE_PIPE] = ACTIONS(7018), - [anon_sym_EQ_TILDE] = ACTIONS(7709), - [anon_sym_EQ_EQ] = ACTIONS(7709), - [anon_sym_LT] = ACTIONS(7709), - [anon_sym_GT] = ACTIONS(7709), - [anon_sym_GT_GT] = ACTIONS(7018), - [anon_sym_AMP_GT] = ACTIONS(7709), - [anon_sym_AMP_GT_GT] = ACTIONS(7018), - [anon_sym_LT_AMP] = ACTIONS(7018), - [anon_sym_GT_AMP] = ACTIONS(7018), - [anon_sym_LT_LT] = ACTIONS(7709), - [anon_sym_LT_LT_DASH] = ACTIONS(7018), - [anon_sym_LT_LT_LT] = ACTIONS(7018), - [sym__special_characters] = ACTIONS(7709), - [anon_sym_DQUOTE] = ACTIONS(7018), - [anon_sym_DOLLAR] = ACTIONS(7709), - [sym_raw_string] = ACTIONS(7018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), - [anon_sym_BQUOTE] = ACTIONS(7018), - [anon_sym_LT_LPAREN] = ACTIONS(7018), - [anon_sym_GT_LPAREN] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7020), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7899), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3607] = { - [sym_file_descriptor] = ACTIONS(7022), - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7711), - [anon_sym_PIPE_AMP] = ACTIONS(7022), - [anon_sym_AMP_AMP] = ACTIONS(7022), - [anon_sym_PIPE_PIPE] = ACTIONS(7022), - [anon_sym_EQ_TILDE] = ACTIONS(7711), - [anon_sym_EQ_EQ] = ACTIONS(7711), - [anon_sym_LT] = ACTIONS(7711), - [anon_sym_GT] = ACTIONS(7711), - [anon_sym_GT_GT] = ACTIONS(7022), - [anon_sym_AMP_GT] = ACTIONS(7711), - [anon_sym_AMP_GT_GT] = ACTIONS(7022), - [anon_sym_LT_AMP] = ACTIONS(7022), - [anon_sym_GT_AMP] = ACTIONS(7022), - [anon_sym_LT_LT] = ACTIONS(7711), - [anon_sym_LT_LT_DASH] = ACTIONS(7022), - [anon_sym_LT_LT_LT] = ACTIONS(7022), - [sym__special_characters] = ACTIONS(7711), - [anon_sym_DQUOTE] = ACTIONS(7022), - [anon_sym_DOLLAR] = ACTIONS(7711), - [sym_raw_string] = ACTIONS(7022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), - [anon_sym_BQUOTE] = ACTIONS(7022), - [anon_sym_LT_LPAREN] = ACTIONS(7022), - [anon_sym_GT_LPAREN] = ACTIONS(7022), + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6944), + [anon_sym_PIPE_AMP] = ACTIONS(6065), + [anon_sym_AMP_AMP] = ACTIONS(6065), + [anon_sym_PIPE_PIPE] = ACTIONS(6065), + [sym__special_characters] = ACTIONS(6944), + [anon_sym_DQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR] = ACTIONS(6944), + [sym_raw_string] = ACTIONS(6065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), + [anon_sym_BQUOTE] = ACTIONS(6065), + [anon_sym_LT_LPAREN] = ACTIONS(6065), + [anon_sym_GT_LPAREN] = ACTIONS(6065), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7024), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6944), + [sym_word] = ACTIONS(6067), }, [3608] = { - [sym_file_descriptor] = ACTIONS(7026), - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_PIPE_AMP] = ACTIONS(7026), - [anon_sym_AMP_AMP] = ACTIONS(7026), - [anon_sym_PIPE_PIPE] = ACTIONS(7026), - [anon_sym_EQ_TILDE] = ACTIONS(7713), - [anon_sym_EQ_EQ] = ACTIONS(7713), - [anon_sym_LT] = ACTIONS(7713), - [anon_sym_GT] = ACTIONS(7713), - [anon_sym_GT_GT] = ACTIONS(7026), - [anon_sym_AMP_GT] = ACTIONS(7713), - [anon_sym_AMP_GT_GT] = ACTIONS(7026), - [anon_sym_LT_AMP] = ACTIONS(7026), - [anon_sym_GT_AMP] = ACTIONS(7026), - [anon_sym_LT_LT] = ACTIONS(7713), - [anon_sym_LT_LT_DASH] = ACTIONS(7026), - [anon_sym_LT_LT_LT] = ACTIONS(7026), - [sym__special_characters] = ACTIONS(7713), - [anon_sym_DQUOTE] = ACTIONS(7026), - [anon_sym_DOLLAR] = ACTIONS(7713), - [sym_raw_string] = ACTIONS(7026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), - [anon_sym_BQUOTE] = ACTIONS(7026), - [anon_sym_LT_LPAREN] = ACTIONS(7026), - [anon_sym_GT_LPAREN] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7028), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7901), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3609] = { - [sym_file_descriptor] = ACTIONS(4790), - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_PIPE_AMP] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [anon_sym_LT] = ACTIONS(5844), - [anon_sym_GT] = ACTIONS(5844), - [anon_sym_GT_GT] = ACTIONS(4790), - [anon_sym_AMP_GT] = ACTIONS(5844), - [anon_sym_AMP_GT_GT] = ACTIONS(4790), - [anon_sym_LT_AMP] = ACTIONS(4790), - [anon_sym_GT_AMP] = ACTIONS(4790), - [anon_sym_LT_LT] = ACTIONS(5844), - [anon_sym_LT_LT_DASH] = ACTIONS(4790), - [anon_sym_LT_LT_LT] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4790), + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6948), + [anon_sym_PIPE_AMP] = ACTIONS(6071), + [anon_sym_AMP_AMP] = ACTIONS(6071), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [sym__special_characters] = ACTIONS(6948), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6948), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6948), + [sym_word] = ACTIONS(6073), }, [3610] = { - [sym_file_descriptor] = ACTIONS(4796), - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(5846), - [anon_sym_PIPE_AMP] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4796), - [anon_sym_PIPE_PIPE] = ACTIONS(4796), - [anon_sym_LT] = ACTIONS(5846), - [anon_sym_GT] = ACTIONS(5846), - [anon_sym_GT_GT] = ACTIONS(4796), - [anon_sym_AMP_GT] = ACTIONS(5846), - [anon_sym_AMP_GT_GT] = ACTIONS(4796), - [anon_sym_LT_AMP] = ACTIONS(4796), - [anon_sym_GT_AMP] = ACTIONS(4796), - [anon_sym_LT_LT] = ACTIONS(5846), - [anon_sym_LT_LT_DASH] = ACTIONS(4796), - [anon_sym_LT_LT_LT] = ACTIONS(4796), - [anon_sym_BQUOTE] = ACTIONS(4796), + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_PIPE_AMP] = ACTIONS(6075), + [anon_sym_AMP_AMP] = ACTIONS(6075), + [anon_sym_PIPE_PIPE] = ACTIONS(6075), + [sym__special_characters] = ACTIONS(6950), + [anon_sym_DQUOTE] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6950), + [sym_raw_string] = ACTIONS(6075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), + [anon_sym_BQUOTE] = ACTIONS(6075), + [anon_sym_LT_LPAREN] = ACTIONS(6075), + [anon_sym_GT_LPAREN] = ACTIONS(6075), [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6950), + [sym_word] = ACTIONS(6077), }, [3611] = { - [sym_file_descriptor] = ACTIONS(4859), - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_PIPE_AMP] = ACTIONS(4859), - [anon_sym_AMP_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4859), - [anon_sym_LT] = ACTIONS(5848), - [anon_sym_GT] = ACTIONS(5848), - [anon_sym_GT_GT] = ACTIONS(4859), - [anon_sym_AMP_GT] = ACTIONS(5848), - [anon_sym_AMP_GT_GT] = ACTIONS(4859), - [anon_sym_LT_AMP] = ACTIONS(4859), - [anon_sym_GT_AMP] = ACTIONS(4859), - [anon_sym_LT_LT] = ACTIONS(5848), - [anon_sym_LT_LT_DASH] = ACTIONS(4859), - [anon_sym_LT_LT_LT] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4859), + [sym_file_descriptor] = ACTIONS(7032), + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7721), + [anon_sym_PIPE_AMP] = ACTIONS(7032), + [anon_sym_AMP_AMP] = ACTIONS(7032), + [anon_sym_PIPE_PIPE] = ACTIONS(7032), + [anon_sym_EQ_TILDE] = ACTIONS(7721), + [anon_sym_EQ_EQ] = ACTIONS(7721), + [anon_sym_LT] = ACTIONS(7721), + [anon_sym_GT] = ACTIONS(7721), + [anon_sym_GT_GT] = ACTIONS(7032), + [anon_sym_AMP_GT] = ACTIONS(7721), + [anon_sym_AMP_GT_GT] = ACTIONS(7032), + [anon_sym_LT_AMP] = ACTIONS(7032), + [anon_sym_GT_AMP] = ACTIONS(7032), + [anon_sym_LT_LT] = ACTIONS(7721), + [anon_sym_LT_LT_DASH] = ACTIONS(7032), + [anon_sym_LT_LT_LT] = ACTIONS(7032), + [sym__special_characters] = ACTIONS(7721), + [anon_sym_DQUOTE] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7721), + [sym_raw_string] = ACTIONS(7032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), + [anon_sym_BQUOTE] = ACTIONS(7032), + [anon_sym_LT_LPAREN] = ACTIONS(7032), + [anon_sym_GT_LPAREN] = ACTIONS(7032), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7034), }, [3612] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7893), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_file_descriptor] = ACTIONS(7036), + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_PIPE_AMP] = ACTIONS(7036), + [anon_sym_AMP_AMP] = ACTIONS(7036), + [anon_sym_PIPE_PIPE] = ACTIONS(7036), + [anon_sym_EQ_TILDE] = ACTIONS(7723), + [anon_sym_EQ_EQ] = ACTIONS(7723), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7036), + [anon_sym_AMP_GT] = ACTIONS(7723), + [anon_sym_AMP_GT_GT] = ACTIONS(7036), + [anon_sym_LT_AMP] = ACTIONS(7036), + [anon_sym_GT_AMP] = ACTIONS(7036), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_LT_LT_DASH] = ACTIONS(7036), + [anon_sym_LT_LT_LT] = ACTIONS(7036), + [sym__special_characters] = ACTIONS(7723), + [anon_sym_DQUOTE] = ACTIONS(7036), + [anon_sym_DOLLAR] = ACTIONS(7723), + [sym_raw_string] = ACTIONS(7036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), + [anon_sym_BQUOTE] = ACTIONS(7036), + [anon_sym_LT_LPAREN] = ACTIONS(7036), + [anon_sym_GT_LPAREN] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7038), }, [3613] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7895), + [sym_file_descriptor] = ACTIONS(7040), + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7725), + [anon_sym_PIPE_AMP] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7040), + [anon_sym_PIPE_PIPE] = ACTIONS(7040), + [anon_sym_EQ_TILDE] = ACTIONS(7725), + [anon_sym_EQ_EQ] = ACTIONS(7725), + [anon_sym_LT] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7725), + [anon_sym_GT_GT] = ACTIONS(7040), + [anon_sym_AMP_GT] = ACTIONS(7725), + [anon_sym_AMP_GT_GT] = ACTIONS(7040), + [anon_sym_LT_AMP] = ACTIONS(7040), + [anon_sym_GT_AMP] = ACTIONS(7040), + [anon_sym_LT_LT] = ACTIONS(7725), + [anon_sym_LT_LT_DASH] = ACTIONS(7040), + [anon_sym_LT_LT_LT] = ACTIONS(7040), + [sym__special_characters] = ACTIONS(7725), + [anon_sym_DQUOTE] = ACTIONS(7040), + [anon_sym_DOLLAR] = ACTIONS(7725), + [sym_raw_string] = ACTIONS(7040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), + [anon_sym_BQUOTE] = ACTIONS(7040), + [anon_sym_LT_LPAREN] = ACTIONS(7040), + [anon_sym_GT_LPAREN] = ACTIONS(7040), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7042), }, [3614] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7897), + [sym_file_descriptor] = ACTIONS(4802), + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(5860), + [anon_sym_PIPE_AMP] = ACTIONS(4802), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [anon_sym_LT] = ACTIONS(5860), + [anon_sym_GT] = ACTIONS(5860), + [anon_sym_GT_GT] = ACTIONS(4802), + [anon_sym_AMP_GT] = ACTIONS(5860), + [anon_sym_AMP_GT_GT] = ACTIONS(4802), + [anon_sym_LT_AMP] = ACTIONS(4802), + [anon_sym_GT_AMP] = ACTIONS(4802), + [anon_sym_LT_LT] = ACTIONS(5860), + [anon_sym_LT_LT_DASH] = ACTIONS(4802), + [anon_sym_LT_LT_LT] = ACTIONS(4802), + [anon_sym_BQUOTE] = ACTIONS(4802), [sym_comment] = ACTIONS(56), }, [3615] = { - [anon_sym_RBRACE] = ACTIONS(7897), + [sym_file_descriptor] = ACTIONS(4808), + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_PIPE_AMP] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), + [anon_sym_LT] = ACTIONS(5862), + [anon_sym_GT] = ACTIONS(5862), + [anon_sym_GT_GT] = ACTIONS(4808), + [anon_sym_AMP_GT] = ACTIONS(5862), + [anon_sym_AMP_GT_GT] = ACTIONS(4808), + [anon_sym_LT_AMP] = ACTIONS(4808), + [anon_sym_GT_AMP] = ACTIONS(4808), + [anon_sym_LT_LT] = ACTIONS(5862), + [anon_sym_LT_LT_DASH] = ACTIONS(4808), + [anon_sym_LT_LT_LT] = ACTIONS(4808), + [anon_sym_BQUOTE] = ACTIONS(4808), [sym_comment] = ACTIONS(56), }, [3616] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3975), - [anon_sym_RBRACE] = ACTIONS(7899), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3617] = { [sym_file_descriptor] = ACTIONS(4871), [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5858), + [anon_sym_PIPE] = ACTIONS(5864), [anon_sym_PIPE_AMP] = ACTIONS(4871), [anon_sym_AMP_AMP] = ACTIONS(4871), [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_LT] = ACTIONS(5858), - [anon_sym_GT] = ACTIONS(5858), + [anon_sym_LT] = ACTIONS(5864), + [anon_sym_GT] = ACTIONS(5864), [anon_sym_GT_GT] = ACTIONS(4871), - [anon_sym_AMP_GT] = ACTIONS(5858), + [anon_sym_AMP_GT] = ACTIONS(5864), [anon_sym_AMP_GT_GT] = ACTIONS(4871), [anon_sym_LT_AMP] = ACTIONS(4871), [anon_sym_GT_AMP] = ACTIONS(4871), - [anon_sym_LT_LT] = ACTIONS(5858), + [anon_sym_LT_LT] = ACTIONS(5864), [anon_sym_LT_LT_DASH] = ACTIONS(4871), [anon_sym_LT_LT_LT] = ACTIONS(4871), [anon_sym_BQUOTE] = ACTIONS(4871), [sym_comment] = ACTIONS(56), }, - [3618] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3977), - [anon_sym_RBRACE] = ACTIONS(7901), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3617] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7903), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), + }, + [3618] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7905), + [sym_comment] = ACTIONS(56), }, [3619] = { - [sym_file_descriptor] = ACTIONS(4877), - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_PIPE_AMP] = ACTIONS(4877), - [anon_sym_AMP_AMP] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4877), - [anon_sym_LT] = ACTIONS(5862), - [anon_sym_GT] = ACTIONS(5862), - [anon_sym_GT_GT] = ACTIONS(4877), - [anon_sym_AMP_GT] = ACTIONS(5862), - [anon_sym_AMP_GT_GT] = ACTIONS(4877), - [anon_sym_LT_AMP] = ACTIONS(4877), - [anon_sym_GT_AMP] = ACTIONS(4877), - [anon_sym_LT_LT] = ACTIONS(5862), - [anon_sym_LT_LT_DASH] = ACTIONS(4877), - [anon_sym_LT_LT_LT] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(4877), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7907), [sym_comment] = ACTIONS(56), }, [3620] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3979), - [anon_sym_RBRACE] = ACTIONS(7903), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_RBRACE] = ACTIONS(7907), + [sym_comment] = ACTIONS(56), }, [3621] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3979), + [anon_sym_RBRACE] = ACTIONS(7909), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3622] = { [sym_file_descriptor] = ACTIONS(4883), [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5866), + [anon_sym_PIPE] = ACTIONS(5874), [anon_sym_PIPE_AMP] = ACTIONS(4883), [anon_sym_AMP_AMP] = ACTIONS(4883), [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_LT] = ACTIONS(5866), - [anon_sym_GT] = ACTIONS(5866), + [anon_sym_LT] = ACTIONS(5874), + [anon_sym_GT] = ACTIONS(5874), [anon_sym_GT_GT] = ACTIONS(4883), - [anon_sym_AMP_GT] = ACTIONS(5866), + [anon_sym_AMP_GT] = ACTIONS(5874), [anon_sym_AMP_GT_GT] = ACTIONS(4883), [anon_sym_LT_AMP] = ACTIONS(4883), [anon_sym_GT_AMP] = ACTIONS(4883), - [anon_sym_LT_LT] = ACTIONS(5866), + [anon_sym_LT_LT] = ACTIONS(5874), [anon_sym_LT_LT_DASH] = ACTIONS(4883), [anon_sym_LT_LT_LT] = ACTIONS(4883), [anon_sym_BQUOTE] = ACTIONS(4883), [sym_comment] = ACTIONS(56), }, - [3622] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7905), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [3623] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3981), + [anon_sym_RBRACE] = ACTIONS(7911), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3624] = { [sym_file_descriptor] = ACTIONS(4889), [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5870), + [anon_sym_PIPE] = ACTIONS(5878), [anon_sym_PIPE_AMP] = ACTIONS(4889), [anon_sym_AMP_AMP] = ACTIONS(4889), [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_LT] = ACTIONS(5870), - [anon_sym_GT] = ACTIONS(5870), + [anon_sym_LT] = ACTIONS(5878), + [anon_sym_GT] = ACTIONS(5878), [anon_sym_GT_GT] = ACTIONS(4889), - [anon_sym_AMP_GT] = ACTIONS(5870), + [anon_sym_AMP_GT] = ACTIONS(5878), [anon_sym_AMP_GT_GT] = ACTIONS(4889), [anon_sym_LT_AMP] = ACTIONS(4889), [anon_sym_GT_AMP] = ACTIONS(4889), - [anon_sym_LT_LT] = ACTIONS(5870), + [anon_sym_LT_LT] = ACTIONS(5878), [anon_sym_LT_LT_DASH] = ACTIONS(4889), [anon_sym_LT_LT_LT] = ACTIONS(4889), [anon_sym_BQUOTE] = ACTIONS(4889), [sym_comment] = ACTIONS(56), }, - [3624] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7907), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [3625] = { - [sym_file_descriptor] = ACTIONS(6025), - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6027), - [anon_sym_GT] = ACTIONS(6027), - [anon_sym_GT_GT] = ACTIONS(6027), - [anon_sym_AMP_GT] = ACTIONS(6027), - [anon_sym_AMP_GT_GT] = ACTIONS(6027), - [anon_sym_LT_AMP] = ACTIONS(6027), - [anon_sym_GT_AMP] = ACTIONS(6027), - [anon_sym_LT_LT] = ACTIONS(6027), - [anon_sym_LT_LT_DASH] = ACTIONS(6027), - [anon_sym_LT_LT_LT] = ACTIONS(6027), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3983), + [anon_sym_RBRACE] = ACTIONS(7913), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), + [sym_word] = ACTIONS(866), }, [3626] = { - [sym_file_descriptor] = ACTIONS(6029), - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6031), - [anon_sym_GT] = ACTIONS(6031), - [anon_sym_GT_GT] = ACTIONS(6031), - [anon_sym_AMP_GT] = ACTIONS(6031), - [anon_sym_AMP_GT_GT] = ACTIONS(6031), - [anon_sym_LT_AMP] = ACTIONS(6031), - [anon_sym_GT_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6031), - [anon_sym_LT_LT_DASH] = ACTIONS(6031), - [anon_sym_LT_LT_LT] = ACTIONS(6031), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), + [sym_file_descriptor] = ACTIONS(4895), + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(5882), + [anon_sym_PIPE_AMP] = ACTIONS(4895), + [anon_sym_AMP_AMP] = ACTIONS(4895), + [anon_sym_PIPE_PIPE] = ACTIONS(4895), + [anon_sym_LT] = ACTIONS(5882), + [anon_sym_GT] = ACTIONS(5882), + [anon_sym_GT_GT] = ACTIONS(4895), + [anon_sym_AMP_GT] = ACTIONS(5882), + [anon_sym_AMP_GT_GT] = ACTIONS(4895), + [anon_sym_LT_AMP] = ACTIONS(4895), + [anon_sym_GT_AMP] = ACTIONS(4895), + [anon_sym_LT_LT] = ACTIONS(5882), + [anon_sym_LT_LT_DASH] = ACTIONS(4895), + [anon_sym_LT_LT_LT] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(4895), + [sym_comment] = ACTIONS(56), }, [3627] = { - [sym_file_descriptor] = ACTIONS(6033), - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6035), - [anon_sym_GT] = ACTIONS(6035), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_AMP_GT] = ACTIONS(6035), - [anon_sym_AMP_GT_GT] = ACTIONS(6035), - [anon_sym_LT_AMP] = ACTIONS(6035), - [anon_sym_GT_AMP] = ACTIONS(6035), - [anon_sym_LT_LT] = ACTIONS(6035), - [anon_sym_LT_LT_DASH] = ACTIONS(6035), - [anon_sym_LT_LT_LT] = ACTIONS(6035), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7915), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), + [sym_word] = ACTIONS(866), }, [3628] = { - [sym_file_descriptor] = ACTIONS(6037), - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6039), - [anon_sym_GT] = ACTIONS(6039), - [anon_sym_GT_GT] = ACTIONS(6039), - [anon_sym_AMP_GT] = ACTIONS(6039), - [anon_sym_AMP_GT_GT] = ACTIONS(6039), - [anon_sym_LT_AMP] = ACTIONS(6039), - [anon_sym_GT_AMP] = ACTIONS(6039), - [anon_sym_LT_LT] = ACTIONS(6039), - [anon_sym_LT_LT_DASH] = ACTIONS(6039), - [anon_sym_LT_LT_LT] = ACTIONS(6039), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), + [sym_file_descriptor] = ACTIONS(4901), + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(5886), + [anon_sym_PIPE_AMP] = ACTIONS(4901), + [anon_sym_AMP_AMP] = ACTIONS(4901), + [anon_sym_PIPE_PIPE] = ACTIONS(4901), + [anon_sym_LT] = ACTIONS(5886), + [anon_sym_GT] = ACTIONS(5886), + [anon_sym_GT_GT] = ACTIONS(4901), + [anon_sym_AMP_GT] = ACTIONS(5886), + [anon_sym_AMP_GT_GT] = ACTIONS(4901), + [anon_sym_LT_AMP] = ACTIONS(4901), + [anon_sym_GT_AMP] = ACTIONS(4901), + [anon_sym_LT_LT] = ACTIONS(5886), + [anon_sym_LT_LT_DASH] = ACTIONS(4901), + [anon_sym_LT_LT_LT] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4901), + [sym_comment] = ACTIONS(56), }, [3629] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7909), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7917), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [3630] = { - [sym_file_descriptor] = ACTIONS(6043), - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_AMP_GT] = ACTIONS(6045), - [anon_sym_AMP_GT_GT] = ACTIONS(6045), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_AMP] = ACTIONS(6045), - [anon_sym_LT_LT] = ACTIONS(6045), - [anon_sym_LT_LT_DASH] = ACTIONS(6045), - [anon_sym_LT_LT_LT] = ACTIONS(6045), + [sym_file_descriptor] = ACTIONS(6041), + [sym__concat] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_GT_GT] = ACTIONS(6043), + [anon_sym_AMP_GT] = ACTIONS(6043), + [anon_sym_AMP_GT_GT] = ACTIONS(6043), + [anon_sym_LT_AMP] = ACTIONS(6043), + [anon_sym_GT_AMP] = ACTIONS(6043), + [anon_sym_LT_LT] = ACTIONS(6043), + [anon_sym_LT_LT_DASH] = ACTIONS(6043), + [anon_sym_LT_LT_LT] = ACTIONS(6043), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), }, [3631] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7911), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_GT_GT] = ACTIONS(6047), + [anon_sym_AMP_GT] = ACTIONS(6047), + [anon_sym_AMP_GT_GT] = ACTIONS(6047), + [anon_sym_LT_AMP] = ACTIONS(6047), + [anon_sym_GT_AMP] = ACTIONS(6047), + [anon_sym_LT_LT] = ACTIONS(6047), + [anon_sym_LT_LT_DASH] = ACTIONS(6047), + [anon_sym_LT_LT_LT] = ACTIONS(6047), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), }, [3632] = { [sym_file_descriptor] = ACTIONS(6049), @@ -91010,56 +90936,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(6051), }, [3633] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7913), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(6053), + [sym__concat] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [anon_sym_LT] = ACTIONS(6055), + [anon_sym_GT] = ACTIONS(6055), + [anon_sym_GT_GT] = ACTIONS(6055), + [anon_sym_AMP_GT] = ACTIONS(6055), + [anon_sym_AMP_GT_GT] = ACTIONS(6055), + [anon_sym_LT_AMP] = ACTIONS(6055), + [anon_sym_GT_AMP] = ACTIONS(6055), + [anon_sym_LT_LT] = ACTIONS(6055), + [anon_sym_LT_LT_DASH] = ACTIONS(6055), + [anon_sym_LT_LT_LT] = ACTIONS(6055), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), }, [3634] = { - [sym_file_descriptor] = ACTIONS(6055), - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_GT_GT] = ACTIONS(6057), - [anon_sym_AMP_GT] = ACTIONS(6057), - [anon_sym_AMP_GT_GT] = ACTIONS(6057), - [anon_sym_LT_AMP] = ACTIONS(6057), - [anon_sym_GT_AMP] = ACTIONS(6057), - [anon_sym_LT_LT] = ACTIONS(6057), - [anon_sym_LT_LT_DASH] = ACTIONS(6057), - [anon_sym_LT_LT_LT] = ACTIONS(6057), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7919), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), + [sym_word] = ACTIONS(866), }, [3635] = { [sym_file_descriptor] = ACTIONS(6059), @@ -91085,398 +91011,422 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(6061), }, [3636] = { - [sym__heredoc_middle] = ACTIONS(4790), - [sym__heredoc_end] = ACTIONS(4790), - [anon_sym_DOLLAR] = ACTIONS(5844), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7921), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3637] = { - [sym__heredoc_middle] = ACTIONS(4796), - [sym__heredoc_end] = ACTIONS(4796), - [anon_sym_DOLLAR] = ACTIONS(5846), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(6065), + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [anon_sym_LT] = ACTIONS(6067), + [anon_sym_GT] = ACTIONS(6067), + [anon_sym_GT_GT] = ACTIONS(6067), + [anon_sym_AMP_GT] = ACTIONS(6067), + [anon_sym_AMP_GT_GT] = ACTIONS(6067), + [anon_sym_LT_AMP] = ACTIONS(6067), + [anon_sym_GT_AMP] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_LT_LT_DASH] = ACTIONS(6067), + [anon_sym_LT_LT_LT] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), }, [3638] = { - [sym__heredoc_middle] = ACTIONS(4859), - [sym__heredoc_end] = ACTIONS(4859), - [anon_sym_DOLLAR] = ACTIONS(5848), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4859), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7923), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3639] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7915), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(6071), + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_GT_GT] = ACTIONS(6073), + [anon_sym_AMP_GT] = ACTIONS(6073), + [anon_sym_AMP_GT_GT] = ACTIONS(6073), + [anon_sym_LT_AMP] = ACTIONS(6073), + [anon_sym_GT_AMP] = ACTIONS(6073), + [anon_sym_LT_LT] = ACTIONS(6073), + [anon_sym_LT_LT_DASH] = ACTIONS(6073), + [anon_sym_LT_LT_LT] = ACTIONS(6073), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), }, [3640] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7917), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(6075), + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_AMP_GT] = ACTIONS(6077), + [anon_sym_AMP_GT_GT] = ACTIONS(6077), + [anon_sym_LT_AMP] = ACTIONS(6077), + [anon_sym_GT_AMP] = ACTIONS(6077), + [anon_sym_LT_LT] = ACTIONS(6077), + [anon_sym_LT_LT_DASH] = ACTIONS(6077), + [anon_sym_LT_LT_LT] = ACTIONS(6077), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), }, [3641] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(7919), + [sym__heredoc_middle] = ACTIONS(4802), + [sym__heredoc_end] = ACTIONS(4802), + [anon_sym_DOLLAR] = ACTIONS(5860), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4802), [sym_comment] = ACTIONS(56), }, [3642] = { - [anon_sym_RBRACE] = ACTIONS(7919), + [sym__heredoc_middle] = ACTIONS(4808), + [sym__heredoc_end] = ACTIONS(4808), + [anon_sym_DOLLAR] = ACTIONS(5862), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4808), [sym_comment] = ACTIONS(56), }, [3643] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3989), - [anon_sym_RBRACE] = ACTIONS(7921), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3644] = { [sym__heredoc_middle] = ACTIONS(4871), [sym__heredoc_end] = ACTIONS(4871), - [anon_sym_DOLLAR] = ACTIONS(5858), + [anon_sym_DOLLAR] = ACTIONS(5864), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4871), [sym_comment] = ACTIONS(56), }, - [3645] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3991), - [anon_sym_RBRACE] = ACTIONS(7923), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [3644] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7925), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), + }, + [3645] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7927), + [sym_comment] = ACTIONS(56), }, [3646] = { - [sym__heredoc_middle] = ACTIONS(4877), - [sym__heredoc_end] = ACTIONS(4877), - [anon_sym_DOLLAR] = ACTIONS(5862), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4877), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(7929), [sym_comment] = ACTIONS(56), }, [3647] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(3993), - [anon_sym_RBRACE] = ACTIONS(7925), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_RBRACE] = ACTIONS(7929), + [sym_comment] = ACTIONS(56), }, [3648] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3993), + [anon_sym_RBRACE] = ACTIONS(7931), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3649] = { [sym__heredoc_middle] = ACTIONS(4883), [sym__heredoc_end] = ACTIONS(4883), - [anon_sym_DOLLAR] = ACTIONS(5866), + [anon_sym_DOLLAR] = ACTIONS(5874), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4883), [sym_comment] = ACTIONS(56), }, - [3649] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7927), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [3650] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3995), + [anon_sym_RBRACE] = ACTIONS(7933), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3651] = { [sym__heredoc_middle] = ACTIONS(4889), [sym__heredoc_end] = ACTIONS(4889), - [anon_sym_DOLLAR] = ACTIONS(5870), + [anon_sym_DOLLAR] = ACTIONS(5878), [anon_sym_DOLLAR_LBRACE] = ACTIONS(4889), [sym_comment] = ACTIONS(56), }, - [3651] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7929), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, [3652] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_RBRACK] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(3997), + [anon_sym_RBRACE] = ACTIONS(7935), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3653] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_RBRACK] = ACTIONS(7022), + [sym__heredoc_middle] = ACTIONS(4895), + [sym__heredoc_end] = ACTIONS(4895), + [anon_sym_DOLLAR] = ACTIONS(5882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4895), [sym_comment] = ACTIONS(56), }, [3654] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_RBRACK] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7937), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3655] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_RPAREN] = ACTIONS(6025), - [sym__special_characters] = ACTIONS(6916), - [anon_sym_DQUOTE] = ACTIONS(6025), - [anon_sym_DOLLAR] = ACTIONS(6916), - [sym_raw_string] = ACTIONS(6025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), - [anon_sym_BQUOTE] = ACTIONS(6025), - [anon_sym_LT_LPAREN] = ACTIONS(6025), - [anon_sym_GT_LPAREN] = ACTIONS(6025), + [sym__heredoc_middle] = ACTIONS(4901), + [sym__heredoc_end] = ACTIONS(4901), + [anon_sym_DOLLAR] = ACTIONS(5886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4901), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6916), }, [3656] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_RPAREN] = ACTIONS(6029), - [sym__special_characters] = ACTIONS(6918), - [anon_sym_DQUOTE] = ACTIONS(6029), - [anon_sym_DOLLAR] = ACTIONS(6918), - [sym_raw_string] = ACTIONS(6029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), - [anon_sym_BQUOTE] = ACTIONS(6029), - [anon_sym_LT_LPAREN] = ACTIONS(6029), - [anon_sym_GT_LPAREN] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6918), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7939), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3657] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_RPAREN] = ACTIONS(6033), - [sym__special_characters] = ACTIONS(6920), - [anon_sym_DQUOTE] = ACTIONS(6033), - [anon_sym_DOLLAR] = ACTIONS(6920), - [sym_raw_string] = ACTIONS(6033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), - [anon_sym_BQUOTE] = ACTIONS(6033), - [anon_sym_LT_LPAREN] = ACTIONS(6033), - [anon_sym_GT_LPAREN] = ACTIONS(6033), + [sym__concat] = ACTIONS(7032), + [anon_sym_RBRACK] = ACTIONS(7032), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6920), }, [3658] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_RPAREN] = ACTIONS(6037), - [sym__special_characters] = ACTIONS(6922), - [anon_sym_DQUOTE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(6922), - [sym_raw_string] = ACTIONS(6037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), - [anon_sym_BQUOTE] = ACTIONS(6037), - [anon_sym_LT_LPAREN] = ACTIONS(6037), - [anon_sym_GT_LPAREN] = ACTIONS(6037), + [sym__concat] = ACTIONS(7036), + [anon_sym_RBRACK] = ACTIONS(7036), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6922), }, [3659] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7931), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(7040), + [anon_sym_RBRACK] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), }, [3660] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6926), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6926), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), + [sym__concat] = ACTIONS(6041), + [anon_sym_RPAREN] = ACTIONS(6041), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), + [anon_sym_BQUOTE] = ACTIONS(6041), + [anon_sym_LT_LPAREN] = ACTIONS(6041), + [anon_sym_GT_LPAREN] = ACTIONS(6041), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6926), + [sym_word] = ACTIONS(6930), }, [3661] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7933), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6045), + [anon_sym_RPAREN] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6932), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6932), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6932), }, [3662] = { [sym__concat] = ACTIONS(6049), [anon_sym_RPAREN] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6930), + [sym__special_characters] = ACTIONS(6934), [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6930), + [anon_sym_DOLLAR] = ACTIONS(6934), [sym_raw_string] = ACTIONS(6049), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), @@ -91484,58 +91434,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(6049), [anon_sym_GT_LPAREN] = ACTIONS(6049), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6930), + [sym_word] = ACTIONS(6934), }, [3663] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7935), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6053), + [anon_sym_RPAREN] = ACTIONS(6053), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), + [anon_sym_BQUOTE] = ACTIONS(6053), + [anon_sym_LT_LPAREN] = ACTIONS(6053), + [anon_sym_GT_LPAREN] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6936), }, [3664] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6934), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7941), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [3665] = { [sym__concat] = ACTIONS(6059), [anon_sym_RPAREN] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6936), + [sym__special_characters] = ACTIONS(6940), [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6936), + [anon_sym_DOLLAR] = ACTIONS(6940), [sym_raw_string] = ACTIONS(6059), [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), @@ -91543,248 +91493,239 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_LPAREN] = ACTIONS(6059), [anon_sym_GT_LPAREN] = ACTIONS(6059), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6936), + [sym_word] = ACTIONS(6940), }, [3666] = { - [sym_file_descriptor] = ACTIONS(7018), - [sym__concat] = ACTIONS(7018), - [sym_variable_name] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_GT] = ACTIONS(7020), - [anon_sym_AMP_GT] = ACTIONS(7020), - [anon_sym_AMP_GT_GT] = ACTIONS(7020), - [anon_sym_LT_AMP] = ACTIONS(7020), - [anon_sym_GT_AMP] = ACTIONS(7020), - [sym__special_characters] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7020), - [anon_sym_DOLLAR] = ACTIONS(7020), - [sym_raw_string] = ACTIONS(7020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), - [anon_sym_BQUOTE] = ACTIONS(7020), - [anon_sym_LT_LPAREN] = ACTIONS(7020), - [anon_sym_GT_LPAREN] = ACTIONS(7020), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7943), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7020), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), + [sym_word] = ACTIONS(866), }, [3667] = { - [sym_file_descriptor] = ACTIONS(7022), - [sym__concat] = ACTIONS(7022), - [sym_variable_name] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), - [anon_sym_LT] = ACTIONS(7024), - [anon_sym_GT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_AMP_GT] = ACTIONS(7024), - [anon_sym_AMP_GT_GT] = ACTIONS(7024), - [anon_sym_LT_AMP] = ACTIONS(7024), - [anon_sym_GT_AMP] = ACTIONS(7024), - [sym__special_characters] = ACTIONS(7024), - [anon_sym_DQUOTE] = ACTIONS(7024), - [anon_sym_DOLLAR] = ACTIONS(7024), - [sym_raw_string] = ACTIONS(7024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), - [anon_sym_BQUOTE] = ACTIONS(7024), - [anon_sym_LT_LPAREN] = ACTIONS(7024), - [anon_sym_GT_LPAREN] = ACTIONS(7024), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), + [sym__concat] = ACTIONS(6065), + [anon_sym_RPAREN] = ACTIONS(6065), + [sym__special_characters] = ACTIONS(6944), + [anon_sym_DQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR] = ACTIONS(6944), + [sym_raw_string] = ACTIONS(6065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), + [anon_sym_BQUOTE] = ACTIONS(6065), + [anon_sym_LT_LPAREN] = ACTIONS(6065), + [anon_sym_GT_LPAREN] = ACTIONS(6065), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6944), }, [3668] = { - [sym_file_descriptor] = ACTIONS(7026), - [sym__concat] = ACTIONS(7026), - [sym_variable_name] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), - [anon_sym_LT] = ACTIONS(7028), - [anon_sym_GT] = ACTIONS(7028), - [anon_sym_GT_GT] = ACTIONS(7028), - [anon_sym_AMP_GT] = ACTIONS(7028), - [anon_sym_AMP_GT_GT] = ACTIONS(7028), - [anon_sym_LT_AMP] = ACTIONS(7028), - [anon_sym_GT_AMP] = ACTIONS(7028), - [sym__special_characters] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7028), - [anon_sym_DOLLAR] = ACTIONS(7028), - [sym_raw_string] = ACTIONS(7028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), - [anon_sym_BQUOTE] = ACTIONS(7028), - [anon_sym_LT_LPAREN] = ACTIONS(7028), - [anon_sym_GT_LPAREN] = ACTIONS(7028), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7945), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7028), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), + [sym_word] = ACTIONS(866), }, [3669] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [sym__special_characters] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6027), - [sym_raw_string] = ACTIONS(6027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), - [anon_sym_BQUOTE] = ACTIONS(6027), - [anon_sym_LT_LPAREN] = ACTIONS(6027), - [anon_sym_GT_LPAREN] = ACTIONS(6027), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6027), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), + [sym__concat] = ACTIONS(6071), + [anon_sym_RPAREN] = ACTIONS(6071), + [sym__special_characters] = ACTIONS(6948), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6948), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6948), }, [3670] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [sym__special_characters] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6031), - [sym_raw_string] = ACTIONS(6031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), - [anon_sym_BQUOTE] = ACTIONS(6031), - [anon_sym_LT_LPAREN] = ACTIONS(6031), - [anon_sym_GT_LPAREN] = ACTIONS(6031), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6031), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), + [sym__concat] = ACTIONS(6075), + [anon_sym_RPAREN] = ACTIONS(6075), + [sym__special_characters] = ACTIONS(6950), + [anon_sym_DQUOTE] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6950), + [sym_raw_string] = ACTIONS(6075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), + [anon_sym_BQUOTE] = ACTIONS(6075), + [anon_sym_LT_LPAREN] = ACTIONS(6075), + [anon_sym_GT_LPAREN] = ACTIONS(6075), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6950), }, [3671] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [sym__special_characters] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6035), - [sym_raw_string] = ACTIONS(6035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), - [anon_sym_BQUOTE] = ACTIONS(6035), - [anon_sym_LT_LPAREN] = ACTIONS(6035), - [anon_sym_GT_LPAREN] = ACTIONS(6035), + [sym_file_descriptor] = ACTIONS(7032), + [sym__concat] = ACTIONS(7032), + [sym_variable_name] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [anon_sym_LT] = ACTIONS(7034), + [anon_sym_GT] = ACTIONS(7034), + [anon_sym_GT_GT] = ACTIONS(7034), + [anon_sym_AMP_GT] = ACTIONS(7034), + [anon_sym_AMP_GT_GT] = ACTIONS(7034), + [anon_sym_LT_AMP] = ACTIONS(7034), + [anon_sym_GT_AMP] = ACTIONS(7034), + [sym__special_characters] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [anon_sym_DOLLAR] = ACTIONS(7034), + [sym_raw_string] = ACTIONS(7034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), + [anon_sym_BQUOTE] = ACTIONS(7034), + [anon_sym_LT_LPAREN] = ACTIONS(7034), + [anon_sym_GT_LPAREN] = ACTIONS(7034), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6035), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), + [sym_word] = ACTIONS(7034), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), }, [3672] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [sym__special_characters] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6039), - [sym_raw_string] = ACTIONS(6039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), - [anon_sym_BQUOTE] = ACTIONS(6039), - [anon_sym_LT_LPAREN] = ACTIONS(6039), - [anon_sym_GT_LPAREN] = ACTIONS(6039), + [sym_file_descriptor] = ACTIONS(7036), + [sym__concat] = ACTIONS(7036), + [sym_variable_name] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [anon_sym_LT] = ACTIONS(7038), + [anon_sym_GT] = ACTIONS(7038), + [anon_sym_GT_GT] = ACTIONS(7038), + [anon_sym_AMP_GT] = ACTIONS(7038), + [anon_sym_AMP_GT_GT] = ACTIONS(7038), + [anon_sym_LT_AMP] = ACTIONS(7038), + [anon_sym_GT_AMP] = ACTIONS(7038), + [sym__special_characters] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7038), + [anon_sym_DOLLAR] = ACTIONS(7038), + [sym_raw_string] = ACTIONS(7038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), + [anon_sym_BQUOTE] = ACTIONS(7038), + [anon_sym_LT_LPAREN] = ACTIONS(7038), + [anon_sym_GT_LPAREN] = ACTIONS(7038), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6039), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), + [sym_word] = ACTIONS(7038), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), }, [3673] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7937), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(7040), + [sym__concat] = ACTIONS(7040), + [sym_variable_name] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [anon_sym_LT] = ACTIONS(7042), + [anon_sym_GT] = ACTIONS(7042), + [anon_sym_GT_GT] = ACTIONS(7042), + [anon_sym_AMP_GT] = ACTIONS(7042), + [anon_sym_AMP_GT_GT] = ACTIONS(7042), + [anon_sym_LT_AMP] = ACTIONS(7042), + [anon_sym_GT_AMP] = ACTIONS(7042), + [sym__special_characters] = ACTIONS(7042), + [anon_sym_DQUOTE] = ACTIONS(7042), + [anon_sym_DOLLAR] = ACTIONS(7042), + [sym_raw_string] = ACTIONS(7042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), + [anon_sym_BQUOTE] = ACTIONS(7042), + [anon_sym_LT_LPAREN] = ACTIONS(7042), + [anon_sym_GT_LPAREN] = ACTIONS(7042), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(7042), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), }, [3674] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6045), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym__concat] = ACTIONS(6041), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6043), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6043), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6045), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), + [sym_word] = ACTIONS(6043), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), }, [3675] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7939), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(6045), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [sym__special_characters] = ACTIONS(6047), + [anon_sym_DQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR] = ACTIONS(6047), + [sym_raw_string] = ACTIONS(6047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), + [anon_sym_BQUOTE] = ACTIONS(6047), + [anon_sym_LT_LPAREN] = ACTIONS(6047), + [anon_sym_GT_LPAREN] = ACTIONS(6047), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(6047), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), }, [3676] = { [sym__concat] = ACTIONS(6049), @@ -91805,51 +91746,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(6051), }, [3677] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(7941), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(6053), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6055), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(6055), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), }, [3678] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [sym__special_characters] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(6057), - [anon_sym_DOLLAR] = ACTIONS(6057), - [sym_raw_string] = ACTIONS(6057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), - [anon_sym_BQUOTE] = ACTIONS(6057), - [anon_sym_LT_LPAREN] = ACTIONS(6057), - [anon_sym_GT_LPAREN] = ACTIONS(6057), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7947), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6057), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), + [sym_word] = ACTIONS(866), }, [3679] = { [sym__concat] = ACTIONS(6059), @@ -91870,97 +91811,209 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(6061), }, [3680] = { - [sym_file_descriptor] = ACTIONS(1277), - [sym_variable_name] = ACTIONS(1277), - [anon_sym_esac] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_SEMI_SEMI] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1279), - [anon_sym_GT] = ACTIONS(1279), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_AMP_GT] = ACTIONS(1279), - [anon_sym_AMP_GT_GT] = ACTIONS(1279), - [anon_sym_LT_AMP] = ACTIONS(1279), - [anon_sym_GT_AMP] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1279), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7949), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_LF] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), + [sym_word] = ACTIONS(866), }, [3681] = { - [sym_concatenation] = STATE(660), - [sym_string] = STATE(655), - [sym_simple_expansion] = STATE(655), - [sym_string_expansion] = STATE(655), - [sym_expansion] = STATE(655), - [sym_command_substitution] = STATE(655), - [sym_process_substitution] = STATE(655), - [aux_sym_for_statement_repeat1] = STATE(4003), - [anon_sym_RPAREN] = ACTIONS(7943), - [sym__special_characters] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1287), - [sym_raw_string] = ACTIONS(1289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LT_LPAREN] = ACTIONS(1297), - [anon_sym_GT_LPAREN] = ACTIONS(1297), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1299), + [sym__concat] = ACTIONS(6065), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [sym__special_characters] = ACTIONS(6067), + [anon_sym_DQUOTE] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6067), + [sym_raw_string] = ACTIONS(6067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), + [anon_sym_BQUOTE] = ACTIONS(6067), + [anon_sym_LT_LPAREN] = ACTIONS(6067), + [anon_sym_GT_LPAREN] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6067), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), }, [3682] = { - [aux_sym_concatenation_repeat1] = STATE(4005), - [sym_file_descriptor] = ACTIONS(1301), - [sym__concat] = ACTIONS(7945), - [sym_variable_name] = ACTIONS(1301), - [anon_sym_esac] = ACTIONS(1305), - [anon_sym_PIPE] = ACTIONS(1305), - [anon_sym_SEMI_SEMI] = ACTIONS(1305), - [anon_sym_PIPE_AMP] = ACTIONS(1305), - [anon_sym_AMP_AMP] = ACTIONS(1305), - [anon_sym_PIPE_PIPE] = ACTIONS(1305), - [anon_sym_LT] = ACTIONS(1305), - [anon_sym_GT] = ACTIONS(1305), - [anon_sym_GT_GT] = ACTIONS(1305), - [anon_sym_AMP_GT] = ACTIONS(1305), - [anon_sym_AMP_GT_GT] = ACTIONS(1305), - [anon_sym_LT_AMP] = ACTIONS(1305), - [anon_sym_GT_AMP] = ACTIONS(1305), - [sym__special_characters] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1305), - [sym_raw_string] = ACTIONS(1305), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1305), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1305), - [anon_sym_BQUOTE] = ACTIONS(1305), - [anon_sym_LT_LPAREN] = ACTIONS(1305), - [anon_sym_GT_LPAREN] = ACTIONS(1305), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(7951), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym_LF] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1305), + [sym_word] = ACTIONS(866), }, [3683] = { + [sym__concat] = ACTIONS(6071), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [sym__special_characters] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR] = ACTIONS(6073), + [sym_raw_string] = ACTIONS(6073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), + [anon_sym_BQUOTE] = ACTIONS(6073), + [anon_sym_LT_LPAREN] = ACTIONS(6073), + [anon_sym_GT_LPAREN] = ACTIONS(6073), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6073), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), + }, + [3684] = { + [sym__concat] = ACTIONS(6075), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), + [anon_sym_BQUOTE] = ACTIONS(6077), + [anon_sym_LT_LPAREN] = ACTIONS(6077), + [anon_sym_GT_LPAREN] = ACTIONS(6077), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6077), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), + }, + [3685] = { + [sym_file_descriptor] = ACTIONS(1279), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_esac] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_SEMI_SEMI] = ACTIONS(1281), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1281), + [anon_sym_GT] = ACTIONS(1281), + [anon_sym_GT_GT] = ACTIONS(1281), + [anon_sym_AMP_GT] = ACTIONS(1281), + [anon_sym_AMP_GT_GT] = ACTIONS(1281), + [anon_sym_LT_AMP] = ACTIONS(1281), + [anon_sym_GT_AMP] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + }, + [3686] = { + [sym_concatenation] = STATE(661), + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [aux_sym_for_statement_repeat1] = STATE(4007), + [anon_sym_RPAREN] = ACTIONS(7953), + [sym__special_characters] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1289), + [sym_raw_string] = ACTIONS(1291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), + [anon_sym_BQUOTE] = ACTIONS(1297), + [anon_sym_LT_LPAREN] = ACTIONS(1299), + [anon_sym_GT_LPAREN] = ACTIONS(1299), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1301), + }, + [3687] = { + [aux_sym_concatenation_repeat1] = STATE(4009), + [sym_file_descriptor] = ACTIONS(1303), + [sym__concat] = ACTIONS(7955), + [sym_variable_name] = ACTIONS(1303), + [anon_sym_esac] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_SEMI_SEMI] = ACTIONS(1307), + [anon_sym_PIPE_AMP] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1307), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [anon_sym_LT] = ACTIONS(1307), + [anon_sym_GT] = ACTIONS(1307), + [anon_sym_GT_GT] = ACTIONS(1307), + [anon_sym_AMP_GT] = ACTIONS(1307), + [anon_sym_AMP_GT_GT] = ACTIONS(1307), + [anon_sym_LT_AMP] = ACTIONS(1307), + [anon_sym_GT_AMP] = ACTIONS(1307), + [sym__special_characters] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [sym_raw_string] = ACTIONS(1307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1307), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1307), + [anon_sym_BQUOTE] = ACTIONS(1307), + [anon_sym_LT_LPAREN] = ACTIONS(1307), + [anon_sym_GT_LPAREN] = ACTIONS(1307), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_LF] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), + }, + [3688] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(4007), - [anon_sym_DQUOTE] = ACTIONS(7947), + [aux_sym_string_repeat1] = STATE(4011), + [anon_sym_DQUOTE] = ACTIONS(7957), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -91968,59 +92021,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [3684] = { - [sym_string] = STATE(4009), - [anon_sym_DQUOTE] = ACTIONS(7402), - [anon_sym_DOLLAR] = ACTIONS(7949), - [sym_raw_string] = ACTIONS(7951), - [anon_sym_POUND] = ACTIONS(7949), - [anon_sym_DASH] = ACTIONS(7949), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7953), - [anon_sym_STAR] = ACTIONS(7949), - [anon_sym_AT] = ACTIONS(7949), - [anon_sym_QMARK] = ACTIONS(7949), - [anon_sym_0] = ACTIONS(7955), - [anon_sym__] = ACTIONS(7955), - }, - [3685] = { - [aux_sym_concatenation_repeat1] = STATE(4005), - [sym_file_descriptor] = ACTIONS(1277), - [sym__concat] = ACTIONS(7945), - [sym_variable_name] = ACTIONS(1277), - [anon_sym_esac] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_SEMI_SEMI] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [anon_sym_LT] = ACTIONS(1279), - [anon_sym_GT] = ACTIONS(1279), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_AMP_GT] = ACTIONS(1279), - [anon_sym_AMP_GT_GT] = ACTIONS(1279), - [anon_sym_LT_AMP] = ACTIONS(1279), - [anon_sym_GT_AMP] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1279), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_LF] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - }, - [3686] = { - [sym_subscript] = STATE(4015), - [sym_variable_name] = ACTIONS(7957), + [3689] = { + [sym_string] = STATE(4013), + [anon_sym_DQUOTE] = ACTIONS(7414), [anon_sym_DOLLAR] = ACTIONS(7959), - [anon_sym_POUND] = ACTIONS(7961), + [sym_raw_string] = ACTIONS(7961), + [anon_sym_POUND] = ACTIONS(7959), [anon_sym_DASH] = ACTIONS(7959), [sym_comment] = ACTIONS(182), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7963), @@ -92030,129 +92036,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(7965), [anon_sym__] = ACTIONS(7965), }, - [3687] = { - [sym_for_statement] = STATE(4016), - [sym_while_statement] = STATE(4016), - [sym_if_statement] = STATE(4016), - [sym_case_statement] = STATE(4016), - [sym_function_definition] = STATE(4016), - [sym_subshell] = STATE(4016), - [sym_pipeline] = STATE(4016), - [sym_list] = STATE(4016), - [sym_command] = STATE(4016), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(4016), - [sym_variable_assignment] = STATE(4017), - [sym_declaration_command] = STATE(4016), - [sym_unset_command] = STATE(4016), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), + [3690] = { + [aux_sym_concatenation_repeat1] = STATE(4009), + [sym_file_descriptor] = ACTIONS(1279), + [sym__concat] = ACTIONS(7955), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_esac] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_SEMI_SEMI] = ACTIONS(1281), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1281), + [anon_sym_GT] = ACTIONS(1281), + [anon_sym_GT_GT] = ACTIONS(1281), + [anon_sym_AMP_GT] = ACTIONS(1281), + [anon_sym_AMP_GT_GT] = ACTIONS(1281), + [anon_sym_LT_AMP] = ACTIONS(1281), + [anon_sym_GT_AMP] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), }, - [3688] = { - [sym_for_statement] = STATE(4018), - [sym_while_statement] = STATE(4018), - [sym_if_statement] = STATE(4018), - [sym_case_statement] = STATE(4018), - [sym_function_definition] = STATE(4018), - [sym_subshell] = STATE(4018), - [sym_pipeline] = STATE(4018), - [sym_list] = STATE(4018), - [sym_command] = STATE(4018), - [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(4018), - [sym_variable_assignment] = STATE(4019), - [sym_declaration_command] = STATE(4018), - [sym_unset_command] = STATE(4018), - [sym_subscript] = STATE(192), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(183), - [sym_simple_expansion] = STATE(183), - [sym_string_expansion] = STATE(183), - [sym_expansion] = STATE(183), - [sym_command_substitution] = STATE(183), - [sym_process_substitution] = STATE(183), - [aux_sym_command_repeat1] = STATE(193), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(304), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(306), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(308), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(310), - [anon_sym_LBRACK_LBRACK] = ACTIONS(312), - [anon_sym_declare] = ACTIONS(314), - [anon_sym_typeset] = ACTIONS(314), - [anon_sym_export] = ACTIONS(314), - [anon_sym_readonly] = ACTIONS(314), - [anon_sym_local] = ACTIONS(314), - [anon_sym_unset] = ACTIONS(316), - [anon_sym_unsetenv] = ACTIONS(316), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(318), - [anon_sym_DQUOTE] = ACTIONS(320), - [anon_sym_DOLLAR] = ACTIONS(322), - [sym_raw_string] = ACTIONS(324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), - [anon_sym_BQUOTE] = ACTIONS(330), - [anon_sym_LT_LPAREN] = ACTIONS(332), - [anon_sym_GT_LPAREN] = ACTIONS(332), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(334), + [3691] = { + [sym_subscript] = STATE(4019), + [sym_variable_name] = ACTIONS(7967), + [anon_sym_DOLLAR] = ACTIONS(7969), + [anon_sym_POUND] = ACTIONS(7971), + [anon_sym_DASH] = ACTIONS(7969), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7973), + [anon_sym_STAR] = ACTIONS(7969), + [anon_sym_AT] = ACTIONS(7969), + [anon_sym_QMARK] = ACTIONS(7969), + [anon_sym_0] = ACTIONS(7975), + [anon_sym__] = ACTIONS(7975), }, - [3689] = { + [3692] = { [sym_for_statement] = STATE(4020), [sym_while_statement] = STATE(4020), [sym_if_statement] = STATE(4020), @@ -92213,1812 +92144,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [3690] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(4022), - [sym_file_descriptor] = ACTIONS(6663), - [anon_sym_esac] = ACTIONS(1347), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_SEMI_SEMI] = ACTIONS(1347), - [anon_sym_PIPE_AMP] = ACTIONS(1347), - [anon_sym_AMP_AMP] = ACTIONS(1347), - [anon_sym_PIPE_PIPE] = ACTIONS(1347), - [anon_sym_LT] = ACTIONS(6667), - [anon_sym_GT] = ACTIONS(6667), - [anon_sym_GT_GT] = ACTIONS(6667), - [anon_sym_AMP_GT] = ACTIONS(6667), - [anon_sym_AMP_GT_GT] = ACTIONS(6667), - [anon_sym_LT_AMP] = ACTIONS(6667), - [anon_sym_GT_AMP] = ACTIONS(6667), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6669), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1347), - [anon_sym_LF] = ACTIONS(1347), - [anon_sym_AMP] = ACTIONS(1347), - }, - [3691] = { - [anon_sym_RPAREN] = ACTIONS(7967), - [sym_comment] = ACTIONS(56), - }, - [3692] = { - [sym_file_redirect] = STATE(737), - [sym_file_descriptor] = ACTIONS(7969), - [anon_sym_esac] = ACTIONS(1401), - [anon_sym_PIPE] = ACTIONS(1401), - [anon_sym_SEMI_SEMI] = ACTIONS(1401), - [anon_sym_PIPE_AMP] = ACTIONS(1401), - [anon_sym_AMP_AMP] = ACTIONS(1401), - [anon_sym_PIPE_PIPE] = ACTIONS(1401), - [anon_sym_LT] = ACTIONS(7971), - [anon_sym_GT] = ACTIONS(7971), - [anon_sym_GT_GT] = ACTIONS(7971), - [anon_sym_AMP_GT] = ACTIONS(7971), - [anon_sym_AMP_GT_GT] = ACTIONS(7971), - [anon_sym_LT_AMP] = ACTIONS(7971), - [anon_sym_GT_AMP] = ACTIONS(7971), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1401), - [anon_sym_LF] = ACTIONS(1401), - [anon_sym_AMP] = ACTIONS(1401), - }, [3693] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(4026), - [sym_file_descriptor] = ACTIONS(6663), - [anon_sym_esac] = ACTIONS(1605), - [anon_sym_PIPE] = ACTIONS(1605), - [anon_sym_SEMI_SEMI] = ACTIONS(1605), - [anon_sym_PIPE_AMP] = ACTIONS(1605), - [anon_sym_AMP_AMP] = ACTIONS(1605), - [anon_sym_PIPE_PIPE] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(6667), - [anon_sym_GT] = ACTIONS(6667), - [anon_sym_GT_GT] = ACTIONS(6667), - [anon_sym_AMP_GT] = ACTIONS(6667), - [anon_sym_AMP_GT_GT] = ACTIONS(6667), - [anon_sym_LT_AMP] = ACTIONS(6667), - [anon_sym_GT_AMP] = ACTIONS(6667), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6669), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1605), - [anon_sym_LF] = ACTIONS(1605), - [anon_sym_AMP] = ACTIONS(1605), - }, - [3694] = { - [sym_concatenation] = STATE(4027), - [sym_string] = STATE(4030), - [sym_array] = STATE(4027), - [sym_simple_expansion] = STATE(4030), - [sym_string_expansion] = STATE(4030), - [sym_expansion] = STATE(4030), - [sym_command_substitution] = STATE(4030), - [sym_process_substitution] = STATE(4030), - [sym__empty_value] = ACTIONS(7973), - [anon_sym_LPAREN] = ACTIONS(7975), - [sym__special_characters] = ACTIONS(7977), - [anon_sym_DQUOTE] = ACTIONS(7428), - [anon_sym_DOLLAR] = ACTIONS(7979), - [sym_raw_string] = ACTIONS(7981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7983), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7985), - [anon_sym_BQUOTE] = ACTIONS(7987), - [anon_sym_LT_LPAREN] = ACTIONS(7989), - [anon_sym_GT_LPAREN] = ACTIONS(7989), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7991), - }, - [3695] = { - [sym_variable_name] = ACTIONS(440), - [anon_sym_esac] = ACTIONS(442), - [anon_sym_PIPE] = ACTIONS(442), - [anon_sym_SEMI_SEMI] = ACTIONS(442), - [anon_sym_PIPE_AMP] = ACTIONS(442), - [anon_sym_AMP_AMP] = ACTIONS(442), - [anon_sym_PIPE_PIPE] = ACTIONS(442), - [sym__special_characters] = ACTIONS(442), - [anon_sym_DQUOTE] = ACTIONS(442), - [anon_sym_DOLLAR] = ACTIONS(442), - [sym_raw_string] = ACTIONS(442), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(442), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(442), - [anon_sym_BQUOTE] = ACTIONS(442), - [anon_sym_LT_LPAREN] = ACTIONS(442), - [anon_sym_GT_LPAREN] = ACTIONS(442), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(442), - [sym_word] = ACTIONS(442), - [anon_sym_SEMI] = ACTIONS(442), - [anon_sym_LF] = ACTIONS(442), - [anon_sym_AMP] = ACTIONS(442), - }, - [3696] = { - [sym_string] = STATE(4031), - [sym_simple_expansion] = STATE(4031), - [sym_string_expansion] = STATE(4031), - [sym_expansion] = STATE(4031), - [sym_command_substitution] = STATE(4031), - [sym_process_substitution] = STATE(4031), - [sym__special_characters] = ACTIONS(7993), - [anon_sym_DQUOTE] = ACTIONS(7428), - [anon_sym_DOLLAR] = ACTIONS(7979), - [sym_raw_string] = ACTIONS(7995), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7983), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7985), - [anon_sym_BQUOTE] = ACTIONS(7987), - [anon_sym_LT_LPAREN] = ACTIONS(7989), - [anon_sym_GT_LPAREN] = ACTIONS(7989), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7993), - }, - [3697] = { - [aux_sym_concatenation_repeat1] = STATE(4032), - [sym__concat] = ACTIONS(7424), - [sym_variable_name] = ACTIONS(788), - [anon_sym_esac] = ACTIONS(790), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [sym__special_characters] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(790), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(790), - [sym_word] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), - }, - [3698] = { - [sym__concat] = ACTIONS(792), - [sym_variable_name] = ACTIONS(792), - [anon_sym_esac] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [sym__special_characters] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(794), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(794), - [sym_word] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), - }, - [3699] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(7997), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [3700] = { - [sym__concat] = ACTIONS(824), - [sym_variable_name] = ACTIONS(824), - [anon_sym_esac] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [sym__special_characters] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(826), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(826), - [sym_word] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), - }, - [3701] = { - [sym__concat] = ACTIONS(828), - [sym_variable_name] = ACTIONS(828), - [anon_sym_esac] = ACTIONS(830), - [anon_sym_PIPE] = 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__special_characters] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(830), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(830), - [sym_word] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), - }, - [3702] = { - [sym__concat] = ACTIONS(832), - [sym_variable_name] = ACTIONS(832), - [anon_sym_esac] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [sym__special_characters] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(834), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(834), - [sym_word] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - }, - [3703] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(7999), - [sym_comment] = ACTIONS(56), - }, - [3704] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4037), - [anon_sym_RBRACE] = ACTIONS(8001), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8003), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3705] = { - [sym_subscript] = STATE(4041), - [sym_variable_name] = ACTIONS(8005), - [anon_sym_DOLLAR] = ACTIONS(8007), - [anon_sym_DASH] = ACTIONS(8007), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8009), - [anon_sym_STAR] = ACTIONS(8007), - [anon_sym_AT] = ACTIONS(8007), - [anon_sym_QMARK] = ACTIONS(8007), - [anon_sym_0] = ACTIONS(8011), - [anon_sym__] = ACTIONS(8011), - }, - [3706] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4044), - [anon_sym_RBRACE] = ACTIONS(8013), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8015), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3707] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4047), - [anon_sym_RBRACE] = ACTIONS(8017), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8019), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3708] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8021), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [3709] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8021), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3710] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(8021), - [sym_comment] = ACTIONS(56), - }, - [3711] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(8021), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3712] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8023), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [3713] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8023), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3714] = { - [sym_variable_assignment] = STATE(3243), - [sym_subscript] = STATE(3244), - [sym_concatenation] = STATE(3243), - [sym_string] = STATE(3237), - [sym_simple_expansion] = STATE(3237), - [sym_string_expansion] = STATE(3237), - [sym_expansion] = STATE(3237), - [sym_command_substitution] = STATE(3237), - [sym_process_substitution] = STATE(3237), - [aux_sym_declaration_command_repeat1] = STATE(3714), - [sym_variable_name] = ACTIONS(8025), - [anon_sym_esac] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1754), - [anon_sym_SEMI_SEMI] = ACTIONS(1754), - [anon_sym_PIPE_AMP] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [sym__special_characters] = ACTIONS(8028), - [anon_sym_DQUOTE] = ACTIONS(8031), - [anon_sym_DOLLAR] = ACTIONS(8034), - [sym_raw_string] = ACTIONS(8037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8040), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8043), - [anon_sym_BQUOTE] = ACTIONS(8046), - [anon_sym_LT_LPAREN] = ACTIONS(8049), - [anon_sym_GT_LPAREN] = ACTIONS(8049), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8052), - [sym_word] = ACTIONS(8037), - [anon_sym_SEMI] = ACTIONS(1754), - [anon_sym_LF] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1754), - }, - [3715] = { - [sym_string] = STATE(4050), - [sym_simple_expansion] = STATE(4050), - [sym_string_expansion] = STATE(4050), - [sym_expansion] = STATE(4050), - [sym_command_substitution] = STATE(4050), - [sym_process_substitution] = STATE(4050), - [sym__special_characters] = ACTIONS(8055), - [anon_sym_DQUOTE] = ACTIONS(7452), - [anon_sym_DOLLAR] = ACTIONS(8057), - [sym_raw_string] = ACTIONS(8059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8063), - [anon_sym_BQUOTE] = ACTIONS(8065), - [anon_sym_LT_LPAREN] = ACTIONS(8067), - [anon_sym_GT_LPAREN] = ACTIONS(8067), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8055), - }, - [3716] = { - [aux_sym_concatenation_repeat1] = STATE(4051), - [sym__concat] = ACTIONS(7448), - [anon_sym_esac] = ACTIONS(790), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [sym__special_characters] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(790), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(790), - [sym_word] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), - }, - [3717] = { - [sym__concat] = ACTIONS(792), - [anon_sym_esac] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [sym__special_characters] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(794), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(794), - [sym_word] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), - }, - [3718] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(8069), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [3719] = { - [sym__concat] = ACTIONS(824), - [anon_sym_esac] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [sym__special_characters] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(826), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(826), - [sym_word] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), - }, - [3720] = { - [sym__concat] = ACTIONS(828), - [anon_sym_esac] = ACTIONS(830), - [anon_sym_PIPE] = 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__special_characters] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(830), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(830), - [sym_word] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), - }, - [3721] = { - [sym__concat] = ACTIONS(832), - [anon_sym_esac] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [sym__special_characters] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(834), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(834), - [sym_word] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - }, - [3722] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(8071), - [sym_comment] = ACTIONS(56), - }, - [3723] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4056), - [anon_sym_RBRACE] = ACTIONS(8073), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8075), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3724] = { - [sym_subscript] = STATE(4060), - [sym_variable_name] = ACTIONS(8077), - [anon_sym_DOLLAR] = ACTIONS(8079), - [anon_sym_DASH] = ACTIONS(8079), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8081), - [anon_sym_STAR] = ACTIONS(8079), - [anon_sym_AT] = ACTIONS(8079), - [anon_sym_QMARK] = ACTIONS(8079), - [anon_sym_0] = ACTIONS(8083), - [anon_sym__] = ACTIONS(8083), - }, - [3725] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4063), - [anon_sym_RBRACE] = ACTIONS(8085), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8087), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3726] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4066), - [anon_sym_RBRACE] = ACTIONS(8089), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8091), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3727] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8093), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [3728] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8093), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3729] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(8093), - [sym_comment] = ACTIONS(56), - }, - [3730] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(8093), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3731] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8095), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [3732] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8095), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [3733] = { - [sym_concatenation] = STATE(3255), - [sym_string] = STATE(3249), - [sym_simple_expansion] = STATE(3249), - [sym_string_expansion] = STATE(3249), - [sym_expansion] = STATE(3249), - [sym_command_substitution] = STATE(3249), - [sym_process_substitution] = STATE(3249), - [aux_sym_unset_command_repeat1] = STATE(3733), - [anon_sym_esac] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1825), - [anon_sym_SEMI_SEMI] = ACTIONS(1825), - [anon_sym_PIPE_AMP] = ACTIONS(1825), - [anon_sym_AMP_AMP] = ACTIONS(1825), - [anon_sym_PIPE_PIPE] = ACTIONS(1825), - [sym__special_characters] = ACTIONS(8097), - [anon_sym_DQUOTE] = ACTIONS(8100), - [anon_sym_DOLLAR] = ACTIONS(8103), - [sym_raw_string] = ACTIONS(8106), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8109), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8112), - [anon_sym_BQUOTE] = ACTIONS(8115), - [anon_sym_LT_LPAREN] = ACTIONS(8118), - [anon_sym_GT_LPAREN] = ACTIONS(8118), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8121), - [sym_word] = ACTIONS(8106), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_LF] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1825), - }, - [3734] = { - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_EQ_TILDE] = ACTIONS(1888), - [anon_sym_EQ_EQ] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1888), - [anon_sym_LT_LT_LT] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [3735] = { - [aux_sym_concatenation_repeat1] = STATE(3735), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(8124), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_EQ_TILDE] = ACTIONS(1888), - [anon_sym_EQ_EQ] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1888), - [anon_sym_LT_LT_LT] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [3736] = { - [sym_file_descriptor] = ACTIONS(1923), - [sym__concat] = ACTIONS(1923), - [anon_sym_esac] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [anon_sym_EQ_TILDE] = ACTIONS(1925), - [anon_sym_EQ_EQ] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1925), - [anon_sym_GT_GT] = ACTIONS(1925), - [anon_sym_AMP_GT] = ACTIONS(1925), - [anon_sym_AMP_GT_GT] = ACTIONS(1925), - [anon_sym_LT_AMP] = ACTIONS(1925), - [anon_sym_GT_AMP] = ACTIONS(1925), - [anon_sym_LT_LT] = ACTIONS(1925), - [anon_sym_LT_LT_DASH] = ACTIONS(1925), - [anon_sym_LT_LT_LT] = ACTIONS(1925), - [sym__special_characters] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [sym_raw_string] = ACTIONS(1925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), - [anon_sym_BQUOTE] = ACTIONS(1925), - [anon_sym_LT_LPAREN] = ACTIONS(1925), - [anon_sym_GT_LPAREN] = ACTIONS(1925), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - }, - [3737] = { - [sym_concatenation] = STATE(4072), - [sym_string] = STATE(4071), - [sym_simple_expansion] = STATE(4071), - [sym_string_expansion] = STATE(4071), - [sym_expansion] = STATE(4071), - [sym_command_substitution] = STATE(4071), - [sym_process_substitution] = STATE(4071), - [anon_sym_RBRACE] = ACTIONS(8127), - [sym__special_characters] = ACTIONS(8129), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(8131), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8133), - }, - [3738] = { - [sym_file_descriptor] = ACTIONS(1968), - [sym__concat] = ACTIONS(1968), - [anon_sym_esac] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [anon_sym_EQ_TILDE] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_AMP_GT] = ACTIONS(1970), - [anon_sym_AMP_GT_GT] = ACTIONS(1970), - [anon_sym_LT_AMP] = ACTIONS(1970), - [anon_sym_GT_AMP] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_LT_LT_DASH] = ACTIONS(1970), - [anon_sym_LT_LT_LT] = ACTIONS(1970), - [sym__special_characters] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [sym_raw_string] = ACTIONS(1970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - }, - [3739] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8135), - }, - [3740] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8137), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3741] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(8139), - [sym_comment] = ACTIONS(56), - }, - [3742] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4078), - [anon_sym_RBRACE] = ACTIONS(8141), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8143), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3743] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4081), - [anon_sym_RBRACE] = ACTIONS(8145), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8147), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3744] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4083), - [anon_sym_RBRACE] = ACTIONS(8127), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8149), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3745] = { - [sym_file_descriptor] = ACTIONS(2022), - [sym__concat] = ACTIONS(2022), - [anon_sym_esac] = ACTIONS(2024), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [anon_sym_EQ_TILDE] = ACTIONS(2024), - [anon_sym_EQ_EQ] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym_AMP_GT] = ACTIONS(2024), - [anon_sym_AMP_GT_GT] = ACTIONS(2024), - [anon_sym_LT_AMP] = ACTIONS(2024), - [anon_sym_GT_AMP] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_LT_LT_DASH] = ACTIONS(2024), - [anon_sym_LT_LT_LT] = ACTIONS(2024), - [sym__special_characters] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_DOLLAR] = ACTIONS(2024), - [sym_raw_string] = ACTIONS(2024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2024), - [anon_sym_LT_LPAREN] = ACTIONS(2024), - [anon_sym_GT_LPAREN] = ACTIONS(2024), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - }, - [3746] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8151), - }, - [3747] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8153), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3748] = { - [sym_file_descriptor] = ACTIONS(2030), - [sym__concat] = ACTIONS(2030), - [anon_sym_esac] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [anon_sym_EQ_TILDE] = ACTIONS(2032), - [anon_sym_EQ_EQ] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2032), - [anon_sym_GT] = ACTIONS(2032), - [anon_sym_GT_GT] = ACTIONS(2032), - [anon_sym_AMP_GT] = ACTIONS(2032), - [anon_sym_AMP_GT_GT] = ACTIONS(2032), - [anon_sym_LT_AMP] = ACTIONS(2032), - [anon_sym_GT_AMP] = ACTIONS(2032), - [anon_sym_LT_LT] = ACTIONS(2032), - [anon_sym_LT_LT_DASH] = ACTIONS(2032), - [anon_sym_LT_LT_LT] = ACTIONS(2032), - [sym__special_characters] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2032), - [sym_raw_string] = ACTIONS(2032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), - [anon_sym_BQUOTE] = ACTIONS(2032), - [anon_sym_LT_LPAREN] = ACTIONS(2032), - [anon_sym_GT_LPAREN] = ACTIONS(2032), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), - }, - [3749] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8155), - }, - [3750] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8127), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3751] = { - [sym_file_descriptor] = ACTIONS(2190), - [sym__concat] = ACTIONS(2190), - [anon_sym_esac] = ACTIONS(2192), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_EQ_TILDE] = ACTIONS(2192), - [anon_sym_EQ_EQ] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_AMP_GT] = ACTIONS(2192), - [anon_sym_AMP_GT_GT] = ACTIONS(2192), - [anon_sym_LT_AMP] = ACTIONS(2192), - [anon_sym_GT_AMP] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_LT_LT_DASH] = ACTIONS(2192), - [anon_sym_LT_LT_LT] = ACTIONS(2192), - [sym__special_characters] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [sym_raw_string] = ACTIONS(2192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), - [anon_sym_BQUOTE] = ACTIONS(2192), - [anon_sym_LT_LPAREN] = ACTIONS(2192), - [anon_sym_GT_LPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), - }, - [3752] = { - [sym_file_descriptor] = ACTIONS(2396), - [sym__concat] = ACTIONS(2396), - [anon_sym_esac] = ACTIONS(2398), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_EQ_TILDE] = ACTIONS(2398), - [anon_sym_EQ_EQ] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_GT] = ACTIONS(2398), - [anon_sym_GT_GT] = ACTIONS(2398), - [anon_sym_AMP_GT] = ACTIONS(2398), - [anon_sym_AMP_GT_GT] = ACTIONS(2398), - [anon_sym_LT_AMP] = ACTIONS(2398), - [anon_sym_GT_AMP] = ACTIONS(2398), - [anon_sym_LT_LT] = ACTIONS(2398), - [anon_sym_LT_LT_DASH] = ACTIONS(2398), - [anon_sym_LT_LT_LT] = ACTIONS(2398), - [sym__special_characters] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), - [anon_sym_BQUOTE] = ACTIONS(2398), - [anon_sym_LT_LPAREN] = ACTIONS(2398), - [anon_sym_GT_LPAREN] = ACTIONS(2398), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - }, - [3753] = { - [sym_compound_statement] = STATE(4087), - [anon_sym_LBRACE] = ACTIONS(484), - [sym_comment] = ACTIONS(56), - }, - [3754] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_esac] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_SEMI_SEMI] = ACTIONS(2400), - [anon_sym_PIPE_AMP] = ACTIONS(2400), - [anon_sym_AMP_AMP] = ACTIONS(2400), - [anon_sym_PIPE_PIPE] = ACTIONS(2400), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2400), - [anon_sym_LF] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2400), - }, - [3755] = { - [anon_sym_esac] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(6655), - [anon_sym_SEMI_SEMI] = ACTIONS(2402), - [anon_sym_PIPE_AMP] = ACTIONS(6655), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_LF] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - }, - [3756] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_esac] = ACTIONS(2402), - [anon_sym_PIPE] = ACTIONS(6655), - [anon_sym_SEMI_SEMI] = ACTIONS(2402), - [anon_sym_PIPE_AMP] = ACTIONS(6655), - [anon_sym_AMP_AMP] = ACTIONS(2402), - [anon_sym_PIPE_PIPE] = ACTIONS(2402), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(2402), - [anon_sym_LF] = ACTIONS(2402), - [anon_sym_AMP] = ACTIONS(2402), - }, - [3757] = { - [sym_concatenation] = STATE(1199), - [sym_string] = STATE(4089), - [sym_simple_expansion] = STATE(4089), - [sym_string_expansion] = STATE(4089), - [sym_expansion] = STATE(4089), - [sym_command_substitution] = STATE(4089), - [sym_process_substitution] = STATE(4089), - [sym__special_characters] = ACTIONS(8157), - [anon_sym_DQUOTE] = ACTIONS(7526), - [anon_sym_DOLLAR] = ACTIONS(7528), - [sym_raw_string] = ACTIONS(8159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7532), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7534), - [anon_sym_BQUOTE] = ACTIONS(7536), - [anon_sym_LT_LPAREN] = ACTIONS(7538), - [anon_sym_GT_LPAREN] = ACTIONS(7538), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8161), - }, - [3758] = { - [aux_sym_concatenation_repeat1] = STATE(3258), - [sym_file_descriptor] = ACTIONS(1553), - [sym__concat] = ACTIONS(6629), - [anon_sym_esac] = ACTIONS(1555), - [anon_sym_PIPE] = ACTIONS(1555), - [anon_sym_SEMI_SEMI] = ACTIONS(1555), - [anon_sym_PIPE_AMP] = ACTIONS(1555), - [anon_sym_AMP_AMP] = ACTIONS(1555), - [anon_sym_PIPE_PIPE] = ACTIONS(1555), - [anon_sym_EQ_TILDE] = ACTIONS(1555), - [anon_sym_EQ_EQ] = ACTIONS(1555), - [anon_sym_LT] = ACTIONS(1555), - [anon_sym_GT] = ACTIONS(1555), - [anon_sym_GT_GT] = ACTIONS(1555), - [anon_sym_AMP_GT] = ACTIONS(1555), - [anon_sym_AMP_GT_GT] = ACTIONS(1555), - [anon_sym_LT_AMP] = ACTIONS(1555), - [anon_sym_GT_AMP] = ACTIONS(1555), - [anon_sym_LT_LT] = ACTIONS(1555), - [anon_sym_LT_LT_DASH] = ACTIONS(1555), - [anon_sym_LT_LT_LT] = ACTIONS(1555), - [sym__special_characters] = ACTIONS(1555), - [anon_sym_DQUOTE] = ACTIONS(1555), - [anon_sym_DOLLAR] = ACTIONS(1555), - [sym_raw_string] = ACTIONS(1555), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1555), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1555), - [anon_sym_BQUOTE] = ACTIONS(1555), - [anon_sym_LT_LPAREN] = ACTIONS(1555), - [anon_sym_GT_LPAREN] = ACTIONS(1555), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1555), - [anon_sym_SEMI] = ACTIONS(1555), - [anon_sym_LF] = ACTIONS(1555), - [anon_sym_AMP] = ACTIONS(1555), - }, - [3759] = { - [aux_sym_concatenation_repeat1] = STATE(3258), - [sym_file_descriptor] = ACTIONS(1559), - [sym__concat] = ACTIONS(6629), - [anon_sym_esac] = ACTIONS(1561), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_SEMI_SEMI] = ACTIONS(1561), - [anon_sym_PIPE_AMP] = ACTIONS(1561), - [anon_sym_AMP_AMP] = ACTIONS(1561), - [anon_sym_PIPE_PIPE] = ACTIONS(1561), - [anon_sym_EQ_TILDE] = ACTIONS(1561), - [anon_sym_EQ_EQ] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1561), - [anon_sym_AMP_GT] = ACTIONS(1561), - [anon_sym_AMP_GT_GT] = ACTIONS(1561), - [anon_sym_LT_AMP] = ACTIONS(1561), - [anon_sym_GT_AMP] = ACTIONS(1561), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_LT_LT_DASH] = ACTIONS(1561), - [anon_sym_LT_LT_LT] = ACTIONS(1561), - [sym__special_characters] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1561), - [sym_raw_string] = ACTIONS(1561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1561), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1561), - [anon_sym_BQUOTE] = ACTIONS(1561), - [anon_sym_LT_LPAREN] = ACTIONS(1561), - [anon_sym_GT_LPAREN] = ACTIONS(1561), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_LF] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1561), - }, - [3760] = { - [sym_file_descriptor] = ACTIONS(1559), - [anon_sym_esac] = ACTIONS(1561), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_SEMI_SEMI] = ACTIONS(1561), - [anon_sym_PIPE_AMP] = ACTIONS(1561), - [anon_sym_AMP_AMP] = ACTIONS(1561), - [anon_sym_PIPE_PIPE] = ACTIONS(1561), - [anon_sym_EQ_TILDE] = ACTIONS(1561), - [anon_sym_EQ_EQ] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1561), - [anon_sym_AMP_GT] = ACTIONS(1561), - [anon_sym_AMP_GT_GT] = ACTIONS(1561), - [anon_sym_LT_AMP] = ACTIONS(1561), - [anon_sym_GT_AMP] = ACTIONS(1561), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_LT_LT_DASH] = ACTIONS(1561), - [anon_sym_LT_LT_LT] = ACTIONS(1561), - [sym__special_characters] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1561), - [anon_sym_DOLLAR] = ACTIONS(1561), - [sym_raw_string] = ACTIONS(1561), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1561), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1561), - [anon_sym_BQUOTE] = ACTIONS(1561), - [anon_sym_LT_LPAREN] = ACTIONS(1561), - [anon_sym_GT_LPAREN] = ACTIONS(1561), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1561), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_LF] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1561), - }, - [3761] = { - [aux_sym_concatenation_repeat1] = STATE(4091), - [sym_file_descriptor] = ACTIONS(754), - [sym__concat] = ACTIONS(8163), - [anon_sym_esac] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2412), - [anon_sym_SEMI_SEMI] = ACTIONS(2412), - [anon_sym_PIPE_AMP] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [anon_sym_LT] = ACTIONS(2412), - [anon_sym_GT] = ACTIONS(2412), - [anon_sym_GT_GT] = ACTIONS(2412), - [anon_sym_AMP_GT] = ACTIONS(2412), - [anon_sym_AMP_GT_GT] = ACTIONS(2412), - [anon_sym_LT_AMP] = ACTIONS(2412), - [anon_sym_GT_AMP] = ACTIONS(2412), - [anon_sym_LT_LT] = ACTIONS(2412), - [anon_sym_LT_LT_DASH] = ACTIONS(2412), - [anon_sym_LT_LT_LT] = ACTIONS(2412), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_LF] = ACTIONS(2412), - [anon_sym_AMP] = ACTIONS(2412), - }, - [3762] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(4093), - [anon_sym_DQUOTE] = ACTIONS(8165), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [3763] = { - [sym_string] = STATE(4095), - [anon_sym_DQUOTE] = ACTIONS(7526), - [anon_sym_DOLLAR] = ACTIONS(8167), - [sym_raw_string] = ACTIONS(8169), - [anon_sym_POUND] = ACTIONS(8167), - [anon_sym_DASH] = ACTIONS(8167), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8171), - [anon_sym_STAR] = ACTIONS(8167), - [anon_sym_AT] = ACTIONS(8167), - [anon_sym_QMARK] = ACTIONS(8167), - [anon_sym_0] = ACTIONS(8173), - [anon_sym__] = ACTIONS(8173), - }, - [3764] = { - [aux_sym_concatenation_repeat1] = STATE(4091), - [sym_file_descriptor] = ACTIONS(770), - [sym__concat] = ACTIONS(8163), - [anon_sym_esac] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_SEMI_SEMI] = ACTIONS(2424), - [anon_sym_PIPE_AMP] = ACTIONS(2424), - [anon_sym_AMP_AMP] = ACTIONS(2424), - [anon_sym_PIPE_PIPE] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_GT] = ACTIONS(2424), - [anon_sym_GT_GT] = ACTIONS(2424), - [anon_sym_AMP_GT] = ACTIONS(2424), - [anon_sym_AMP_GT_GT] = ACTIONS(2424), - [anon_sym_LT_AMP] = ACTIONS(2424), - [anon_sym_GT_AMP] = ACTIONS(2424), - [anon_sym_LT_LT] = ACTIONS(2424), - [anon_sym_LT_LT_DASH] = ACTIONS(2424), - [anon_sym_LT_LT_LT] = ACTIONS(2424), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_LF] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2424), - }, - [3765] = { - [sym_subscript] = STATE(4101), - [sym_variable_name] = ACTIONS(8175), - [anon_sym_DOLLAR] = ACTIONS(8177), - [anon_sym_POUND] = ACTIONS(8179), - [anon_sym_DASH] = ACTIONS(8177), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8181), - [anon_sym_STAR] = ACTIONS(8177), - [anon_sym_AT] = ACTIONS(8177), - [anon_sym_QMARK] = ACTIONS(8177), - [anon_sym_0] = ACTIONS(8183), - [anon_sym__] = ACTIONS(8183), - }, - [3766] = { - [sym_for_statement] = STATE(4102), - [sym_while_statement] = STATE(4102), - [sym_if_statement] = STATE(4102), - [sym_case_statement] = STATE(4102), - [sym_function_definition] = STATE(4102), - [sym_subshell] = STATE(4102), - [sym_pipeline] = STATE(4102), - [sym_list] = STATE(4102), - [sym_command] = STATE(4102), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(4102), - [sym_variable_assignment] = STATE(4103), - [sym_declaration_command] = STATE(4102), - [sym_unset_command] = STATE(4102), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [3767] = { - [sym_for_statement] = STATE(4104), - [sym_while_statement] = STATE(4104), - [sym_if_statement] = STATE(4104), - [sym_case_statement] = STATE(4104), - [sym_function_definition] = STATE(4104), - [sym_subshell] = STATE(4104), - [sym_pipeline] = STATE(4104), - [sym_list] = STATE(4104), - [sym_command] = STATE(4104), + [sym_for_statement] = STATE(4022), + [sym_while_statement] = STATE(4022), + [sym_if_statement] = STATE(4022), + [sym_case_statement] = STATE(4022), + [sym_function_definition] = STATE(4022), + [sym_subshell] = STATE(4022), + [sym_pipeline] = STATE(4022), + [sym_list] = STATE(4022), + [sym_command] = STATE(4022), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(4104), - [sym_variable_assignment] = STATE(4105), - [sym_declaration_command] = STATE(4104), - [sym_unset_command] = STATE(4104), + [sym_bracket_command] = STATE(4022), + [sym_variable_assignment] = STATE(4023), + [sym_declaration_command] = STATE(4022), + [sym_unset_command] = STATE(4022), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -94065,7 +92205,1798 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, + [3694] = { + [sym_for_statement] = STATE(4024), + [sym_while_statement] = STATE(4024), + [sym_if_statement] = STATE(4024), + [sym_case_statement] = STATE(4024), + [sym_function_definition] = STATE(4024), + [sym_subshell] = STATE(4024), + [sym_pipeline] = STATE(4024), + [sym_list] = STATE(4024), + [sym_command] = STATE(4024), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(4024), + [sym_variable_assignment] = STATE(4025), + [sym_declaration_command] = STATE(4024), + [sym_unset_command] = STATE(4024), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(302), + }, + [3695] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(4026), + [sym_file_descriptor] = ACTIONS(6677), + [anon_sym_esac] = ACTIONS(1351), + [anon_sym_PIPE] = ACTIONS(1351), + [anon_sym_SEMI_SEMI] = ACTIONS(1351), + [anon_sym_PIPE_AMP] = ACTIONS(1351), + [anon_sym_AMP_AMP] = ACTIONS(1351), + [anon_sym_PIPE_PIPE] = ACTIONS(1351), + [anon_sym_LT] = ACTIONS(6681), + [anon_sym_GT] = ACTIONS(6681), + [anon_sym_GT_GT] = ACTIONS(6681), + [anon_sym_AMP_GT] = ACTIONS(6681), + [anon_sym_AMP_GT_GT] = ACTIONS(6681), + [anon_sym_LT_AMP] = ACTIONS(6681), + [anon_sym_GT_AMP] = ACTIONS(6681), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6683), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1351), + [anon_sym_LF] = ACTIONS(1351), + [anon_sym_AMP] = ACTIONS(1351), + }, + [3696] = { + [anon_sym_RPAREN] = ACTIONS(7977), + [sym_comment] = ACTIONS(56), + }, + [3697] = { + [sym_file_redirect] = STATE(740), + [sym_file_descriptor] = ACTIONS(7979), + [anon_sym_esac] = ACTIONS(1405), + [anon_sym_PIPE] = ACTIONS(1405), + [anon_sym_SEMI_SEMI] = ACTIONS(1405), + [anon_sym_PIPE_AMP] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1405), + [anon_sym_PIPE_PIPE] = ACTIONS(1405), + [anon_sym_LT] = ACTIONS(7981), + [anon_sym_GT] = ACTIONS(7981), + [anon_sym_GT_GT] = ACTIONS(7981), + [anon_sym_AMP_GT] = ACTIONS(7981), + [anon_sym_AMP_GT_GT] = ACTIONS(7981), + [anon_sym_LT_AMP] = ACTIONS(7981), + [anon_sym_GT_AMP] = ACTIONS(7981), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1405), + [anon_sym_LF] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + }, + [3698] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(4030), + [sym_file_descriptor] = ACTIONS(6677), + [anon_sym_esac] = ACTIONS(1609), + [anon_sym_PIPE] = ACTIONS(1609), + [anon_sym_SEMI_SEMI] = ACTIONS(1609), + [anon_sym_PIPE_AMP] = ACTIONS(1609), + [anon_sym_AMP_AMP] = ACTIONS(1609), + [anon_sym_PIPE_PIPE] = ACTIONS(1609), + [anon_sym_LT] = ACTIONS(6681), + [anon_sym_GT] = ACTIONS(6681), + [anon_sym_GT_GT] = ACTIONS(6681), + [anon_sym_AMP_GT] = ACTIONS(6681), + [anon_sym_AMP_GT_GT] = ACTIONS(6681), + [anon_sym_LT_AMP] = ACTIONS(6681), + [anon_sym_GT_AMP] = ACTIONS(6681), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6683), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(1609), + [anon_sym_LF] = ACTIONS(1609), + [anon_sym_AMP] = ACTIONS(1609), + }, + [3699] = { + [sym_concatenation] = STATE(4031), + [sym_string] = STATE(4034), + [sym_array] = STATE(4031), + [sym_simple_expansion] = STATE(4034), + [sym_string_expansion] = STATE(4034), + [sym_expansion] = STATE(4034), + [sym_command_substitution] = STATE(4034), + [sym_process_substitution] = STATE(4034), + [sym__empty_value] = ACTIONS(7983), + [anon_sym_LPAREN] = ACTIONS(7985), + [sym__special_characters] = ACTIONS(7987), + [anon_sym_DQUOTE] = ACTIONS(7440), + [anon_sym_DOLLAR] = ACTIONS(7989), + [sym_raw_string] = ACTIONS(7991), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7993), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7995), + [anon_sym_BQUOTE] = ACTIONS(7997), + [anon_sym_LT_LPAREN] = ACTIONS(7999), + [anon_sym_GT_LPAREN] = ACTIONS(7999), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8001), + }, + [3700] = { + [sym_variable_name] = ACTIONS(440), + [anon_sym_esac] = ACTIONS(442), + [anon_sym_PIPE] = ACTIONS(442), + [anon_sym_SEMI_SEMI] = ACTIONS(442), + [anon_sym_PIPE_AMP] = ACTIONS(442), + [anon_sym_AMP_AMP] = ACTIONS(442), + [anon_sym_PIPE_PIPE] = ACTIONS(442), + [sym__special_characters] = ACTIONS(442), + [anon_sym_DQUOTE] = ACTIONS(442), + [anon_sym_DOLLAR] = ACTIONS(442), + [sym_raw_string] = ACTIONS(442), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(442), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(442), + [anon_sym_BQUOTE] = ACTIONS(442), + [anon_sym_LT_LPAREN] = ACTIONS(442), + [anon_sym_GT_LPAREN] = ACTIONS(442), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(442), + [sym_word] = ACTIONS(442), + [anon_sym_SEMI] = ACTIONS(442), + [anon_sym_LF] = ACTIONS(442), + [anon_sym_AMP] = ACTIONS(442), + }, + [3701] = { + [sym_string] = STATE(4035), + [sym_simple_expansion] = STATE(4035), + [sym_string_expansion] = STATE(4035), + [sym_expansion] = STATE(4035), + [sym_command_substitution] = STATE(4035), + [sym_process_substitution] = STATE(4035), + [sym__special_characters] = ACTIONS(8003), + [anon_sym_DQUOTE] = ACTIONS(7440), + [anon_sym_DOLLAR] = ACTIONS(7989), + [sym_raw_string] = ACTIONS(8005), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7993), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7995), + [anon_sym_BQUOTE] = ACTIONS(7997), + [anon_sym_LT_LPAREN] = ACTIONS(7999), + [anon_sym_GT_LPAREN] = ACTIONS(7999), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8003), + }, + [3702] = { + [aux_sym_concatenation_repeat1] = STATE(4036), + [sym__concat] = ACTIONS(7436), + [sym_variable_name] = ACTIONS(790), + [anon_sym_esac] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(792), + [sym_word] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), + }, + [3703] = { + [sym__concat] = ACTIONS(794), + [sym_variable_name] = ACTIONS(794), + [anon_sym_esac] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [sym__special_characters] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(796), + [sym_raw_string] = ACTIONS(796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(796), + [anon_sym_GT_LPAREN] = ACTIONS(796), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(796), + [sym_word] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + }, + [3704] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(8007), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [3705] = { + [sym__concat] = ACTIONS(826), + [sym_variable_name] = ACTIONS(826), + [anon_sym_esac] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(828), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(828), + [sym_word] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), + }, + [3706] = { + [sym__concat] = ACTIONS(830), + [sym_variable_name] = ACTIONS(830), + [anon_sym_esac] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [sym__special_characters] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(832), + [sym_word] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), + }, + [3707] = { + [sym__concat] = ACTIONS(834), + [sym_variable_name] = ACTIONS(834), + [anon_sym_esac] = ACTIONS(836), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [sym__special_characters] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [sym_raw_string] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LT_LPAREN] = ACTIONS(836), + [anon_sym_GT_LPAREN] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(836), + [sym_word] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), + }, + [3708] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(8009), + [sym_comment] = ACTIONS(56), + }, + [3709] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4041), + [anon_sym_RBRACE] = ACTIONS(8011), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8013), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3710] = { + [sym_subscript] = STATE(4045), + [sym_variable_name] = ACTIONS(8015), + [anon_sym_DOLLAR] = ACTIONS(8017), + [anon_sym_DASH] = ACTIONS(8017), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8019), + [anon_sym_STAR] = ACTIONS(8017), + [anon_sym_AT] = ACTIONS(8017), + [anon_sym_QMARK] = ACTIONS(8017), + [anon_sym_0] = ACTIONS(8021), + [anon_sym__] = ACTIONS(8021), + }, + [3711] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4048), + [anon_sym_RBRACE] = ACTIONS(8023), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8025), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3712] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4051), + [anon_sym_RBRACE] = ACTIONS(8027), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8029), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3713] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8031), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [3714] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8031), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [3715] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(8031), + [sym_comment] = ACTIONS(56), + }, + [3716] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(8031), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [3717] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8033), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [3718] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8033), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [3719] = { + [sym_variable_assignment] = STATE(3250), + [sym_subscript] = STATE(3251), + [sym_concatenation] = STATE(3250), + [sym_string] = STATE(3244), + [sym_simple_expansion] = STATE(3244), + [sym_string_expansion] = STATE(3244), + [sym_expansion] = STATE(3244), + [sym_command_substitution] = STATE(3244), + [sym_process_substitution] = STATE(3244), + [aux_sym_declaration_command_repeat1] = STATE(3719), + [sym_variable_name] = ACTIONS(8035), + [anon_sym_esac] = ACTIONS(1758), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_SEMI_SEMI] = ACTIONS(1758), + [anon_sym_PIPE_AMP] = ACTIONS(1758), + [anon_sym_AMP_AMP] = ACTIONS(1758), + [anon_sym_PIPE_PIPE] = ACTIONS(1758), + [sym__special_characters] = ACTIONS(8038), + [anon_sym_DQUOTE] = ACTIONS(8041), + [anon_sym_DOLLAR] = ACTIONS(8044), + [sym_raw_string] = ACTIONS(8047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8050), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8053), + [anon_sym_BQUOTE] = ACTIONS(8056), + [anon_sym_LT_LPAREN] = ACTIONS(8059), + [anon_sym_GT_LPAREN] = ACTIONS(8059), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8062), + [sym_word] = ACTIONS(8047), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_LF] = ACTIONS(1758), + [anon_sym_AMP] = ACTIONS(1758), + }, + [3720] = { + [sym_string] = STATE(4054), + [sym_simple_expansion] = STATE(4054), + [sym_string_expansion] = STATE(4054), + [sym_expansion] = STATE(4054), + [sym_command_substitution] = STATE(4054), + [sym_process_substitution] = STATE(4054), + [sym__special_characters] = ACTIONS(8065), + [anon_sym_DQUOTE] = ACTIONS(7464), + [anon_sym_DOLLAR] = ACTIONS(8067), + [sym_raw_string] = ACTIONS(8069), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8073), + [anon_sym_BQUOTE] = ACTIONS(8075), + [anon_sym_LT_LPAREN] = ACTIONS(8077), + [anon_sym_GT_LPAREN] = ACTIONS(8077), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8065), + }, + [3721] = { + [aux_sym_concatenation_repeat1] = STATE(4055), + [sym__concat] = ACTIONS(7460), + [anon_sym_esac] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(792), + [sym_word] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), + }, + [3722] = { + [sym__concat] = ACTIONS(794), + [anon_sym_esac] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [sym__special_characters] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(796), + [sym_raw_string] = ACTIONS(796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(796), + [anon_sym_GT_LPAREN] = ACTIONS(796), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(796), + [sym_word] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + }, + [3723] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(8079), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [3724] = { + [sym__concat] = ACTIONS(826), + [anon_sym_esac] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(828), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(828), + [sym_word] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), + }, + [3725] = { + [sym__concat] = ACTIONS(830), + [anon_sym_esac] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [sym__special_characters] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(832), + [sym_word] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), + }, + [3726] = { + [sym__concat] = ACTIONS(834), + [anon_sym_esac] = ACTIONS(836), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [sym__special_characters] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [sym_raw_string] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LT_LPAREN] = ACTIONS(836), + [anon_sym_GT_LPAREN] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(836), + [sym_word] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), + }, + [3727] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(8081), + [sym_comment] = ACTIONS(56), + }, + [3728] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4060), + [anon_sym_RBRACE] = ACTIONS(8083), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8085), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3729] = { + [sym_subscript] = STATE(4064), + [sym_variable_name] = ACTIONS(8087), + [anon_sym_DOLLAR] = ACTIONS(8089), + [anon_sym_DASH] = ACTIONS(8089), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8091), + [anon_sym_STAR] = ACTIONS(8089), + [anon_sym_AT] = ACTIONS(8089), + [anon_sym_QMARK] = ACTIONS(8089), + [anon_sym_0] = ACTIONS(8093), + [anon_sym__] = ACTIONS(8093), + }, + [3730] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4067), + [anon_sym_RBRACE] = ACTIONS(8095), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8097), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3731] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4070), + [anon_sym_RBRACE] = ACTIONS(8099), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8101), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3732] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8103), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [3733] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8103), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [3734] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(8103), + [sym_comment] = ACTIONS(56), + }, + [3735] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(8103), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [3736] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8105), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [3737] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8105), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [3738] = { + [sym_concatenation] = STATE(3262), + [sym_string] = STATE(3256), + [sym_simple_expansion] = STATE(3256), + [sym_string_expansion] = STATE(3256), + [sym_expansion] = STATE(3256), + [sym_command_substitution] = STATE(3256), + [sym_process_substitution] = STATE(3256), + [aux_sym_unset_command_repeat1] = STATE(3738), + [anon_sym_esac] = ACTIONS(1829), + [anon_sym_PIPE] = ACTIONS(1829), + [anon_sym_SEMI_SEMI] = ACTIONS(1829), + [anon_sym_PIPE_AMP] = ACTIONS(1829), + [anon_sym_AMP_AMP] = ACTIONS(1829), + [anon_sym_PIPE_PIPE] = ACTIONS(1829), + [sym__special_characters] = ACTIONS(8107), + [anon_sym_DQUOTE] = ACTIONS(8110), + [anon_sym_DOLLAR] = ACTIONS(8113), + [sym_raw_string] = ACTIONS(8116), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8119), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8122), + [anon_sym_BQUOTE] = ACTIONS(8125), + [anon_sym_LT_LPAREN] = ACTIONS(8128), + [anon_sym_GT_LPAREN] = ACTIONS(8128), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8131), + [sym_word] = ACTIONS(8116), + [anon_sym_SEMI] = ACTIONS(1829), + [anon_sym_LF] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1829), + }, + [3739] = { + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_EQ_TILDE] = ACTIONS(1892), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1892), + [anon_sym_LT_LT_LT] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [3740] = { + [aux_sym_concatenation_repeat1] = STATE(3740), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(8134), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_EQ_TILDE] = ACTIONS(1892), + [anon_sym_EQ_EQ] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1892), + [anon_sym_LT_LT_LT] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [3741] = { + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [anon_sym_esac] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [anon_sym_EQ_TILDE] = ACTIONS(1929), + [anon_sym_EQ_EQ] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1929), + [anon_sym_AMP_GT] = ACTIONS(1929), + [anon_sym_AMP_GT_GT] = ACTIONS(1929), + [anon_sym_LT_AMP] = ACTIONS(1929), + [anon_sym_GT_AMP] = ACTIONS(1929), + [anon_sym_LT_LT] = ACTIONS(1929), + [anon_sym_LT_LT_DASH] = ACTIONS(1929), + [anon_sym_LT_LT_LT] = ACTIONS(1929), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), + [anon_sym_BQUOTE] = ACTIONS(1929), + [anon_sym_LT_LPAREN] = ACTIONS(1929), + [anon_sym_GT_LPAREN] = ACTIONS(1929), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), + }, + [3742] = { + [sym_concatenation] = STATE(4076), + [sym_string] = STATE(4075), + [sym_simple_expansion] = STATE(4075), + [sym_string_expansion] = STATE(4075), + [sym_expansion] = STATE(4075), + [sym_command_substitution] = STATE(4075), + [sym_process_substitution] = STATE(4075), + [anon_sym_RBRACE] = ACTIONS(8137), + [sym__special_characters] = ACTIONS(8139), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(8141), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8143), + }, + [3743] = { + [sym_file_descriptor] = ACTIONS(1972), + [sym__concat] = ACTIONS(1972), + [anon_sym_esac] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [anon_sym_EQ_TILDE] = ACTIONS(1974), + [anon_sym_EQ_EQ] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_GT] = ACTIONS(1974), + [anon_sym_GT_GT] = ACTIONS(1974), + [anon_sym_AMP_GT] = ACTIONS(1974), + [anon_sym_AMP_GT_GT] = ACTIONS(1974), + [anon_sym_LT_AMP] = ACTIONS(1974), + [anon_sym_GT_AMP] = ACTIONS(1974), + [anon_sym_LT_LT] = ACTIONS(1974), + [anon_sym_LT_LT_DASH] = ACTIONS(1974), + [anon_sym_LT_LT_LT] = ACTIONS(1974), + [sym__special_characters] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1974), + [sym_raw_string] = ACTIONS(1974), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [anon_sym_BQUOTE] = ACTIONS(1974), + [anon_sym_LT_LPAREN] = ACTIONS(1974), + [anon_sym_GT_LPAREN] = ACTIONS(1974), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + }, + [3744] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8145), + }, + [3745] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8147), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3746] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(8149), + [sym_comment] = ACTIONS(56), + }, + [3747] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4082), + [anon_sym_RBRACE] = ACTIONS(8151), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8153), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3748] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4085), + [anon_sym_RBRACE] = ACTIONS(8155), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8157), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3749] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4087), + [anon_sym_RBRACE] = ACTIONS(8137), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8159), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3750] = { + [sym_file_descriptor] = ACTIONS(2026), + [sym__concat] = ACTIONS(2026), + [anon_sym_esac] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [anon_sym_EQ_TILDE] = ACTIONS(2028), + [anon_sym_EQ_EQ] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_GT_GT] = ACTIONS(2028), + [anon_sym_AMP_GT] = ACTIONS(2028), + [anon_sym_AMP_GT_GT] = ACTIONS(2028), + [anon_sym_LT_AMP] = ACTIONS(2028), + [anon_sym_GT_AMP] = ACTIONS(2028), + [anon_sym_LT_LT] = ACTIONS(2028), + [anon_sym_LT_LT_DASH] = ACTIONS(2028), + [anon_sym_LT_LT_LT] = ACTIONS(2028), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym_raw_string] = ACTIONS(2028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(2028), + [anon_sym_LT_LPAREN] = ACTIONS(2028), + [anon_sym_GT_LPAREN] = ACTIONS(2028), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + }, + [3751] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8161), + }, + [3752] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8163), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3753] = { + [sym_file_descriptor] = ACTIONS(2034), + [sym__concat] = ACTIONS(2034), + [anon_sym_esac] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [anon_sym_EQ_TILDE] = ACTIONS(2036), + [anon_sym_EQ_EQ] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_GT] = ACTIONS(2036), + [anon_sym_GT_GT] = ACTIONS(2036), + [anon_sym_AMP_GT] = ACTIONS(2036), + [anon_sym_AMP_GT_GT] = ACTIONS(2036), + [anon_sym_LT_AMP] = ACTIONS(2036), + [anon_sym_GT_AMP] = ACTIONS(2036), + [anon_sym_LT_LT] = ACTIONS(2036), + [anon_sym_LT_LT_DASH] = ACTIONS(2036), + [anon_sym_LT_LT_LT] = ACTIONS(2036), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [anon_sym_LT_LPAREN] = ACTIONS(2036), + [anon_sym_GT_LPAREN] = ACTIONS(2036), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + }, + [3754] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8165), + }, + [3755] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8137), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3756] = { + [sym_file_descriptor] = ACTIONS(2196), + [sym__concat] = ACTIONS(2196), + [anon_sym_esac] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [anon_sym_EQ_TILDE] = ACTIONS(2198), + [anon_sym_EQ_EQ] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_GT] = ACTIONS(2198), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_AMP_GT] = ACTIONS(2198), + [anon_sym_AMP_GT_GT] = ACTIONS(2198), + [anon_sym_LT_AMP] = ACTIONS(2198), + [anon_sym_GT_AMP] = ACTIONS(2198), + [anon_sym_LT_LT] = ACTIONS(2198), + [anon_sym_LT_LT_DASH] = ACTIONS(2198), + [anon_sym_LT_LT_LT] = ACTIONS(2198), + [sym__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + }, + [3757] = { + [sym_file_descriptor] = ACTIONS(2402), + [sym__concat] = ACTIONS(2402), + [anon_sym_esac] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_EQ_TILDE] = ACTIONS(2404), + [anon_sym_EQ_EQ] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_AMP_GT] = ACTIONS(2404), + [anon_sym_AMP_GT_GT] = ACTIONS(2404), + [anon_sym_LT_AMP] = ACTIONS(2404), + [anon_sym_GT_AMP] = ACTIONS(2404), + [anon_sym_LT_LT] = ACTIONS(2404), + [anon_sym_LT_LT_DASH] = ACTIONS(2404), + [anon_sym_LT_LT_LT] = ACTIONS(2404), + [sym__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(2404), + [sym_raw_string] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2404), + [anon_sym_LT_LPAREN] = ACTIONS(2404), + [anon_sym_GT_LPAREN] = ACTIONS(2404), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + }, + [3758] = { + [sym_compound_statement] = STATE(4091), + [anon_sym_LBRACE] = ACTIONS(486), + [sym_comment] = ACTIONS(56), + }, + [3759] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_esac] = ACTIONS(2406), + [anon_sym_PIPE] = ACTIONS(2406), + [anon_sym_SEMI_SEMI] = ACTIONS(2406), + [anon_sym_PIPE_AMP] = ACTIONS(2406), + [anon_sym_AMP_AMP] = ACTIONS(2406), + [anon_sym_PIPE_PIPE] = ACTIONS(2406), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(2406), + [anon_sym_LF] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2406), + }, + [3760] = { + [anon_sym_esac] = ACTIONS(2408), + [anon_sym_PIPE] = ACTIONS(6669), + [anon_sym_SEMI_SEMI] = ACTIONS(2408), + [anon_sym_PIPE_AMP] = ACTIONS(6669), + [anon_sym_AMP_AMP] = ACTIONS(2408), + [anon_sym_PIPE_PIPE] = ACTIONS(2408), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2408), + [anon_sym_LF] = ACTIONS(2408), + [anon_sym_AMP] = ACTIONS(2408), + }, + [3761] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_esac] = ACTIONS(2408), + [anon_sym_PIPE] = ACTIONS(6669), + [anon_sym_SEMI_SEMI] = ACTIONS(2408), + [anon_sym_PIPE_AMP] = ACTIONS(6669), + [anon_sym_AMP_AMP] = ACTIONS(2408), + [anon_sym_PIPE_PIPE] = ACTIONS(2408), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(2408), + [anon_sym_LF] = ACTIONS(2408), + [anon_sym_AMP] = ACTIONS(2408), + }, + [3762] = { + [sym_concatenation] = STATE(1203), + [sym_string] = STATE(4093), + [sym_simple_expansion] = STATE(4093), + [sym_string_expansion] = STATE(4093), + [sym_expansion] = STATE(4093), + [sym_command_substitution] = STATE(4093), + [sym_process_substitution] = STATE(4093), + [sym__special_characters] = ACTIONS(8167), + [anon_sym_DQUOTE] = ACTIONS(7538), + [anon_sym_DOLLAR] = ACTIONS(7540), + [sym_raw_string] = ACTIONS(8169), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7544), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7546), + [anon_sym_BQUOTE] = ACTIONS(7548), + [anon_sym_LT_LPAREN] = ACTIONS(7550), + [anon_sym_GT_LPAREN] = ACTIONS(7550), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8171), + }, + [3763] = { + [aux_sym_concatenation_repeat1] = STATE(3265), + [sym_file_descriptor] = ACTIONS(1557), + [sym__concat] = ACTIONS(6643), + [anon_sym_esac] = ACTIONS(1559), + [anon_sym_PIPE] = ACTIONS(1559), + [anon_sym_SEMI_SEMI] = ACTIONS(1559), + [anon_sym_PIPE_AMP] = ACTIONS(1559), + [anon_sym_AMP_AMP] = ACTIONS(1559), + [anon_sym_PIPE_PIPE] = ACTIONS(1559), + [anon_sym_EQ_TILDE] = ACTIONS(1559), + [anon_sym_EQ_EQ] = ACTIONS(1559), + [anon_sym_LT] = ACTIONS(1559), + [anon_sym_GT] = ACTIONS(1559), + [anon_sym_GT_GT] = ACTIONS(1559), + [anon_sym_AMP_GT] = ACTIONS(1559), + [anon_sym_AMP_GT_GT] = ACTIONS(1559), + [anon_sym_LT_AMP] = ACTIONS(1559), + [anon_sym_GT_AMP] = ACTIONS(1559), + [anon_sym_LT_LT] = ACTIONS(1559), + [anon_sym_LT_LT_DASH] = ACTIONS(1559), + [anon_sym_LT_LT_LT] = ACTIONS(1559), + [sym__special_characters] = ACTIONS(1559), + [anon_sym_DQUOTE] = ACTIONS(1559), + [anon_sym_DOLLAR] = ACTIONS(1559), + [sym_raw_string] = ACTIONS(1559), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1559), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1559), + [anon_sym_BQUOTE] = ACTIONS(1559), + [anon_sym_LT_LPAREN] = ACTIONS(1559), + [anon_sym_GT_LPAREN] = ACTIONS(1559), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1559), + [anon_sym_SEMI] = ACTIONS(1559), + [anon_sym_LF] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(1559), + }, + [3764] = { + [aux_sym_concatenation_repeat1] = STATE(3265), + [sym_file_descriptor] = ACTIONS(1563), + [sym__concat] = ACTIONS(6643), + [anon_sym_esac] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_SEMI_SEMI] = ACTIONS(1565), + [anon_sym_PIPE_AMP] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1565), + [anon_sym_EQ_TILDE] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1565), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_AMP_GT] = ACTIONS(1565), + [anon_sym_AMP_GT_GT] = ACTIONS(1565), + [anon_sym_LT_AMP] = ACTIONS(1565), + [anon_sym_GT_AMP] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT_LT_DASH] = ACTIONS(1565), + [anon_sym_LT_LT_LT] = ACTIONS(1565), + [sym__special_characters] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1565), + [sym_raw_string] = ACTIONS(1565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1565), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1565), + [anon_sym_BQUOTE] = ACTIONS(1565), + [anon_sym_LT_LPAREN] = ACTIONS(1565), + [anon_sym_GT_LPAREN] = ACTIONS(1565), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1565), + [anon_sym_LF] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + }, + [3765] = { + [sym_file_descriptor] = ACTIONS(1563), + [anon_sym_esac] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_SEMI_SEMI] = ACTIONS(1565), + [anon_sym_PIPE_AMP] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1565), + [anon_sym_EQ_TILDE] = ACTIONS(1565), + [anon_sym_EQ_EQ] = ACTIONS(1565), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1565), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_AMP_GT] = ACTIONS(1565), + [anon_sym_AMP_GT_GT] = ACTIONS(1565), + [anon_sym_LT_AMP] = ACTIONS(1565), + [anon_sym_GT_AMP] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT_LT_DASH] = ACTIONS(1565), + [anon_sym_LT_LT_LT] = ACTIONS(1565), + [sym__special_characters] = ACTIONS(1565), + [anon_sym_DQUOTE] = ACTIONS(1565), + [anon_sym_DOLLAR] = ACTIONS(1565), + [sym_raw_string] = ACTIONS(1565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1565), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1565), + [anon_sym_BQUOTE] = ACTIONS(1565), + [anon_sym_LT_LPAREN] = ACTIONS(1565), + [anon_sym_GT_LPAREN] = ACTIONS(1565), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1565), + [anon_sym_SEMI] = ACTIONS(1565), + [anon_sym_LF] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + }, + [3766] = { + [aux_sym_concatenation_repeat1] = STATE(4095), + [sym_file_descriptor] = ACTIONS(756), + [sym__concat] = ACTIONS(8173), + [anon_sym_esac] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_SEMI_SEMI] = ACTIONS(2418), + [anon_sym_PIPE_AMP] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_GT] = ACTIONS(2418), + [anon_sym_GT_GT] = ACTIONS(2418), + [anon_sym_AMP_GT] = ACTIONS(2418), + [anon_sym_AMP_GT_GT] = ACTIONS(2418), + [anon_sym_LT_AMP] = ACTIONS(2418), + [anon_sym_GT_AMP] = ACTIONS(2418), + [anon_sym_LT_LT] = ACTIONS(2418), + [anon_sym_LT_LT_DASH] = ACTIONS(2418), + [anon_sym_LT_LT_LT] = ACTIONS(2418), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LF] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + }, + [3767] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(4097), + [anon_sym_DQUOTE] = ACTIONS(8175), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, [3768] = { + [sym_string] = STATE(4099), + [anon_sym_DQUOTE] = ACTIONS(7538), + [anon_sym_DOLLAR] = ACTIONS(8177), + [sym_raw_string] = ACTIONS(8179), + [anon_sym_POUND] = ACTIONS(8177), + [anon_sym_DASH] = ACTIONS(8177), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8181), + [anon_sym_STAR] = ACTIONS(8177), + [anon_sym_AT] = ACTIONS(8177), + [anon_sym_QMARK] = ACTIONS(8177), + [anon_sym_0] = ACTIONS(8183), + [anon_sym__] = ACTIONS(8183), + }, + [3769] = { + [aux_sym_concatenation_repeat1] = STATE(4095), + [sym_file_descriptor] = ACTIONS(772), + [sym__concat] = ACTIONS(8173), + [anon_sym_esac] = ACTIONS(2430), + [anon_sym_PIPE] = ACTIONS(2430), + [anon_sym_SEMI_SEMI] = ACTIONS(2430), + [anon_sym_PIPE_AMP] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_PIPE_PIPE] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_GT] = ACTIONS(2430), + [anon_sym_GT_GT] = ACTIONS(2430), + [anon_sym_AMP_GT] = ACTIONS(2430), + [anon_sym_AMP_GT_GT] = ACTIONS(2430), + [anon_sym_LT_AMP] = ACTIONS(2430), + [anon_sym_GT_AMP] = ACTIONS(2430), + [anon_sym_LT_LT] = ACTIONS(2430), + [anon_sym_LT_LT_DASH] = ACTIONS(2430), + [anon_sym_LT_LT_LT] = ACTIONS(2430), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_LF] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + }, + [3770] = { + [sym_subscript] = STATE(4105), + [sym_variable_name] = ACTIONS(8185), + [anon_sym_DOLLAR] = ACTIONS(8187), + [anon_sym_POUND] = ACTIONS(8189), + [anon_sym_DASH] = ACTIONS(8187), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8191), + [anon_sym_STAR] = ACTIONS(8187), + [anon_sym_AT] = ACTIONS(8187), + [anon_sym_QMARK] = ACTIONS(8187), + [anon_sym_0] = ACTIONS(8193), + [anon_sym__] = ACTIONS(8193), + }, + [3771] = { [sym_for_statement] = STATE(4106), [sym_while_statement] = STATE(4106), [sym_if_statement] = STATE(4106), @@ -94126,9848 +94057,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [3769] = { - [aux_sym_concatenation_repeat1] = STATE(4091), - [sym_file_descriptor] = ACTIONS(2452), - [sym__concat] = ACTIONS(8163), - [anon_sym_esac] = ACTIONS(2454), - [anon_sym_PIPE] = ACTIONS(2454), - [anon_sym_SEMI_SEMI] = ACTIONS(2454), - [anon_sym_PIPE_AMP] = ACTIONS(2454), - [anon_sym_AMP_AMP] = ACTIONS(2454), - [anon_sym_PIPE_PIPE] = ACTIONS(2454), - [anon_sym_LT] = ACTIONS(2454), - [anon_sym_GT] = ACTIONS(2454), - [anon_sym_GT_GT] = ACTIONS(2454), - [anon_sym_AMP_GT] = ACTIONS(2454), - [anon_sym_AMP_GT_GT] = ACTIONS(2454), - [anon_sym_LT_AMP] = ACTIONS(2454), - [anon_sym_GT_AMP] = ACTIONS(2454), - [anon_sym_LT_LT] = ACTIONS(2454), - [anon_sym_LT_LT_DASH] = ACTIONS(2454), - [anon_sym_LT_LT_LT] = ACTIONS(2454), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2454), - [anon_sym_LF] = ACTIONS(2454), - [anon_sym_AMP] = ACTIONS(2454), - }, - [3770] = { - [aux_sym_concatenation_repeat1] = STATE(4091), - [sym_file_descriptor] = ACTIONS(2456), - [sym__concat] = ACTIONS(8163), - [anon_sym_esac] = ACTIONS(2458), - [anon_sym_PIPE] = ACTIONS(2458), - [anon_sym_SEMI_SEMI] = ACTIONS(2458), - [anon_sym_PIPE_AMP] = ACTIONS(2458), - [anon_sym_AMP_AMP] = ACTIONS(2458), - [anon_sym_PIPE_PIPE] = ACTIONS(2458), - [anon_sym_LT] = ACTIONS(2458), - [anon_sym_GT] = ACTIONS(2458), - [anon_sym_GT_GT] = ACTIONS(2458), - [anon_sym_AMP_GT] = ACTIONS(2458), - [anon_sym_AMP_GT_GT] = ACTIONS(2458), - [anon_sym_LT_AMP] = ACTIONS(2458), - [anon_sym_GT_AMP] = ACTIONS(2458), - [anon_sym_LT_LT] = ACTIONS(2458), - [anon_sym_LT_LT_DASH] = ACTIONS(2458), - [anon_sym_LT_LT_LT] = ACTIONS(2458), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2458), - [anon_sym_LF] = ACTIONS(2458), - [anon_sym_AMP] = ACTIONS(2458), - }, - [3771] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(3771), - [sym_file_descriptor] = ACTIONS(8185), - [anon_sym_esac] = ACTIONS(2463), - [anon_sym_PIPE] = ACTIONS(2463), - [anon_sym_SEMI_SEMI] = ACTIONS(2463), - [anon_sym_PIPE_AMP] = ACTIONS(2463), - [anon_sym_AMP_AMP] = ACTIONS(2463), - [anon_sym_PIPE_PIPE] = ACTIONS(2463), - [anon_sym_LT] = ACTIONS(8188), - [anon_sym_GT] = ACTIONS(8188), - [anon_sym_GT_GT] = ACTIONS(8188), - [anon_sym_AMP_GT] = ACTIONS(8188), - [anon_sym_AMP_GT_GT] = ACTIONS(8188), - [anon_sym_LT_AMP] = ACTIONS(8188), - [anon_sym_GT_AMP] = ACTIONS(8188), - [anon_sym_LT_LT] = ACTIONS(2468), - [anon_sym_LT_LT_DASH] = ACTIONS(2468), - [anon_sym_LT_LT_LT] = ACTIONS(8191), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_LF] = ACTIONS(2463), - [anon_sym_AMP] = ACTIONS(2463), - }, [3772] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(3771), - [sym_file_descriptor] = ACTIONS(6663), - [anon_sym_esac] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_SEMI_SEMI] = ACTIONS(2474), - [anon_sym_PIPE_AMP] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [anon_sym_LT] = ACTIONS(6667), - [anon_sym_GT] = ACTIONS(6667), - [anon_sym_GT_GT] = ACTIONS(6667), - [anon_sym_AMP_GT] = ACTIONS(6667), - [anon_sym_AMP_GT_GT] = ACTIONS(6667), - [anon_sym_LT_AMP] = ACTIONS(6667), - [anon_sym_GT_AMP] = ACTIONS(6667), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6669), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_LF] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), - }, - [3773] = { - [sym_concatenation] = STATE(3286), - [sym_string] = STATE(3285), - [sym_simple_expansion] = STATE(3285), - [sym_string_expansion] = STATE(3285), - [sym_expansion] = STATE(3285), - [sym_command_substitution] = STATE(3285), - [sym_process_substitution] = STATE(3285), - [aux_sym_command_repeat2] = STATE(3773), - [sym_file_descriptor] = ACTIONS(1559), - [anon_sym_esac] = ACTIONS(1561), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_SEMI_SEMI] = ACTIONS(1561), - [anon_sym_PIPE_AMP] = ACTIONS(1561), - [anon_sym_AMP_AMP] = ACTIONS(1561), - [anon_sym_PIPE_PIPE] = ACTIONS(1561), - [anon_sym_EQ_TILDE] = ACTIONS(8194), - [anon_sym_EQ_EQ] = ACTIONS(8194), - [anon_sym_LT] = ACTIONS(1561), - [anon_sym_GT] = ACTIONS(1561), - [anon_sym_GT_GT] = ACTIONS(1561), - [anon_sym_AMP_GT] = ACTIONS(1561), - [anon_sym_AMP_GT_GT] = ACTIONS(1561), - [anon_sym_LT_AMP] = ACTIONS(1561), - [anon_sym_GT_AMP] = ACTIONS(1561), - [anon_sym_LT_LT] = ACTIONS(1561), - [anon_sym_LT_LT_DASH] = ACTIONS(1561), - [anon_sym_LT_LT_LT] = ACTIONS(1561), - [sym__special_characters] = ACTIONS(8197), - [anon_sym_DQUOTE] = ACTIONS(8200), - [anon_sym_DOLLAR] = ACTIONS(8203), - [sym_raw_string] = ACTIONS(8206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8212), - [anon_sym_BQUOTE] = ACTIONS(8215), - [anon_sym_LT_LPAREN] = ACTIONS(8218), - [anon_sym_GT_LPAREN] = ACTIONS(8218), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(8206), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_LF] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1561), - }, - [3774] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_esac] = ACTIONS(8221), - [anon_sym_SEMI_SEMI] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(8223), - [anon_sym_DQUOTE] = ACTIONS(8225), - [anon_sym_DOLLAR] = ACTIONS(8227), - [sym_raw_string] = ACTIONS(8225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8225), - [anon_sym_BQUOTE] = ACTIONS(8225), - [anon_sym_LT_LPAREN] = ACTIONS(8225), - [anon_sym_GT_LPAREN] = ACTIONS(8225), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8223), - }, - [3775] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(6661), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6661), - [anon_sym_LF] = ACTIONS(6661), - [anon_sym_AMP] = ACTIONS(6661), - }, - [3776] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(6661), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(6661), - [anon_sym_LF] = ACTIONS(6661), - [anon_sym_AMP] = ACTIONS(6661), - }, - [3777] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [sym_concatenation] = STATE(3286), - [sym_string] = STATE(3285), - [sym_simple_expansion] = STATE(3285), - [sym_string_expansion] = STATE(3285), - [sym_expansion] = STATE(3285), - [sym_command_substitution] = STATE(3285), - [sym_process_substitution] = STATE(3285), - [aux_sym_while_statement_repeat1] = STATE(4108), - [aux_sym_command_repeat2] = STATE(3773), - [sym_file_descriptor] = ACTIONS(6663), - [anon_sym_esac] = ACTIONS(2474), - [anon_sym_PIPE] = ACTIONS(2474), - [anon_sym_SEMI_SEMI] = ACTIONS(2474), - [anon_sym_PIPE_AMP] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(2474), - [anon_sym_PIPE_PIPE] = ACTIONS(2474), - [anon_sym_EQ_TILDE] = ACTIONS(6665), - [anon_sym_EQ_EQ] = ACTIONS(6665), - [anon_sym_LT] = ACTIONS(6667), - [anon_sym_GT] = ACTIONS(6667), - [anon_sym_GT_GT] = ACTIONS(6667), - [anon_sym_AMP_GT] = ACTIONS(6667), - [anon_sym_AMP_GT_GT] = ACTIONS(6667), - [anon_sym_LT_AMP] = ACTIONS(6667), - [anon_sym_GT_AMP] = ACTIONS(6667), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6669), - [sym__special_characters] = ACTIONS(6671), - [anon_sym_DQUOTE] = ACTIONS(6673), - [anon_sym_DOLLAR] = ACTIONS(6675), - [sym_raw_string] = ACTIONS(6677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6679), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6681), - [anon_sym_BQUOTE] = ACTIONS(6683), - [anon_sym_LT_LPAREN] = ACTIONS(6685), - [anon_sym_GT_LPAREN] = ACTIONS(6685), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6677), - [anon_sym_SEMI] = ACTIONS(2474), - [anon_sym_LF] = ACTIONS(2474), - [anon_sym_AMP] = ACTIONS(2474), - }, - [3778] = { - [anon_sym_esac] = ACTIONS(8221), - [sym__special_characters] = ACTIONS(8227), - [anon_sym_DQUOTE] = ACTIONS(8225), - [anon_sym_DOLLAR] = ACTIONS(8227), - [sym_raw_string] = ACTIONS(8225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8225), - [anon_sym_BQUOTE] = ACTIONS(8225), - [anon_sym_LT_LPAREN] = ACTIONS(8225), - [anon_sym_GT_LPAREN] = ACTIONS(8225), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8223), - }, - [3779] = { - [anon_sym_esac] = ACTIONS(8229), - [anon_sym_PIPE] = ACTIONS(6655), - [anon_sym_SEMI_SEMI] = ACTIONS(8231), - [anon_sym_PIPE_AMP] = ACTIONS(6655), - [anon_sym_AMP_AMP] = ACTIONS(6659), - [anon_sym_PIPE_PIPE] = ACTIONS(6659), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6661), - [anon_sym_LF] = ACTIONS(6661), - [anon_sym_AMP] = ACTIONS(6661), - }, - [3780] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_esac] = ACTIONS(8229), - [anon_sym_PIPE] = ACTIONS(6655), - [anon_sym_SEMI_SEMI] = ACTIONS(8231), - [anon_sym_PIPE_AMP] = ACTIONS(6655), - [anon_sym_AMP_AMP] = ACTIONS(6659), - [anon_sym_PIPE_PIPE] = ACTIONS(6659), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(6661), - [anon_sym_LF] = ACTIONS(6661), - [anon_sym_AMP] = ACTIONS(6661), - }, - [3781] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_esac] = ACTIONS(8233), - [anon_sym_SEMI_SEMI] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(8235), - [anon_sym_DQUOTE] = ACTIONS(8237), - [anon_sym_DOLLAR] = ACTIONS(8239), - [sym_raw_string] = ACTIONS(8237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8237), - [anon_sym_BQUOTE] = ACTIONS(8237), - [anon_sym_LT_LPAREN] = ACTIONS(8237), - [anon_sym_GT_LPAREN] = ACTIONS(8237), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8235), - }, - [3782] = { - [anon_sym_esac] = ACTIONS(8233), - [sym__special_characters] = ACTIONS(8239), - [anon_sym_DQUOTE] = ACTIONS(8237), - [anon_sym_DOLLAR] = ACTIONS(8239), - [sym_raw_string] = ACTIONS(8237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8237), - [anon_sym_BQUOTE] = ACTIONS(8237), - [anon_sym_LT_LPAREN] = ACTIONS(8237), - [anon_sym_GT_LPAREN] = ACTIONS(8237), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8235), - }, - [3783] = { - [anon_sym_esac] = ACTIONS(8241), - [anon_sym_PIPE] = ACTIONS(6655), - [anon_sym_SEMI_SEMI] = ACTIONS(8243), - [anon_sym_PIPE_AMP] = ACTIONS(6655), - [anon_sym_AMP_AMP] = ACTIONS(6659), - [anon_sym_PIPE_PIPE] = ACTIONS(6659), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6661), - [anon_sym_LF] = ACTIONS(6661), - [anon_sym_AMP] = ACTIONS(6661), - }, - [3784] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_esac] = ACTIONS(8241), - [anon_sym_PIPE] = ACTIONS(6655), - [anon_sym_SEMI_SEMI] = ACTIONS(8243), - [anon_sym_PIPE_AMP] = ACTIONS(6655), - [anon_sym_AMP_AMP] = ACTIONS(6659), - [anon_sym_PIPE_PIPE] = ACTIONS(6659), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(6661), - [anon_sym_LF] = ACTIONS(6661), - [anon_sym_AMP] = ACTIONS(6661), - }, - [3785] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4790), - [anon_sym_RPAREN] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), - }, - [3786] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(4796), - [anon_sym_RPAREN] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), - }, - [3787] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(4859), - [anon_sym_RPAREN] = ACTIONS(4859), - [sym_comment] = ACTIONS(56), - }, - [3788] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8245), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3789] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8247), - [sym_comment] = ACTIONS(56), - }, - [3790] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8249), - [sym_comment] = ACTIONS(56), - }, - [3791] = { - [anon_sym_RBRACE] = ACTIONS(8249), - [sym_comment] = ACTIONS(56), - }, - [3792] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4115), - [anon_sym_RBRACE] = ACTIONS(8251), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3793] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4871), - [anon_sym_RPAREN] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - }, - [3794] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4117), - [anon_sym_RBRACE] = ACTIONS(8253), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3795] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(4877), - [anon_sym_RPAREN] = ACTIONS(4877), - [sym_comment] = ACTIONS(56), - }, - [3796] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4119), - [anon_sym_RBRACE] = ACTIONS(8255), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3797] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(4883), - [anon_sym_RPAREN] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - }, - [3798] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8257), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3799] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4889), - [anon_sym_RPAREN] = ACTIONS(4889), - [sym_comment] = ACTIONS(56), - }, - [3800] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8259), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3801] = { - [sym__special_characters] = ACTIONS(6583), - [anon_sym_DQUOTE] = ACTIONS(6585), - [anon_sym_DOLLAR] = ACTIONS(6583), - [sym_raw_string] = ACTIONS(6585), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6585), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6585), - [anon_sym_BQUOTE] = ACTIONS(6585), - [anon_sym_LT_LPAREN] = ACTIONS(6585), - [anon_sym_GT_LPAREN] = ACTIONS(6585), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6583), - }, - [3802] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8261), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [3803] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8261), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [3804] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(4124), - [sym_while_statement] = STATE(4124), - [sym_if_statement] = STATE(4124), - [sym_case_statement] = STATE(4124), - [sym_function_definition] = STATE(4124), - [sym_subshell] = STATE(4124), - [sym_pipeline] = STATE(4124), - [sym_list] = STATE(4124), - [sym_command] = STATE(4124), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(4124), - [sym_variable_assignment] = STATE(4125), - [sym_declaration_command] = STATE(4124), - [sym_unset_command] = STATE(4124), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(4126), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8263), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [3805] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(4124), - [sym_while_statement] = STATE(4124), - [sym_if_statement] = STATE(4124), - [sym_case_statement] = STATE(4124), - [sym_function_definition] = STATE(4124), - [sym_subshell] = STATE(4124), - [sym_pipeline] = STATE(4124), - [sym_list] = STATE(4124), - [sym_command] = STATE(4124), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(4124), - [sym_variable_assignment] = STATE(4125), - [sym_declaration_command] = STATE(4124), - [sym_unset_command] = STATE(4124), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(4127), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8263), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [3806] = { - [sym__special_characters] = ACTIONS(6701), - [anon_sym_DQUOTE] = ACTIONS(6703), - [anon_sym_DOLLAR] = ACTIONS(6701), - [sym_raw_string] = ACTIONS(6703), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6703), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6703), - [anon_sym_BQUOTE] = ACTIONS(6703), - [anon_sym_LT_LPAREN] = ACTIONS(6703), - [anon_sym_GT_LPAREN] = ACTIONS(6703), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6701), - }, - [3807] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8265), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [3808] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8265), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [3809] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(4130), - [sym_while_statement] = STATE(4130), - [sym_if_statement] = STATE(4130), - [sym_case_statement] = STATE(4130), - [sym_function_definition] = STATE(4130), - [sym_subshell] = STATE(4130), - [sym_pipeline] = STATE(4130), - [sym_list] = STATE(4130), - [sym_command] = STATE(4130), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(4130), - [sym_variable_assignment] = STATE(4131), - [sym_declaration_command] = STATE(4130), - [sym_unset_command] = STATE(4130), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(4126), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8267), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [3810] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(4130), - [sym_while_statement] = STATE(4130), - [sym_if_statement] = STATE(4130), - [sym_case_statement] = STATE(4130), - [sym_function_definition] = STATE(4130), - [sym_subshell] = STATE(4130), - [sym_pipeline] = STATE(4130), - [sym_list] = STATE(4130), - [sym_command] = STATE(4130), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(4130), - [sym_variable_assignment] = STATE(4131), - [sym_declaration_command] = STATE(4130), - [sym_unset_command] = STATE(4130), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(4132), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8267), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [3811] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - }, - [3812] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), - }, - [3813] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), - }, - [3814] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8269), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3815] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8271), - [sym_comment] = ACTIONS(56), - }, - [3816] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8273), - [sym_comment] = ACTIONS(56), - }, - [3817] = { - [anon_sym_RBRACE] = ACTIONS(8273), - [sym_comment] = ACTIONS(56), - }, - [3818] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4137), - [anon_sym_RBRACE] = ACTIONS(8275), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3819] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [3820] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4139), - [anon_sym_RBRACE] = ACTIONS(8277), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3821] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), - }, - [3822] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4141), - [anon_sym_RBRACE] = ACTIONS(8279), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3823] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(4885), - [anon_sym_SEMI_SEMI] = ACTIONS(4885), - [anon_sym_PIPE_AMP] = ACTIONS(4885), - [anon_sym_AMP_AMP] = ACTIONS(4885), - [anon_sym_PIPE_PIPE] = ACTIONS(4885), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [3824] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8281), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3825] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [3826] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8283), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3827] = { - [sym_file_descriptor] = ACTIONS(6025), - [sym__concat] = ACTIONS(6025), - [sym_variable_name] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6027), - [anon_sym_GT] = ACTIONS(6027), - [anon_sym_GT_GT] = ACTIONS(6027), - [anon_sym_AMP_GT] = ACTIONS(6027), - [anon_sym_AMP_GT_GT] = ACTIONS(6027), - [anon_sym_LT_AMP] = ACTIONS(6027), - [anon_sym_GT_AMP] = ACTIONS(6027), - [sym__special_characters] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6027), - [sym_raw_string] = ACTIONS(6027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), - [anon_sym_BQUOTE] = ACTIONS(6027), - [anon_sym_LT_LPAREN] = ACTIONS(6027), - [anon_sym_GT_LPAREN] = ACTIONS(6027), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6027), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), - }, - [3828] = { - [sym_file_descriptor] = ACTIONS(6029), - [sym__concat] = ACTIONS(6029), - [sym_variable_name] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6031), - [anon_sym_GT] = ACTIONS(6031), - [anon_sym_GT_GT] = ACTIONS(6031), - [anon_sym_AMP_GT] = ACTIONS(6031), - [anon_sym_AMP_GT_GT] = ACTIONS(6031), - [anon_sym_LT_AMP] = ACTIONS(6031), - [anon_sym_GT_AMP] = ACTIONS(6031), - [sym__special_characters] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6031), - [sym_raw_string] = ACTIONS(6031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), - [anon_sym_BQUOTE] = ACTIONS(6031), - [anon_sym_LT_LPAREN] = ACTIONS(6031), - [anon_sym_GT_LPAREN] = ACTIONS(6031), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6031), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), - }, - [3829] = { - [sym_file_descriptor] = ACTIONS(6033), - [sym__concat] = ACTIONS(6033), - [sym_variable_name] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_RPAREN] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6035), - [anon_sym_GT] = ACTIONS(6035), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_AMP_GT] = ACTIONS(6035), - [anon_sym_AMP_GT_GT] = ACTIONS(6035), - [anon_sym_LT_AMP] = ACTIONS(6035), - [anon_sym_GT_AMP] = ACTIONS(6035), - [sym__special_characters] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6035), - [sym_raw_string] = ACTIONS(6035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), - [anon_sym_BQUOTE] = ACTIONS(6035), - [anon_sym_LT_LPAREN] = ACTIONS(6035), - [anon_sym_GT_LPAREN] = ACTIONS(6035), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6035), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), - }, - [3830] = { - [sym_file_descriptor] = ACTIONS(6037), - [sym__concat] = ACTIONS(6037), - [sym_variable_name] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_RPAREN] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6039), - [anon_sym_GT] = ACTIONS(6039), - [anon_sym_GT_GT] = ACTIONS(6039), - [anon_sym_AMP_GT] = ACTIONS(6039), - [anon_sym_AMP_GT_GT] = ACTIONS(6039), - [anon_sym_LT_AMP] = ACTIONS(6039), - [anon_sym_GT_AMP] = ACTIONS(6039), - [sym__special_characters] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6039), - [sym_raw_string] = ACTIONS(6039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), - [anon_sym_BQUOTE] = ACTIONS(6039), - [anon_sym_LT_LPAREN] = ACTIONS(6039), - [anon_sym_GT_LPAREN] = ACTIONS(6039), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6039), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), - }, - [3831] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8285), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3832] = { - [sym_file_descriptor] = ACTIONS(6043), - [sym__concat] = ACTIONS(6043), - [sym_variable_name] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_AMP_GT] = ACTIONS(6045), - [anon_sym_AMP_GT_GT] = ACTIONS(6045), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_AMP] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6045), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6045), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), - }, - [3833] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8287), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3834] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [sym_variable_name] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6051), - [anon_sym_GT] = ACTIONS(6051), - [anon_sym_GT_GT] = ACTIONS(6051), - [anon_sym_AMP_GT] = ACTIONS(6051), - [anon_sym_AMP_GT_GT] = ACTIONS(6051), - [anon_sym_LT_AMP] = ACTIONS(6051), - [anon_sym_GT_AMP] = ACTIONS(6051), - [sym__special_characters] = ACTIONS(6051), - [anon_sym_DQUOTE] = ACTIONS(6051), - [anon_sym_DOLLAR] = ACTIONS(6051), - [sym_raw_string] = ACTIONS(6051), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), - [anon_sym_BQUOTE] = ACTIONS(6051), - [anon_sym_LT_LPAREN] = ACTIONS(6051), - [anon_sym_GT_LPAREN] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6051), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [3835] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8289), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3836] = { - [sym_file_descriptor] = ACTIONS(6055), - [sym__concat] = ACTIONS(6055), - [sym_variable_name] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_RPAREN] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_GT_GT] = ACTIONS(6057), - [anon_sym_AMP_GT] = ACTIONS(6057), - [anon_sym_AMP_GT_GT] = ACTIONS(6057), - [anon_sym_LT_AMP] = ACTIONS(6057), - [anon_sym_GT_AMP] = ACTIONS(6057), - [sym__special_characters] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(6057), - [anon_sym_DOLLAR] = ACTIONS(6057), - [sym_raw_string] = ACTIONS(6057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), - [anon_sym_BQUOTE] = ACTIONS(6057), - [anon_sym_LT_LPAREN] = ACTIONS(6057), - [anon_sym_GT_LPAREN] = ACTIONS(6057), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6057), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), - }, - [3837] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [sym_variable_name] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_RPAREN] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [anon_sym_LT] = ACTIONS(6061), - [anon_sym_GT] = ACTIONS(6061), - [anon_sym_GT_GT] = ACTIONS(6061), - [anon_sym_AMP_GT] = ACTIONS(6061), - [anon_sym_AMP_GT_GT] = ACTIONS(6061), - [anon_sym_LT_AMP] = ACTIONS(6061), - [anon_sym_GT_AMP] = ACTIONS(6061), - [sym__special_characters] = ACTIONS(6061), - [anon_sym_DQUOTE] = ACTIONS(6061), - [anon_sym_DOLLAR] = ACTIONS(6061), - [sym_raw_string] = ACTIONS(6061), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), - [anon_sym_BQUOTE] = ACTIONS(6061), - [anon_sym_LT_LPAREN] = ACTIONS(6061), - [anon_sym_GT_LPAREN] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6061), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [3838] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_RPAREN] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - }, - [3839] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8291), - [sym_comment] = ACTIONS(56), - }, - [3840] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8293), - [sym_comment] = ACTIONS(56), - }, - [3841] = { - [anon_sym_RBRACE] = ACTIONS(8293), - [sym_comment] = ACTIONS(56), - }, - [3842] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4150), - [anon_sym_RBRACE] = ACTIONS(8295), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3843] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_RPAREN] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - }, - [3844] = { - [sym_concatenation] = STATE(4153), - [sym_string] = STATE(4152), - [sym_simple_expansion] = STATE(4152), - [sym_string_expansion] = STATE(4152), - [sym_expansion] = STATE(4152), - [sym_command_substitution] = STATE(4152), - [sym_process_substitution] = STATE(4152), - [anon_sym_RBRACE] = ACTIONS(8293), - [sym__special_characters] = ACTIONS(8297), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(8299), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8301), - }, - [3845] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_RPAREN] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), - }, - [3846] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8303), - }, - [3847] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8305), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3848] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_RPAREN] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), - }, - [3849] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8307), - }, - [3850] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8309), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3851] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8311), - }, - [3852] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8293), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3853] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4160), - [anon_sym_RBRACE] = ACTIONS(8313), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3854] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_RPAREN] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), - }, - [3855] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4162), - [anon_sym_RBRACE] = ACTIONS(8315), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3856] = { - [sym__concat] = ACTIONS(7018), - [sym_variable_name] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_RPAREN] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [sym__special_characters] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7020), - [anon_sym_DOLLAR] = ACTIONS(7020), - [sym_raw_string] = ACTIONS(7020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), - [anon_sym_BQUOTE] = ACTIONS(7020), - [anon_sym_LT_LPAREN] = ACTIONS(7020), - [anon_sym_GT_LPAREN] = ACTIONS(7020), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7020), - [sym_word] = ACTIONS(7020), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), - }, - [3857] = { - [sym__concat] = ACTIONS(7022), - [sym_variable_name] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_RPAREN] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), - [sym__special_characters] = ACTIONS(7024), - [anon_sym_DQUOTE] = ACTIONS(7024), - [anon_sym_DOLLAR] = ACTIONS(7024), - [sym_raw_string] = ACTIONS(7024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), - [anon_sym_BQUOTE] = ACTIONS(7024), - [anon_sym_LT_LPAREN] = ACTIONS(7024), - [anon_sym_GT_LPAREN] = ACTIONS(7024), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7024), - [sym_word] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), - }, - [3858] = { - [sym__concat] = ACTIONS(7026), - [sym_variable_name] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_RPAREN] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), - [sym__special_characters] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7028), - [anon_sym_DOLLAR] = ACTIONS(7028), - [sym_raw_string] = ACTIONS(7028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), - [anon_sym_BQUOTE] = ACTIONS(7028), - [anon_sym_LT_LPAREN] = ACTIONS(7028), - [anon_sym_GT_LPAREN] = ACTIONS(7028), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7028), - [sym_word] = ACTIONS(7028), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), - }, - [3859] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_RPAREN] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [sym__special_characters] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7020), - [anon_sym_DOLLAR] = ACTIONS(7020), - [sym_raw_string] = ACTIONS(7020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), - [anon_sym_BQUOTE] = ACTIONS(7020), - [anon_sym_LT_LPAREN] = ACTIONS(7020), - [anon_sym_GT_LPAREN] = ACTIONS(7020), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7020), - [sym_word] = ACTIONS(7020), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), - }, - [3860] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_RPAREN] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), - [sym__special_characters] = ACTIONS(7024), - [anon_sym_DQUOTE] = ACTIONS(7024), - [anon_sym_DOLLAR] = ACTIONS(7024), - [sym_raw_string] = ACTIONS(7024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), - [anon_sym_BQUOTE] = ACTIONS(7024), - [anon_sym_LT_LPAREN] = ACTIONS(7024), - [anon_sym_GT_LPAREN] = ACTIONS(7024), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7024), - [sym_word] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), - }, - [3861] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_RPAREN] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), - [sym__special_characters] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7028), - [anon_sym_DOLLAR] = ACTIONS(7028), - [sym_raw_string] = ACTIONS(7028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), - [anon_sym_BQUOTE] = ACTIONS(7028), - [anon_sym_LT_LPAREN] = ACTIONS(7028), - [anon_sym_GT_LPAREN] = ACTIONS(7028), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7028), - [sym_word] = ACTIONS(7028), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), - }, - [3862] = { - [sym_file_descriptor] = ACTIONS(6025), - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6027), - [anon_sym_GT] = ACTIONS(6027), - [anon_sym_GT_GT] = ACTIONS(6027), - [anon_sym_AMP_GT] = ACTIONS(6027), - [anon_sym_AMP_GT_GT] = ACTIONS(6027), - [anon_sym_LT_AMP] = ACTIONS(6027), - [anon_sym_GT_AMP] = ACTIONS(6027), - [anon_sym_LT_LT] = ACTIONS(6027), - [anon_sym_LT_LT_DASH] = ACTIONS(6027), - [anon_sym_LT_LT_LT] = ACTIONS(6027), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), - }, - [3863] = { - [sym_file_descriptor] = ACTIONS(6029), - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6031), - [anon_sym_GT] = ACTIONS(6031), - [anon_sym_GT_GT] = ACTIONS(6031), - [anon_sym_AMP_GT] = ACTIONS(6031), - [anon_sym_AMP_GT_GT] = ACTIONS(6031), - [anon_sym_LT_AMP] = ACTIONS(6031), - [anon_sym_GT_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6031), - [anon_sym_LT_LT_DASH] = ACTIONS(6031), - [anon_sym_LT_LT_LT] = ACTIONS(6031), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), - }, - [3864] = { - [sym_file_descriptor] = ACTIONS(6033), - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_RPAREN] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6035), - [anon_sym_GT] = ACTIONS(6035), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_AMP_GT] = ACTIONS(6035), - [anon_sym_AMP_GT_GT] = ACTIONS(6035), - [anon_sym_LT_AMP] = ACTIONS(6035), - [anon_sym_GT_AMP] = ACTIONS(6035), - [anon_sym_LT_LT] = ACTIONS(6035), - [anon_sym_LT_LT_DASH] = ACTIONS(6035), - [anon_sym_LT_LT_LT] = ACTIONS(6035), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), - }, - [3865] = { - [sym_file_descriptor] = ACTIONS(6037), - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_RPAREN] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6039), - [anon_sym_GT] = ACTIONS(6039), - [anon_sym_GT_GT] = ACTIONS(6039), - [anon_sym_AMP_GT] = ACTIONS(6039), - [anon_sym_AMP_GT_GT] = ACTIONS(6039), - [anon_sym_LT_AMP] = ACTIONS(6039), - [anon_sym_GT_AMP] = ACTIONS(6039), - [anon_sym_LT_LT] = ACTIONS(6039), - [anon_sym_LT_LT_DASH] = ACTIONS(6039), - [anon_sym_LT_LT_LT] = ACTIONS(6039), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), - }, - [3866] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8317), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3867] = { - [sym_file_descriptor] = ACTIONS(6043), - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_AMP_GT] = ACTIONS(6045), - [anon_sym_AMP_GT_GT] = ACTIONS(6045), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_AMP] = ACTIONS(6045), - [anon_sym_LT_LT] = ACTIONS(6045), - [anon_sym_LT_LT_DASH] = ACTIONS(6045), - [anon_sym_LT_LT_LT] = ACTIONS(6045), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), - }, - [3868] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8319), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3869] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_RPAREN] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [anon_sym_LT] = ACTIONS(6051), - [anon_sym_GT] = ACTIONS(6051), - [anon_sym_GT_GT] = ACTIONS(6051), - [anon_sym_AMP_GT] = ACTIONS(6051), - [anon_sym_AMP_GT_GT] = ACTIONS(6051), - [anon_sym_LT_AMP] = ACTIONS(6051), - [anon_sym_GT_AMP] = ACTIONS(6051), - [anon_sym_LT_LT] = ACTIONS(6051), - [anon_sym_LT_LT_DASH] = ACTIONS(6051), - [anon_sym_LT_LT_LT] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [3870] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8321), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3871] = { - [sym_file_descriptor] = ACTIONS(6055), - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_RPAREN] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_GT_GT] = ACTIONS(6057), - [anon_sym_AMP_GT] = ACTIONS(6057), - [anon_sym_AMP_GT_GT] = ACTIONS(6057), - [anon_sym_LT_AMP] = ACTIONS(6057), - [anon_sym_GT_AMP] = ACTIONS(6057), - [anon_sym_LT_LT] = ACTIONS(6057), - [anon_sym_LT_LT_DASH] = ACTIONS(6057), - [anon_sym_LT_LT_LT] = ACTIONS(6057), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), - }, - [3872] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_RPAREN] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [anon_sym_LT] = ACTIONS(6061), - [anon_sym_GT] = ACTIONS(6061), - [anon_sym_GT_GT] = ACTIONS(6061), - [anon_sym_AMP_GT] = ACTIONS(6061), - [anon_sym_AMP_GT_GT] = ACTIONS(6061), - [anon_sym_LT_AMP] = ACTIONS(6061), - [anon_sym_GT_AMP] = ACTIONS(6061), - [anon_sym_LT_LT] = ACTIONS(6061), - [anon_sym_LT_LT_DASH] = ACTIONS(6061), - [anon_sym_LT_LT_LT] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [3873] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_RBRACE] = ACTIONS(6025), - [sym_comment] = ACTIONS(56), - }, - [3874] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_RBRACE] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), - }, - [3875] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_RBRACE] = ACTIONS(6033), - [sym_comment] = ACTIONS(56), - }, - [3876] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_RBRACE] = ACTIONS(6037), - [sym_comment] = ACTIONS(56), - }, - [3877] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8323), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3878] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_RBRACE] = ACTIONS(6043), - [sym_comment] = ACTIONS(56), - }, - [3879] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8325), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3880] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_RBRACE] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - }, - [3881] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8327), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3882] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_RBRACE] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), - }, - [3883] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_RBRACE] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - }, - [3884] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_RBRACE] = ACTIONS(7018), - [anon_sym_EQ] = ACTIONS(7709), - [sym__special_characters] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7018), - [anon_sym_DOLLAR] = ACTIONS(7709), - [sym_raw_string] = ACTIONS(7018), - [anon_sym_POUND] = ACTIONS(7018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), - [anon_sym_COLON] = ACTIONS(7709), - [anon_sym_COLON_QMARK] = ACTIONS(7709), - [anon_sym_COLON_DASH] = ACTIONS(7709), - [anon_sym_PERCENT] = ACTIONS(7709), - [anon_sym_DASH] = ACTIONS(7709), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), - [anon_sym_BQUOTE] = ACTIONS(7018), - [anon_sym_LT_LPAREN] = ACTIONS(7018), - [anon_sym_GT_LPAREN] = ACTIONS(7018), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7020), - }, - [3885] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_RBRACE] = ACTIONS(7022), - [anon_sym_EQ] = ACTIONS(7711), - [sym__special_characters] = ACTIONS(7024), - [anon_sym_DQUOTE] = ACTIONS(7022), - [anon_sym_DOLLAR] = ACTIONS(7711), - [sym_raw_string] = ACTIONS(7022), - [anon_sym_POUND] = ACTIONS(7022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), - [anon_sym_COLON] = ACTIONS(7711), - [anon_sym_COLON_QMARK] = ACTIONS(7711), - [anon_sym_COLON_DASH] = ACTIONS(7711), - [anon_sym_PERCENT] = ACTIONS(7711), - [anon_sym_DASH] = ACTIONS(7711), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), - [anon_sym_BQUOTE] = ACTIONS(7022), - [anon_sym_LT_LPAREN] = ACTIONS(7022), - [anon_sym_GT_LPAREN] = ACTIONS(7022), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7024), - }, - [3886] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_RBRACE] = ACTIONS(7026), - [anon_sym_EQ] = ACTIONS(7713), - [sym__special_characters] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7026), - [anon_sym_DOLLAR] = ACTIONS(7713), - [sym_raw_string] = ACTIONS(7026), - [anon_sym_POUND] = ACTIONS(7026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), - [anon_sym_COLON] = ACTIONS(7713), - [anon_sym_COLON_QMARK] = ACTIONS(7713), - [anon_sym_COLON_DASH] = ACTIONS(7713), - [anon_sym_PERCENT] = ACTIONS(7713), - [anon_sym_DASH] = ACTIONS(7713), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), - [anon_sym_BQUOTE] = ACTIONS(7026), - [anon_sym_LT_LPAREN] = ACTIONS(7026), - [anon_sym_GT_LPAREN] = ACTIONS(7026), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7028), - }, - [3887] = { - [sym_file_descriptor] = ACTIONS(6025), - [sym__concat] = ACTIONS(6025), - [sym_variable_name] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6916), - [anon_sym_RPAREN] = ACTIONS(6025), - [anon_sym_PIPE_AMP] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [anon_sym_LT] = ACTIONS(6916), - [anon_sym_GT] = ACTIONS(6916), - [anon_sym_GT_GT] = ACTIONS(6025), - [anon_sym_AMP_GT] = ACTIONS(6916), - [anon_sym_AMP_GT_GT] = ACTIONS(6025), - [anon_sym_LT_AMP] = ACTIONS(6025), - [anon_sym_GT_AMP] = ACTIONS(6025), - [sym__special_characters] = ACTIONS(6916), - [anon_sym_DQUOTE] = ACTIONS(6025), - [anon_sym_DOLLAR] = ACTIONS(6916), - [sym_raw_string] = ACTIONS(6025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), - [anon_sym_BQUOTE] = ACTIONS(6025), - [anon_sym_LT_LPAREN] = ACTIONS(6025), - [anon_sym_GT_LPAREN] = ACTIONS(6025), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6916), - }, - [3888] = { - [sym_file_descriptor] = ACTIONS(6029), - [sym__concat] = ACTIONS(6029), - [sym_variable_name] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6918), - [anon_sym_RPAREN] = ACTIONS(6029), - [anon_sym_PIPE_AMP] = ACTIONS(6029), - [anon_sym_AMP_AMP] = ACTIONS(6029), - [anon_sym_PIPE_PIPE] = ACTIONS(6029), - [anon_sym_LT] = ACTIONS(6918), - [anon_sym_GT] = ACTIONS(6918), - [anon_sym_GT_GT] = ACTIONS(6029), - [anon_sym_AMP_GT] = ACTIONS(6918), - [anon_sym_AMP_GT_GT] = ACTIONS(6029), - [anon_sym_LT_AMP] = ACTIONS(6029), - [anon_sym_GT_AMP] = ACTIONS(6029), - [sym__special_characters] = ACTIONS(6918), - [anon_sym_DQUOTE] = ACTIONS(6029), - [anon_sym_DOLLAR] = ACTIONS(6918), - [sym_raw_string] = ACTIONS(6029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), - [anon_sym_BQUOTE] = ACTIONS(6029), - [anon_sym_LT_LPAREN] = ACTIONS(6029), - [anon_sym_GT_LPAREN] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6918), - }, - [3889] = { - [sym_file_descriptor] = ACTIONS(6033), - [sym__concat] = ACTIONS(6033), - [sym_variable_name] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6920), - [anon_sym_RPAREN] = ACTIONS(6033), - [anon_sym_PIPE_AMP] = ACTIONS(6033), - [anon_sym_AMP_AMP] = ACTIONS(6033), - [anon_sym_PIPE_PIPE] = ACTIONS(6033), - [anon_sym_LT] = ACTIONS(6920), - [anon_sym_GT] = ACTIONS(6920), - [anon_sym_GT_GT] = ACTIONS(6033), - [anon_sym_AMP_GT] = ACTIONS(6920), - [anon_sym_AMP_GT_GT] = ACTIONS(6033), - [anon_sym_LT_AMP] = ACTIONS(6033), - [anon_sym_GT_AMP] = ACTIONS(6033), - [sym__special_characters] = ACTIONS(6920), - [anon_sym_DQUOTE] = ACTIONS(6033), - [anon_sym_DOLLAR] = ACTIONS(6920), - [sym_raw_string] = ACTIONS(6033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), - [anon_sym_BQUOTE] = ACTIONS(6033), - [anon_sym_LT_LPAREN] = ACTIONS(6033), - [anon_sym_GT_LPAREN] = ACTIONS(6033), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6920), - }, - [3890] = { - [sym_file_descriptor] = ACTIONS(6037), - [sym__concat] = ACTIONS(6037), - [sym_variable_name] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6922), - [anon_sym_RPAREN] = ACTIONS(6037), - [anon_sym_PIPE_AMP] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(6037), - [anon_sym_PIPE_PIPE] = ACTIONS(6037), - [anon_sym_LT] = ACTIONS(6922), - [anon_sym_GT] = ACTIONS(6922), - [anon_sym_GT_GT] = ACTIONS(6037), - [anon_sym_AMP_GT] = ACTIONS(6922), - [anon_sym_AMP_GT_GT] = ACTIONS(6037), - [anon_sym_LT_AMP] = ACTIONS(6037), - [anon_sym_GT_AMP] = ACTIONS(6037), - [sym__special_characters] = ACTIONS(6922), - [anon_sym_DQUOTE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(6922), - [sym_raw_string] = ACTIONS(6037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), - [anon_sym_BQUOTE] = ACTIONS(6037), - [anon_sym_LT_LPAREN] = ACTIONS(6037), - [anon_sym_GT_LPAREN] = ACTIONS(6037), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6922), - }, - [3891] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8329), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3892] = { - [sym_file_descriptor] = ACTIONS(6043), - [sym__concat] = ACTIONS(6043), - [sym_variable_name] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6926), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6926), - [anon_sym_GT] = ACTIONS(6926), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_AMP_GT] = ACTIONS(6926), - [anon_sym_AMP_GT_GT] = ACTIONS(6043), - [anon_sym_LT_AMP] = ACTIONS(6043), - [anon_sym_GT_AMP] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6926), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6926), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6926), - }, - [3893] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8331), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3894] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [sym_variable_name] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_RPAREN] = ACTIONS(6049), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [anon_sym_LT] = ACTIONS(6930), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_GT_GT] = ACTIONS(6049), - [anon_sym_AMP_GT] = ACTIONS(6930), - [anon_sym_AMP_GT_GT] = ACTIONS(6049), - [anon_sym_LT_AMP] = ACTIONS(6049), - [anon_sym_GT_AMP] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6930), - [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6930), - [sym_raw_string] = ACTIONS(6049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [anon_sym_LT_LPAREN] = ACTIONS(6049), - [anon_sym_GT_LPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6930), - }, - [3895] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8333), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3896] = { - [sym_file_descriptor] = ACTIONS(6055), - [sym__concat] = ACTIONS(6055), - [sym_variable_name] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6934), - [anon_sym_GT] = ACTIONS(6934), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_AMP_GT] = ACTIONS(6934), - [anon_sym_AMP_GT_GT] = ACTIONS(6055), - [anon_sym_LT_AMP] = ACTIONS(6055), - [anon_sym_GT_AMP] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6934), - }, - [3897] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [sym_variable_name] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6936), - [anon_sym_GT] = ACTIONS(6936), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_AMP_GT] = ACTIONS(6936), - [anon_sym_AMP_GT_GT] = ACTIONS(6059), - [anon_sym_LT_AMP] = ACTIONS(6059), - [anon_sym_GT_AMP] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6936), - [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6936), - [sym_raw_string] = ACTIONS(6059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [anon_sym_LT_LPAREN] = ACTIONS(6059), - [anon_sym_GT_LPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6936), - }, - [3898] = { - [anon_sym_PIPE] = ACTIONS(6100), - [anon_sym_RPAREN] = ACTIONS(4295), - [anon_sym_PIPE_AMP] = ACTIONS(4295), - [anon_sym_AMP_AMP] = ACTIONS(4295), - [anon_sym_PIPE_PIPE] = ACTIONS(4295), - [anon_sym_BQUOTE] = ACTIONS(4295), - [sym_comment] = ACTIONS(56), - }, - [3899] = { - [anon_sym_PIPE] = ACTIONS(8335), - [anon_sym_RPAREN] = ACTIONS(8337), - [anon_sym_PIPE_AMP] = ACTIONS(8337), - [anon_sym_AMP_AMP] = ACTIONS(8337), - [anon_sym_PIPE_PIPE] = ACTIONS(8337), - [anon_sym_BQUOTE] = ACTIONS(8337), - [sym_comment] = ACTIONS(56), - }, - [3900] = { - [anon_sym_PIPE] = ACTIONS(8339), - [anon_sym_RPAREN] = ACTIONS(8341), - [anon_sym_PIPE_AMP] = ACTIONS(8341), - [anon_sym_AMP_AMP] = ACTIONS(8341), - [anon_sym_PIPE_PIPE] = ACTIONS(8341), - [anon_sym_BQUOTE] = ACTIONS(8341), - [sym_comment] = ACTIONS(56), - }, - [3901] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(4602), - [anon_sym_RPAREN] = ACTIONS(3283), - [anon_sym_PIPE_AMP] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - }, - [3902] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8343), - [sym_comment] = ACTIONS(56), - }, - [3903] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8345), - [sym_comment] = ACTIONS(56), - }, - [3904] = { - [anon_sym_RBRACE] = ACTIONS(8345), - [sym_comment] = ACTIONS(56), - }, - [3905] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4175), - [anon_sym_RBRACE] = ACTIONS(8347), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3906] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_RPAREN] = ACTIONS(3347), - [anon_sym_PIPE_AMP] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), - }, - [3907] = { - [sym_concatenation] = STATE(4178), - [sym_string] = STATE(4177), - [sym_simple_expansion] = STATE(4177), - [sym_string_expansion] = STATE(4177), - [sym_expansion] = STATE(4177), - [sym_command_substitution] = STATE(4177), - [sym_process_substitution] = STATE(4177), - [anon_sym_RBRACE] = ACTIONS(8345), - [sym__special_characters] = ACTIONS(8349), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(8351), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8353), - }, - [3908] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(4618), - [anon_sym_RPAREN] = ACTIONS(3392), - [anon_sym_PIPE_AMP] = ACTIONS(3392), - [anon_sym_AMP_AMP] = ACTIONS(3392), - [anon_sym_PIPE_PIPE] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), - }, - [3909] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8355), - }, - [3910] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8357), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3911] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(4624), - [anon_sym_RPAREN] = ACTIONS(3400), - [anon_sym_PIPE_AMP] = ACTIONS(3400), - [anon_sym_AMP_AMP] = ACTIONS(3400), - [anon_sym_PIPE_PIPE] = ACTIONS(3400), - [sym_comment] = ACTIONS(56), - }, - [3912] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8359), - }, - [3913] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8361), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3914] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8363), - }, - [3915] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8345), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3916] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4185), - [anon_sym_RBRACE] = ACTIONS(8365), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3917] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(4634), - [anon_sym_RPAREN] = ACTIONS(3412), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [sym_comment] = ACTIONS(56), - }, - [3918] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4187), - [anon_sym_RBRACE] = ACTIONS(8367), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3919] = { - [sym__concat] = ACTIONS(7018), - [sym_variable_name] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7709), - [anon_sym_RPAREN] = ACTIONS(7018), - [anon_sym_PIPE_AMP] = ACTIONS(7018), - [anon_sym_AMP_AMP] = ACTIONS(7018), - [anon_sym_PIPE_PIPE] = ACTIONS(7018), - [sym__special_characters] = ACTIONS(7709), - [anon_sym_DQUOTE] = ACTIONS(7018), - [anon_sym_DOLLAR] = ACTIONS(7709), - [sym_raw_string] = ACTIONS(7018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), - [anon_sym_BQUOTE] = ACTIONS(7018), - [anon_sym_LT_LPAREN] = ACTIONS(7018), - [anon_sym_GT_LPAREN] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7709), - [sym_word] = ACTIONS(7020), - }, - [3920] = { - [sym__concat] = ACTIONS(7022), - [sym_variable_name] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7711), - [anon_sym_RPAREN] = ACTIONS(7022), - [anon_sym_PIPE_AMP] = ACTIONS(7022), - [anon_sym_AMP_AMP] = ACTIONS(7022), - [anon_sym_PIPE_PIPE] = ACTIONS(7022), - [sym__special_characters] = ACTIONS(7711), - [anon_sym_DQUOTE] = ACTIONS(7022), - [anon_sym_DOLLAR] = ACTIONS(7711), - [sym_raw_string] = ACTIONS(7022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), - [anon_sym_BQUOTE] = ACTIONS(7022), - [anon_sym_LT_LPAREN] = ACTIONS(7022), - [anon_sym_GT_LPAREN] = ACTIONS(7022), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7711), - [sym_word] = ACTIONS(7024), - }, - [3921] = { - [sym__concat] = ACTIONS(7026), - [sym_variable_name] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_RPAREN] = ACTIONS(7026), - [anon_sym_PIPE_AMP] = ACTIONS(7026), - [anon_sym_AMP_AMP] = ACTIONS(7026), - [anon_sym_PIPE_PIPE] = ACTIONS(7026), - [sym__special_characters] = ACTIONS(7713), - [anon_sym_DQUOTE] = ACTIONS(7026), - [anon_sym_DOLLAR] = ACTIONS(7713), - [sym_raw_string] = ACTIONS(7026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), - [anon_sym_BQUOTE] = ACTIONS(7026), - [anon_sym_LT_LPAREN] = ACTIONS(7026), - [anon_sym_GT_LPAREN] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7713), - [sym_word] = ACTIONS(7028), - }, - [3922] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7709), - [anon_sym_RPAREN] = ACTIONS(7018), - [anon_sym_PIPE_AMP] = ACTIONS(7018), - [anon_sym_AMP_AMP] = ACTIONS(7018), - [anon_sym_PIPE_PIPE] = ACTIONS(7018), - [sym__special_characters] = ACTIONS(7709), - [anon_sym_DQUOTE] = ACTIONS(7018), - [anon_sym_DOLLAR] = ACTIONS(7709), - [sym_raw_string] = ACTIONS(7018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), - [anon_sym_BQUOTE] = ACTIONS(7018), - [anon_sym_LT_LPAREN] = ACTIONS(7018), - [anon_sym_GT_LPAREN] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7709), - [sym_word] = ACTIONS(7020), - }, - [3923] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7711), - [anon_sym_RPAREN] = ACTIONS(7022), - [anon_sym_PIPE_AMP] = ACTIONS(7022), - [anon_sym_AMP_AMP] = ACTIONS(7022), - [anon_sym_PIPE_PIPE] = ACTIONS(7022), - [sym__special_characters] = ACTIONS(7711), - [anon_sym_DQUOTE] = ACTIONS(7022), - [anon_sym_DOLLAR] = ACTIONS(7711), - [sym_raw_string] = ACTIONS(7022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), - [anon_sym_BQUOTE] = ACTIONS(7022), - [anon_sym_LT_LPAREN] = ACTIONS(7022), - [anon_sym_GT_LPAREN] = ACTIONS(7022), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7711), - [sym_word] = ACTIONS(7024), - }, - [3924] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_RPAREN] = ACTIONS(7026), - [anon_sym_PIPE_AMP] = ACTIONS(7026), - [anon_sym_AMP_AMP] = ACTIONS(7026), - [anon_sym_PIPE_PIPE] = ACTIONS(7026), - [sym__special_characters] = ACTIONS(7713), - [anon_sym_DQUOTE] = ACTIONS(7026), - [anon_sym_DOLLAR] = ACTIONS(7713), - [sym_raw_string] = ACTIONS(7026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), - [anon_sym_BQUOTE] = ACTIONS(7026), - [anon_sym_LT_LPAREN] = ACTIONS(7026), - [anon_sym_GT_LPAREN] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7713), - [sym_word] = ACTIONS(7028), - }, - [3925] = { - [sym_file_descriptor] = ACTIONS(6025), - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6916), - [anon_sym_RPAREN] = ACTIONS(6025), - [anon_sym_PIPE_AMP] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [anon_sym_LT] = ACTIONS(6916), - [anon_sym_GT] = ACTIONS(6916), - [anon_sym_GT_GT] = ACTIONS(6025), - [anon_sym_AMP_GT] = ACTIONS(6916), - [anon_sym_AMP_GT_GT] = ACTIONS(6025), - [anon_sym_LT_AMP] = ACTIONS(6025), - [anon_sym_GT_AMP] = ACTIONS(6025), - [anon_sym_LT_LT] = ACTIONS(6916), - [anon_sym_LT_LT_DASH] = ACTIONS(6025), - [anon_sym_LT_LT_LT] = ACTIONS(6025), - [sym_comment] = ACTIONS(56), - }, - [3926] = { - [sym_file_descriptor] = ACTIONS(6029), - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6918), - [anon_sym_RPAREN] = ACTIONS(6029), - [anon_sym_PIPE_AMP] = ACTIONS(6029), - [anon_sym_AMP_AMP] = ACTIONS(6029), - [anon_sym_PIPE_PIPE] = ACTIONS(6029), - [anon_sym_LT] = ACTIONS(6918), - [anon_sym_GT] = ACTIONS(6918), - [anon_sym_GT_GT] = ACTIONS(6029), - [anon_sym_AMP_GT] = ACTIONS(6918), - [anon_sym_AMP_GT_GT] = ACTIONS(6029), - [anon_sym_LT_AMP] = ACTIONS(6029), - [anon_sym_GT_AMP] = ACTIONS(6029), - [anon_sym_LT_LT] = ACTIONS(6918), - [anon_sym_LT_LT_DASH] = ACTIONS(6029), - [anon_sym_LT_LT_LT] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), - }, - [3927] = { - [sym_file_descriptor] = ACTIONS(6033), - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6920), - [anon_sym_RPAREN] = ACTIONS(6033), - [anon_sym_PIPE_AMP] = ACTIONS(6033), - [anon_sym_AMP_AMP] = ACTIONS(6033), - [anon_sym_PIPE_PIPE] = ACTIONS(6033), - [anon_sym_LT] = ACTIONS(6920), - [anon_sym_GT] = ACTIONS(6920), - [anon_sym_GT_GT] = ACTIONS(6033), - [anon_sym_AMP_GT] = ACTIONS(6920), - [anon_sym_AMP_GT_GT] = ACTIONS(6033), - [anon_sym_LT_AMP] = ACTIONS(6033), - [anon_sym_GT_AMP] = ACTIONS(6033), - [anon_sym_LT_LT] = ACTIONS(6920), - [anon_sym_LT_LT_DASH] = ACTIONS(6033), - [anon_sym_LT_LT_LT] = ACTIONS(6033), - [sym_comment] = ACTIONS(56), - }, - [3928] = { - [sym_file_descriptor] = ACTIONS(6037), - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6922), - [anon_sym_RPAREN] = ACTIONS(6037), - [anon_sym_PIPE_AMP] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(6037), - [anon_sym_PIPE_PIPE] = ACTIONS(6037), - [anon_sym_LT] = ACTIONS(6922), - [anon_sym_GT] = ACTIONS(6922), - [anon_sym_GT_GT] = ACTIONS(6037), - [anon_sym_AMP_GT] = ACTIONS(6922), - [anon_sym_AMP_GT_GT] = ACTIONS(6037), - [anon_sym_LT_AMP] = ACTIONS(6037), - [anon_sym_GT_AMP] = ACTIONS(6037), - [anon_sym_LT_LT] = ACTIONS(6922), - [anon_sym_LT_LT_DASH] = ACTIONS(6037), - [anon_sym_LT_LT_LT] = ACTIONS(6037), - [sym_comment] = ACTIONS(56), - }, - [3929] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8369), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3930] = { - [sym_file_descriptor] = ACTIONS(6043), - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6926), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6926), - [anon_sym_GT] = ACTIONS(6926), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_AMP_GT] = ACTIONS(6926), - [anon_sym_AMP_GT_GT] = ACTIONS(6043), - [anon_sym_LT_AMP] = ACTIONS(6043), - [anon_sym_GT_AMP] = ACTIONS(6043), - [anon_sym_LT_LT] = ACTIONS(6926), - [anon_sym_LT_LT_DASH] = ACTIONS(6043), - [anon_sym_LT_LT_LT] = ACTIONS(6043), - [sym_comment] = ACTIONS(56), - }, - [3931] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8371), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3932] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_RPAREN] = ACTIONS(6049), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [anon_sym_LT] = ACTIONS(6930), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_GT_GT] = ACTIONS(6049), - [anon_sym_AMP_GT] = ACTIONS(6930), - [anon_sym_AMP_GT_GT] = ACTIONS(6049), - [anon_sym_LT_AMP] = ACTIONS(6049), - [anon_sym_GT_AMP] = ACTIONS(6049), - [anon_sym_LT_LT] = ACTIONS(6930), - [anon_sym_LT_LT_DASH] = ACTIONS(6049), - [anon_sym_LT_LT_LT] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - }, - [3933] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8373), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3934] = { - [sym_file_descriptor] = ACTIONS(6055), - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6934), - [anon_sym_GT] = ACTIONS(6934), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_AMP_GT] = ACTIONS(6934), - [anon_sym_AMP_GT_GT] = ACTIONS(6055), - [anon_sym_LT_AMP] = ACTIONS(6055), - [anon_sym_GT_AMP] = ACTIONS(6055), - [anon_sym_LT_LT] = ACTIONS(6934), - [anon_sym_LT_LT_DASH] = ACTIONS(6055), - [anon_sym_LT_LT_LT] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), - }, - [3935] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_RPAREN] = ACTIONS(6059), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6936), - [anon_sym_GT] = ACTIONS(6936), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_AMP_GT] = ACTIONS(6936), - [anon_sym_AMP_GT_GT] = ACTIONS(6059), - [anon_sym_LT_AMP] = ACTIONS(6059), - [anon_sym_GT_AMP] = ACTIONS(6059), - [anon_sym_LT_LT] = ACTIONS(6936), - [anon_sym_LT_LT_DASH] = ACTIONS(6059), - [anon_sym_LT_LT_LT] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - }, - [3936] = { - [sym_file_descriptor] = ACTIONS(6025), - [sym__concat] = ACTIONS(6025), - [sym_variable_name] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6916), - [anon_sym_PIPE_AMP] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [anon_sym_LT] = ACTIONS(6916), - [anon_sym_GT] = ACTIONS(6916), - [anon_sym_GT_GT] = ACTIONS(6025), - [anon_sym_AMP_GT] = ACTIONS(6916), - [anon_sym_AMP_GT_GT] = ACTIONS(6025), - [anon_sym_LT_AMP] = ACTIONS(6025), - [anon_sym_GT_AMP] = ACTIONS(6025), - [sym__special_characters] = ACTIONS(6916), - [anon_sym_DQUOTE] = ACTIONS(6025), - [anon_sym_DOLLAR] = ACTIONS(6916), - [sym_raw_string] = ACTIONS(6025), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6025), - [anon_sym_BQUOTE] = ACTIONS(6025), - [anon_sym_LT_LPAREN] = ACTIONS(6025), - [anon_sym_GT_LPAREN] = ACTIONS(6025), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6916), - }, - [3937] = { - [sym_file_descriptor] = ACTIONS(6029), - [sym__concat] = ACTIONS(6029), - [sym_variable_name] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6918), - [anon_sym_PIPE_AMP] = ACTIONS(6029), - [anon_sym_AMP_AMP] = ACTIONS(6029), - [anon_sym_PIPE_PIPE] = ACTIONS(6029), - [anon_sym_LT] = ACTIONS(6918), - [anon_sym_GT] = ACTIONS(6918), - [anon_sym_GT_GT] = ACTIONS(6029), - [anon_sym_AMP_GT] = ACTIONS(6918), - [anon_sym_AMP_GT_GT] = ACTIONS(6029), - [anon_sym_LT_AMP] = ACTIONS(6029), - [anon_sym_GT_AMP] = ACTIONS(6029), - [sym__special_characters] = ACTIONS(6918), - [anon_sym_DQUOTE] = ACTIONS(6029), - [anon_sym_DOLLAR] = ACTIONS(6918), - [sym_raw_string] = ACTIONS(6029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6029), - [anon_sym_BQUOTE] = ACTIONS(6029), - [anon_sym_LT_LPAREN] = ACTIONS(6029), - [anon_sym_GT_LPAREN] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6918), - }, - [3938] = { - [sym_file_descriptor] = ACTIONS(6033), - [sym__concat] = ACTIONS(6033), - [sym_variable_name] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6920), - [anon_sym_PIPE_AMP] = ACTIONS(6033), - [anon_sym_AMP_AMP] = ACTIONS(6033), - [anon_sym_PIPE_PIPE] = ACTIONS(6033), - [anon_sym_LT] = ACTIONS(6920), - [anon_sym_GT] = ACTIONS(6920), - [anon_sym_GT_GT] = ACTIONS(6033), - [anon_sym_AMP_GT] = ACTIONS(6920), - [anon_sym_AMP_GT_GT] = ACTIONS(6033), - [anon_sym_LT_AMP] = ACTIONS(6033), - [anon_sym_GT_AMP] = ACTIONS(6033), - [sym__special_characters] = ACTIONS(6920), - [anon_sym_DQUOTE] = ACTIONS(6033), - [anon_sym_DOLLAR] = ACTIONS(6920), - [sym_raw_string] = ACTIONS(6033), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6033), - [anon_sym_BQUOTE] = ACTIONS(6033), - [anon_sym_LT_LPAREN] = ACTIONS(6033), - [anon_sym_GT_LPAREN] = ACTIONS(6033), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6920), - }, - [3939] = { - [sym_file_descriptor] = ACTIONS(6037), - [sym__concat] = ACTIONS(6037), - [sym_variable_name] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6922), - [anon_sym_PIPE_AMP] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(6037), - [anon_sym_PIPE_PIPE] = ACTIONS(6037), - [anon_sym_LT] = ACTIONS(6922), - [anon_sym_GT] = ACTIONS(6922), - [anon_sym_GT_GT] = ACTIONS(6037), - [anon_sym_AMP_GT] = ACTIONS(6922), - [anon_sym_AMP_GT_GT] = ACTIONS(6037), - [anon_sym_LT_AMP] = ACTIONS(6037), - [anon_sym_GT_AMP] = ACTIONS(6037), - [sym__special_characters] = ACTIONS(6922), - [anon_sym_DQUOTE] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(6922), - [sym_raw_string] = ACTIONS(6037), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6037), - [anon_sym_BQUOTE] = ACTIONS(6037), - [anon_sym_LT_LPAREN] = ACTIONS(6037), - [anon_sym_GT_LPAREN] = ACTIONS(6037), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6922), - }, - [3940] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8375), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3941] = { - [sym_file_descriptor] = ACTIONS(6043), - [sym__concat] = ACTIONS(6043), - [sym_variable_name] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6926), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6926), - [anon_sym_GT] = ACTIONS(6926), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_AMP_GT] = ACTIONS(6926), - [anon_sym_AMP_GT_GT] = ACTIONS(6043), - [anon_sym_LT_AMP] = ACTIONS(6043), - [anon_sym_GT_AMP] = ACTIONS(6043), - [sym__special_characters] = ACTIONS(6926), - [anon_sym_DQUOTE] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6926), - [sym_raw_string] = ACTIONS(6043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [anon_sym_LT_LPAREN] = ACTIONS(6043), - [anon_sym_GT_LPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6926), - }, - [3942] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8377), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3943] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [sym_variable_name] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [anon_sym_LT] = ACTIONS(6930), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_GT_GT] = ACTIONS(6049), - [anon_sym_AMP_GT] = ACTIONS(6930), - [anon_sym_AMP_GT_GT] = ACTIONS(6049), - [anon_sym_LT_AMP] = ACTIONS(6049), - [anon_sym_GT_AMP] = ACTIONS(6049), - [sym__special_characters] = ACTIONS(6930), - [anon_sym_DQUOTE] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6930), - [sym_raw_string] = ACTIONS(6049), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [anon_sym_LT_LPAREN] = ACTIONS(6049), - [anon_sym_GT_LPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6930), - }, - [3944] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8379), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3945] = { - [sym_file_descriptor] = ACTIONS(6055), - [sym__concat] = ACTIONS(6055), - [sym_variable_name] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6934), - [anon_sym_GT] = ACTIONS(6934), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_AMP_GT] = ACTIONS(6934), - [anon_sym_AMP_GT_GT] = ACTIONS(6055), - [anon_sym_LT_AMP] = ACTIONS(6055), - [anon_sym_GT_AMP] = ACTIONS(6055), - [sym__special_characters] = ACTIONS(6934), - [anon_sym_DQUOTE] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6934), - [sym_raw_string] = ACTIONS(6055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [anon_sym_LT_LPAREN] = ACTIONS(6055), - [anon_sym_GT_LPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6934), - }, - [3946] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [sym_variable_name] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6936), - [anon_sym_GT] = ACTIONS(6936), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_AMP_GT] = ACTIONS(6936), - [anon_sym_AMP_GT_GT] = ACTIONS(6059), - [anon_sym_LT_AMP] = ACTIONS(6059), - [anon_sym_GT_AMP] = ACTIONS(6059), - [sym__special_characters] = ACTIONS(6936), - [anon_sym_DQUOTE] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6936), - [sym_raw_string] = ACTIONS(6059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [anon_sym_LT_LPAREN] = ACTIONS(6059), - [anon_sym_GT_LPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(6936), - }, - [3947] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(4602), - [anon_sym_PIPE_AMP] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [anon_sym_BQUOTE] = ACTIONS(3283), - [sym_comment] = ACTIONS(56), - }, - [3948] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8381), - [sym_comment] = ACTIONS(56), - }, - [3949] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8383), - [sym_comment] = ACTIONS(56), - }, - [3950] = { - [anon_sym_RBRACE] = ACTIONS(8383), - [sym_comment] = ACTIONS(56), - }, - [3951] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4197), - [anon_sym_RBRACE] = ACTIONS(8385), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3952] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(4610), - [anon_sym_PIPE_AMP] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [anon_sym_BQUOTE] = ACTIONS(3347), - [sym_comment] = ACTIONS(56), - }, - [3953] = { - [sym_concatenation] = STATE(4200), - [sym_string] = STATE(4199), - [sym_simple_expansion] = STATE(4199), - [sym_string_expansion] = STATE(4199), - [sym_expansion] = STATE(4199), - [sym_command_substitution] = STATE(4199), - [sym_process_substitution] = STATE(4199), - [anon_sym_RBRACE] = ACTIONS(8383), - [sym__special_characters] = ACTIONS(8387), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(8389), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8391), - }, - [3954] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_PIPE] = ACTIONS(4618), - [anon_sym_PIPE_AMP] = ACTIONS(3392), - [anon_sym_AMP_AMP] = ACTIONS(3392), - [anon_sym_PIPE_PIPE] = ACTIONS(3392), - [anon_sym_BQUOTE] = ACTIONS(3392), - [sym_comment] = ACTIONS(56), - }, - [3955] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8393), - }, - [3956] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8395), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3957] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_PIPE] = ACTIONS(4624), - [anon_sym_PIPE_AMP] = ACTIONS(3400), - [anon_sym_AMP_AMP] = ACTIONS(3400), - [anon_sym_PIPE_PIPE] = ACTIONS(3400), - [anon_sym_BQUOTE] = ACTIONS(3400), - [sym_comment] = ACTIONS(56), - }, - [3958] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8397), - }, - [3959] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8399), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3960] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8401), - }, - [3961] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8383), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3962] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4207), - [anon_sym_RBRACE] = ACTIONS(8403), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3963] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_PIPE] = ACTIONS(4634), - [anon_sym_PIPE_AMP] = ACTIONS(3412), - [anon_sym_AMP_AMP] = ACTIONS(3412), - [anon_sym_PIPE_PIPE] = ACTIONS(3412), - [anon_sym_BQUOTE] = ACTIONS(3412), - [sym_comment] = ACTIONS(56), - }, - [3964] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4209), - [anon_sym_RBRACE] = ACTIONS(8405), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3965] = { - [sym__concat] = ACTIONS(7018), - [sym_variable_name] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7709), - [anon_sym_PIPE_AMP] = ACTIONS(7018), - [anon_sym_AMP_AMP] = ACTIONS(7018), - [anon_sym_PIPE_PIPE] = ACTIONS(7018), - [sym__special_characters] = ACTIONS(7709), - [anon_sym_DQUOTE] = ACTIONS(7018), - [anon_sym_DOLLAR] = ACTIONS(7709), - [sym_raw_string] = ACTIONS(7018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), - [anon_sym_BQUOTE] = ACTIONS(7018), - [anon_sym_LT_LPAREN] = ACTIONS(7018), - [anon_sym_GT_LPAREN] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7709), - [sym_word] = ACTIONS(7020), - }, - [3966] = { - [sym__concat] = ACTIONS(7022), - [sym_variable_name] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7711), - [anon_sym_PIPE_AMP] = ACTIONS(7022), - [anon_sym_AMP_AMP] = ACTIONS(7022), - [anon_sym_PIPE_PIPE] = ACTIONS(7022), - [sym__special_characters] = ACTIONS(7711), - [anon_sym_DQUOTE] = ACTIONS(7022), - [anon_sym_DOLLAR] = ACTIONS(7711), - [sym_raw_string] = ACTIONS(7022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), - [anon_sym_BQUOTE] = ACTIONS(7022), - [anon_sym_LT_LPAREN] = ACTIONS(7022), - [anon_sym_GT_LPAREN] = ACTIONS(7022), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7711), - [sym_word] = ACTIONS(7024), - }, - [3967] = { - [sym__concat] = ACTIONS(7026), - [sym_variable_name] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_PIPE_AMP] = ACTIONS(7026), - [anon_sym_AMP_AMP] = ACTIONS(7026), - [anon_sym_PIPE_PIPE] = ACTIONS(7026), - [sym__special_characters] = ACTIONS(7713), - [anon_sym_DQUOTE] = ACTIONS(7026), - [anon_sym_DOLLAR] = ACTIONS(7713), - [sym_raw_string] = ACTIONS(7026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), - [anon_sym_BQUOTE] = ACTIONS(7026), - [anon_sym_LT_LPAREN] = ACTIONS(7026), - [anon_sym_GT_LPAREN] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7713), - [sym_word] = ACTIONS(7028), - }, - [3968] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7709), - [anon_sym_PIPE_AMP] = ACTIONS(7018), - [anon_sym_AMP_AMP] = ACTIONS(7018), - [anon_sym_PIPE_PIPE] = ACTIONS(7018), - [sym__special_characters] = ACTIONS(7709), - [anon_sym_DQUOTE] = ACTIONS(7018), - [anon_sym_DOLLAR] = ACTIONS(7709), - [sym_raw_string] = ACTIONS(7018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), - [anon_sym_BQUOTE] = ACTIONS(7018), - [anon_sym_LT_LPAREN] = ACTIONS(7018), - [anon_sym_GT_LPAREN] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7709), - [sym_word] = ACTIONS(7020), - }, - [3969] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7711), - [anon_sym_PIPE_AMP] = ACTIONS(7022), - [anon_sym_AMP_AMP] = ACTIONS(7022), - [anon_sym_PIPE_PIPE] = ACTIONS(7022), - [sym__special_characters] = ACTIONS(7711), - [anon_sym_DQUOTE] = ACTIONS(7022), - [anon_sym_DOLLAR] = ACTIONS(7711), - [sym_raw_string] = ACTIONS(7022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), - [anon_sym_BQUOTE] = ACTIONS(7022), - [anon_sym_LT_LPAREN] = ACTIONS(7022), - [anon_sym_GT_LPAREN] = ACTIONS(7022), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7711), - [sym_word] = ACTIONS(7024), - }, - [3970] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_PIPE_AMP] = ACTIONS(7026), - [anon_sym_AMP_AMP] = ACTIONS(7026), - [anon_sym_PIPE_PIPE] = ACTIONS(7026), - [sym__special_characters] = ACTIONS(7713), - [anon_sym_DQUOTE] = ACTIONS(7026), - [anon_sym_DOLLAR] = ACTIONS(7713), - [sym_raw_string] = ACTIONS(7026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), - [anon_sym_BQUOTE] = ACTIONS(7026), - [anon_sym_LT_LPAREN] = ACTIONS(7026), - [anon_sym_GT_LPAREN] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7713), - [sym_word] = ACTIONS(7028), - }, - [3971] = { - [sym_file_descriptor] = ACTIONS(6025), - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6916), - [anon_sym_PIPE_AMP] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [anon_sym_LT] = ACTIONS(6916), - [anon_sym_GT] = ACTIONS(6916), - [anon_sym_GT_GT] = ACTIONS(6025), - [anon_sym_AMP_GT] = ACTIONS(6916), - [anon_sym_AMP_GT_GT] = ACTIONS(6025), - [anon_sym_LT_AMP] = ACTIONS(6025), - [anon_sym_GT_AMP] = ACTIONS(6025), - [anon_sym_LT_LT] = ACTIONS(6916), - [anon_sym_LT_LT_DASH] = ACTIONS(6025), - [anon_sym_LT_LT_LT] = ACTIONS(6025), - [anon_sym_BQUOTE] = ACTIONS(6025), - [sym_comment] = ACTIONS(56), - }, - [3972] = { - [sym_file_descriptor] = ACTIONS(6029), - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6918), - [anon_sym_PIPE_AMP] = ACTIONS(6029), - [anon_sym_AMP_AMP] = ACTIONS(6029), - [anon_sym_PIPE_PIPE] = ACTIONS(6029), - [anon_sym_LT] = ACTIONS(6918), - [anon_sym_GT] = ACTIONS(6918), - [anon_sym_GT_GT] = ACTIONS(6029), - [anon_sym_AMP_GT] = ACTIONS(6918), - [anon_sym_AMP_GT_GT] = ACTIONS(6029), - [anon_sym_LT_AMP] = ACTIONS(6029), - [anon_sym_GT_AMP] = ACTIONS(6029), - [anon_sym_LT_LT] = ACTIONS(6918), - [anon_sym_LT_LT_DASH] = ACTIONS(6029), - [anon_sym_LT_LT_LT] = ACTIONS(6029), - [anon_sym_BQUOTE] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), - }, - [3973] = { - [sym_file_descriptor] = ACTIONS(6033), - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6920), - [anon_sym_PIPE_AMP] = ACTIONS(6033), - [anon_sym_AMP_AMP] = ACTIONS(6033), - [anon_sym_PIPE_PIPE] = ACTIONS(6033), - [anon_sym_LT] = ACTIONS(6920), - [anon_sym_GT] = ACTIONS(6920), - [anon_sym_GT_GT] = ACTIONS(6033), - [anon_sym_AMP_GT] = ACTIONS(6920), - [anon_sym_AMP_GT_GT] = ACTIONS(6033), - [anon_sym_LT_AMP] = ACTIONS(6033), - [anon_sym_GT_AMP] = ACTIONS(6033), - [anon_sym_LT_LT] = ACTIONS(6920), - [anon_sym_LT_LT_DASH] = ACTIONS(6033), - [anon_sym_LT_LT_LT] = ACTIONS(6033), - [anon_sym_BQUOTE] = ACTIONS(6033), - [sym_comment] = ACTIONS(56), - }, - [3974] = { - [sym_file_descriptor] = ACTIONS(6037), - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6922), - [anon_sym_PIPE_AMP] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(6037), - [anon_sym_PIPE_PIPE] = ACTIONS(6037), - [anon_sym_LT] = ACTIONS(6922), - [anon_sym_GT] = ACTIONS(6922), - [anon_sym_GT_GT] = ACTIONS(6037), - [anon_sym_AMP_GT] = ACTIONS(6922), - [anon_sym_AMP_GT_GT] = ACTIONS(6037), - [anon_sym_LT_AMP] = ACTIONS(6037), - [anon_sym_GT_AMP] = ACTIONS(6037), - [anon_sym_LT_LT] = ACTIONS(6922), - [anon_sym_LT_LT_DASH] = ACTIONS(6037), - [anon_sym_LT_LT_LT] = ACTIONS(6037), - [anon_sym_BQUOTE] = ACTIONS(6037), - [sym_comment] = ACTIONS(56), - }, - [3975] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8407), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3976] = { - [sym_file_descriptor] = ACTIONS(6043), - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6926), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [anon_sym_LT] = ACTIONS(6926), - [anon_sym_GT] = ACTIONS(6926), - [anon_sym_GT_GT] = ACTIONS(6043), - [anon_sym_AMP_GT] = ACTIONS(6926), - [anon_sym_AMP_GT_GT] = ACTIONS(6043), - [anon_sym_LT_AMP] = ACTIONS(6043), - [anon_sym_GT_AMP] = ACTIONS(6043), - [anon_sym_LT_LT] = ACTIONS(6926), - [anon_sym_LT_LT_DASH] = ACTIONS(6043), - [anon_sym_LT_LT_LT] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), - [sym_comment] = ACTIONS(56), - }, - [3977] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8409), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3978] = { - [sym_file_descriptor] = ACTIONS(6049), - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6930), - [anon_sym_PIPE_AMP] = ACTIONS(6049), - [anon_sym_AMP_AMP] = ACTIONS(6049), - [anon_sym_PIPE_PIPE] = ACTIONS(6049), - [anon_sym_LT] = ACTIONS(6930), - [anon_sym_GT] = ACTIONS(6930), - [anon_sym_GT_GT] = ACTIONS(6049), - [anon_sym_AMP_GT] = ACTIONS(6930), - [anon_sym_AMP_GT_GT] = ACTIONS(6049), - [anon_sym_LT_AMP] = ACTIONS(6049), - [anon_sym_GT_AMP] = ACTIONS(6049), - [anon_sym_LT_LT] = ACTIONS(6930), - [anon_sym_LT_LT_DASH] = ACTIONS(6049), - [anon_sym_LT_LT_LT] = ACTIONS(6049), - [anon_sym_BQUOTE] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - }, - [3979] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8411), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3980] = { - [sym_file_descriptor] = ACTIONS(6055), - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [anon_sym_LT] = ACTIONS(6934), - [anon_sym_GT] = ACTIONS(6934), - [anon_sym_GT_GT] = ACTIONS(6055), - [anon_sym_AMP_GT] = ACTIONS(6934), - [anon_sym_AMP_GT_GT] = ACTIONS(6055), - [anon_sym_LT_AMP] = ACTIONS(6055), - [anon_sym_GT_AMP] = ACTIONS(6055), - [anon_sym_LT_LT] = ACTIONS(6934), - [anon_sym_LT_LT_DASH] = ACTIONS(6055), - [anon_sym_LT_LT_LT] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), - }, - [3981] = { - [sym_file_descriptor] = ACTIONS(6059), - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6936), - [anon_sym_PIPE_AMP] = ACTIONS(6059), - [anon_sym_AMP_AMP] = ACTIONS(6059), - [anon_sym_PIPE_PIPE] = ACTIONS(6059), - [anon_sym_LT] = ACTIONS(6936), - [anon_sym_GT] = ACTIONS(6936), - [anon_sym_GT_GT] = ACTIONS(6059), - [anon_sym_AMP_GT] = ACTIONS(6936), - [anon_sym_AMP_GT_GT] = ACTIONS(6059), - [anon_sym_LT_AMP] = ACTIONS(6059), - [anon_sym_GT_AMP] = ACTIONS(6059), - [anon_sym_LT_LT] = ACTIONS(6936), - [anon_sym_LT_LT_DASH] = ACTIONS(6059), - [anon_sym_LT_LT_LT] = ACTIONS(6059), - [anon_sym_BQUOTE] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - }, - [3982] = { - [sym_file_descriptor] = ACTIONS(7018), - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_GT] = ACTIONS(7020), - [anon_sym_AMP_GT] = ACTIONS(7020), - [anon_sym_AMP_GT_GT] = ACTIONS(7020), - [anon_sym_LT_AMP] = ACTIONS(7020), - [anon_sym_GT_AMP] = ACTIONS(7020), - [anon_sym_LT_LT] = ACTIONS(7020), - [anon_sym_LT_LT_DASH] = ACTIONS(7020), - [anon_sym_LT_LT_LT] = ACTIONS(7020), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), - }, - [3983] = { - [sym_file_descriptor] = ACTIONS(7022), - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), - [anon_sym_LT] = ACTIONS(7024), - [anon_sym_GT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_AMP_GT] = ACTIONS(7024), - [anon_sym_AMP_GT_GT] = ACTIONS(7024), - [anon_sym_LT_AMP] = ACTIONS(7024), - [anon_sym_GT_AMP] = ACTIONS(7024), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_LT_LT_DASH] = ACTIONS(7024), - [anon_sym_LT_LT_LT] = ACTIONS(7024), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), - }, - [3984] = { - [sym_file_descriptor] = ACTIONS(7026), - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), - [anon_sym_LT] = ACTIONS(7028), - [anon_sym_GT] = ACTIONS(7028), - [anon_sym_GT_GT] = ACTIONS(7028), - [anon_sym_AMP_GT] = ACTIONS(7028), - [anon_sym_AMP_GT_GT] = ACTIONS(7028), - [anon_sym_LT_AMP] = ACTIONS(7028), - [anon_sym_GT_AMP] = ACTIONS(7028), - [anon_sym_LT_LT] = ACTIONS(7028), - [anon_sym_LT_LT_DASH] = ACTIONS(7028), - [anon_sym_LT_LT_LT] = ACTIONS(7028), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), - }, - [3985] = { - [sym__heredoc_middle] = ACTIONS(6025), - [sym__heredoc_end] = ACTIONS(6025), - [anon_sym_DOLLAR] = ACTIONS(6916), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6025), - [sym_comment] = ACTIONS(56), - }, - [3986] = { - [sym__heredoc_middle] = ACTIONS(6029), - [sym__heredoc_end] = ACTIONS(6029), - [anon_sym_DOLLAR] = ACTIONS(6918), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), - }, - [3987] = { - [sym__heredoc_middle] = ACTIONS(6033), - [sym__heredoc_end] = ACTIONS(6033), - [anon_sym_DOLLAR] = ACTIONS(6920), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6033), - [sym_comment] = ACTIONS(56), - }, - [3988] = { - [sym__heredoc_middle] = ACTIONS(6037), - [sym__heredoc_end] = ACTIONS(6037), - [anon_sym_DOLLAR] = ACTIONS(6922), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6037), - [sym_comment] = ACTIONS(56), - }, - [3989] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8413), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3990] = { - [sym__heredoc_middle] = ACTIONS(6043), - [sym__heredoc_end] = ACTIONS(6043), - [anon_sym_DOLLAR] = ACTIONS(6926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), - [sym_comment] = ACTIONS(56), - }, - [3991] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8415), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3992] = { - [sym__heredoc_middle] = ACTIONS(6049), - [sym__heredoc_end] = ACTIONS(6049), - [anon_sym_DOLLAR] = ACTIONS(6930), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - }, - [3993] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8417), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [3994] = { - [sym__heredoc_middle] = ACTIONS(6055), - [sym__heredoc_end] = ACTIONS(6055), - [anon_sym_DOLLAR] = ACTIONS(6934), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), - }, - [3995] = { - [sym__heredoc_middle] = ACTIONS(6059), - [sym__heredoc_end] = ACTIONS(6059), - [anon_sym_DOLLAR] = ACTIONS(6936), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - }, - [3996] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_RPAREN] = ACTIONS(7018), - [sym__special_characters] = ACTIONS(7709), - [anon_sym_DQUOTE] = ACTIONS(7018), - [anon_sym_DOLLAR] = ACTIONS(7709), - [sym_raw_string] = ACTIONS(7018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), - [anon_sym_BQUOTE] = ACTIONS(7018), - [anon_sym_LT_LPAREN] = ACTIONS(7018), - [anon_sym_GT_LPAREN] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7709), - }, - [3997] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_RPAREN] = ACTIONS(7022), - [sym__special_characters] = ACTIONS(7711), - [anon_sym_DQUOTE] = ACTIONS(7022), - [anon_sym_DOLLAR] = ACTIONS(7711), - [sym_raw_string] = ACTIONS(7022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), - [anon_sym_BQUOTE] = ACTIONS(7022), - [anon_sym_LT_LPAREN] = ACTIONS(7022), - [anon_sym_GT_LPAREN] = ACTIONS(7022), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7711), - }, - [3998] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_RPAREN] = ACTIONS(7026), - [sym__special_characters] = ACTIONS(7713), - [anon_sym_DQUOTE] = ACTIONS(7026), - [anon_sym_DOLLAR] = ACTIONS(7713), - [sym_raw_string] = ACTIONS(7026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), - [anon_sym_BQUOTE] = ACTIONS(7026), - [anon_sym_LT_LPAREN] = ACTIONS(7026), - [anon_sym_GT_LPAREN] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7713), - }, - [3999] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [sym__special_characters] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7020), - [anon_sym_DOLLAR] = ACTIONS(7020), - [sym_raw_string] = ACTIONS(7020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), - [anon_sym_BQUOTE] = ACTIONS(7020), - [anon_sym_LT_LPAREN] = ACTIONS(7020), - [anon_sym_GT_LPAREN] = ACTIONS(7020), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7020), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), - }, - [4000] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [sym__special_characters] = ACTIONS(7024), - [anon_sym_DQUOTE] = ACTIONS(7024), - [anon_sym_DOLLAR] = ACTIONS(7024), - [sym_raw_string] = ACTIONS(7024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), - [anon_sym_BQUOTE] = ACTIONS(7024), - [anon_sym_LT_LPAREN] = ACTIONS(7024), - [anon_sym_GT_LPAREN] = ACTIONS(7024), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), - }, - [4001] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [sym__special_characters] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7028), - [anon_sym_DOLLAR] = ACTIONS(7028), - [sym_raw_string] = ACTIONS(7028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), - [anon_sym_BQUOTE] = ACTIONS(7028), - [anon_sym_LT_LPAREN] = ACTIONS(7028), - [anon_sym_GT_LPAREN] = ACTIONS(7028), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7028), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), - }, - [4002] = { - [sym_file_descriptor] = ACTIONS(2557), - [sym_variable_name] = ACTIONS(2557), - [anon_sym_esac] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2559), - [anon_sym_SEMI_SEMI] = ACTIONS(2559), - [anon_sym_PIPE_AMP] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [anon_sym_LT] = ACTIONS(2559), - [anon_sym_GT] = ACTIONS(2559), - [anon_sym_GT_GT] = ACTIONS(2559), - [anon_sym_AMP_GT] = ACTIONS(2559), - [anon_sym_AMP_GT_GT] = ACTIONS(2559), - [anon_sym_LT_AMP] = ACTIONS(2559), - [anon_sym_GT_AMP] = ACTIONS(2559), - [sym__special_characters] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2559), - [anon_sym_DOLLAR] = ACTIONS(2559), - [sym_raw_string] = ACTIONS(2559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2559), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2559), - [anon_sym_BQUOTE] = ACTIONS(2559), - [anon_sym_LT_LPAREN] = ACTIONS(2559), - [anon_sym_GT_LPAREN] = ACTIONS(2559), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_LF] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2559), - }, - [4003] = { - [sym_concatenation] = STATE(660), - [sym_string] = STATE(655), - [sym_simple_expansion] = STATE(655), - [sym_string_expansion] = STATE(655), - [sym_expansion] = STATE(655), - [sym_command_substitution] = STATE(655), - [sym_process_substitution] = STATE(655), - [aux_sym_for_statement_repeat1] = STATE(1269), - [anon_sym_RPAREN] = ACTIONS(8419), - [sym__special_characters] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1287), - [sym_raw_string] = ACTIONS(1289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LT_LPAREN] = ACTIONS(1297), - [anon_sym_GT_LPAREN] = ACTIONS(1297), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1299), - }, - [4004] = { - [sym_string] = STATE(4217), - [sym_simple_expansion] = STATE(4217), - [sym_string_expansion] = STATE(4217), - [sym_expansion] = STATE(4217), - [sym_command_substitution] = STATE(4217), - [sym_process_substitution] = STATE(4217), - [sym__special_characters] = ACTIONS(8421), - [anon_sym_DQUOTE] = ACTIONS(7402), - [anon_sym_DOLLAR] = ACTIONS(7404), - [sym_raw_string] = ACTIONS(8423), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7408), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7410), - [anon_sym_BQUOTE] = ACTIONS(7412), - [anon_sym_LT_LPAREN] = ACTIONS(7414), - [anon_sym_GT_LPAREN] = ACTIONS(7414), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8421), - }, - [4005] = { - [aux_sym_concatenation_repeat1] = STATE(4218), - [sym_file_descriptor] = ACTIONS(788), - [sym__concat] = ACTIONS(7945), - [sym_variable_name] = ACTIONS(788), - [anon_sym_esac] = ACTIONS(790), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(790), - [anon_sym_GT] = ACTIONS(790), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(790), - [anon_sym_AMP_GT_GT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(790), - [anon_sym_GT_AMP] = ACTIONS(790), - [sym__special_characters] = ACTIONS(790), - [anon_sym_DQUOTE] = ACTIONS(790), - [anon_sym_DOLLAR] = ACTIONS(790), - [sym_raw_string] = ACTIONS(790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(790), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(790), - [anon_sym_BQUOTE] = ACTIONS(790), - [anon_sym_LT_LPAREN] = ACTIONS(790), - [anon_sym_GT_LPAREN] = ACTIONS(790), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(790), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), - }, - [4006] = { - [sym_file_descriptor] = ACTIONS(792), - [sym__concat] = ACTIONS(792), - [sym_variable_name] = ACTIONS(792), - [anon_sym_esac] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(794), - [anon_sym_GT] = ACTIONS(794), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_AMP_GT] = ACTIONS(794), - [anon_sym_AMP_GT_GT] = ACTIONS(794), - [anon_sym_LT_AMP] = ACTIONS(794), - [anon_sym_GT_AMP] = ACTIONS(794), - [sym__special_characters] = ACTIONS(794), - [anon_sym_DQUOTE] = ACTIONS(794), - [anon_sym_DOLLAR] = ACTIONS(794), - [sym_raw_string] = ACTIONS(794), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(794), - [anon_sym_BQUOTE] = ACTIONS(794), - [anon_sym_LT_LPAREN] = ACTIONS(794), - [anon_sym_GT_LPAREN] = ACTIONS(794), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(794), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), - }, - [4007] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(8425), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [4008] = { - [sym_file_descriptor] = ACTIONS(824), - [sym__concat] = ACTIONS(824), - [sym_variable_name] = ACTIONS(824), - [anon_sym_esac] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_LT] = ACTIONS(826), - [anon_sym_GT] = ACTIONS(826), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_AMP_GT] = ACTIONS(826), - [anon_sym_AMP_GT_GT] = ACTIONS(826), - [anon_sym_LT_AMP] = ACTIONS(826), - [anon_sym_GT_AMP] = ACTIONS(826), - [sym__special_characters] = ACTIONS(826), - [anon_sym_DQUOTE] = ACTIONS(826), - [anon_sym_DOLLAR] = ACTIONS(826), - [sym_raw_string] = ACTIONS(826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(826), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(826), - [anon_sym_BQUOTE] = ACTIONS(826), - [anon_sym_LT_LPAREN] = ACTIONS(826), - [anon_sym_GT_LPAREN] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(826), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), - }, - [4009] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [sym_variable_name] = ACTIONS(828), - [anon_sym_esac] = ACTIONS(830), - [anon_sym_PIPE] = 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), - [anon_sym_LT] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(830), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_AMP_GT] = ACTIONS(830), - [anon_sym_AMP_GT_GT] = ACTIONS(830), - [anon_sym_LT_AMP] = ACTIONS(830), - [anon_sym_GT_AMP] = ACTIONS(830), - [sym__special_characters] = ACTIONS(830), - [anon_sym_DQUOTE] = ACTIONS(830), - [anon_sym_DOLLAR] = ACTIONS(830), - [sym_raw_string] = ACTIONS(830), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(830), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(830), - [anon_sym_BQUOTE] = ACTIONS(830), - [anon_sym_LT_LPAREN] = ACTIONS(830), - [anon_sym_GT_LPAREN] = ACTIONS(830), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(830), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), - }, - [4010] = { - [sym_file_descriptor] = ACTIONS(832), - [sym__concat] = ACTIONS(832), - [sym_variable_name] = ACTIONS(832), - [anon_sym_esac] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_AMP_GT] = ACTIONS(834), - [anon_sym_AMP_GT_GT] = ACTIONS(834), - [anon_sym_LT_AMP] = ACTIONS(834), - [anon_sym_GT_AMP] = ACTIONS(834), - [sym__special_characters] = ACTIONS(834), - [anon_sym_DQUOTE] = ACTIONS(834), - [anon_sym_DOLLAR] = ACTIONS(834), - [sym_raw_string] = ACTIONS(834), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(834), - [anon_sym_BQUOTE] = ACTIONS(834), - [anon_sym_LT_LPAREN] = ACTIONS(834), - [anon_sym_GT_LPAREN] = ACTIONS(834), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(834), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - }, - [4011] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(8427), - [sym_comment] = ACTIONS(56), - }, - [4012] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4223), - [anon_sym_RBRACE] = ACTIONS(8429), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8431), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4013] = { - [sym_subscript] = STATE(4227), - [sym_variable_name] = ACTIONS(8433), - [anon_sym_DOLLAR] = ACTIONS(8435), - [anon_sym_DASH] = ACTIONS(8435), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8437), - [anon_sym_STAR] = ACTIONS(8435), - [anon_sym_AT] = ACTIONS(8435), - [anon_sym_QMARK] = ACTIONS(8435), - [anon_sym_0] = ACTIONS(8439), - [anon_sym__] = ACTIONS(8439), - }, - [4014] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4230), - [anon_sym_RBRACE] = ACTIONS(8441), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8443), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4015] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4233), - [anon_sym_RBRACE] = ACTIONS(8445), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8447), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4016] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8449), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [4017] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8449), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [4018] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(8449), - [sym_comment] = ACTIONS(56), - }, - [4019] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(8449), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [4020] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8451), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [4021] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8451), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [4022] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(3771), - [sym_file_descriptor] = ACTIONS(6663), - [anon_sym_esac] = ACTIONS(2677), - [anon_sym_PIPE] = ACTIONS(2677), - [anon_sym_SEMI_SEMI] = ACTIONS(2677), - [anon_sym_PIPE_AMP] = ACTIONS(2677), - [anon_sym_AMP_AMP] = ACTIONS(2677), - [anon_sym_PIPE_PIPE] = ACTIONS(2677), - [anon_sym_LT] = ACTIONS(6667), - [anon_sym_GT] = ACTIONS(6667), - [anon_sym_GT_GT] = ACTIONS(6667), - [anon_sym_AMP_GT] = ACTIONS(6667), - [anon_sym_AMP_GT_GT] = ACTIONS(6667), - [anon_sym_LT_AMP] = ACTIONS(6667), - [anon_sym_GT_AMP] = ACTIONS(6667), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6669), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2677), - [anon_sym_LF] = ACTIONS(2677), - [anon_sym_AMP] = ACTIONS(2677), - }, - [4023] = { - [sym_compound_statement] = STATE(4236), - [anon_sym_LBRACE] = ACTIONS(484), - [sym_comment] = ACTIONS(56), - }, - [4024] = { - [anon_sym_LT] = ACTIONS(8453), - [anon_sym_GT] = ACTIONS(8453), - [anon_sym_GT_GT] = ACTIONS(8455), - [anon_sym_AMP_GT] = ACTIONS(8453), - [anon_sym_AMP_GT_GT] = ACTIONS(8455), - [anon_sym_LT_AMP] = ACTIONS(8455), - [anon_sym_GT_AMP] = ACTIONS(8455), - [sym_comment] = ACTIONS(56), - }, - [4025] = { - [sym_concatenation] = STATE(1372), - [sym_string] = STATE(4241), - [sym_simple_expansion] = STATE(4241), - [sym_string_expansion] = STATE(4241), - [sym_expansion] = STATE(4241), - [sym_command_substitution] = STATE(4241), - [sym_process_substitution] = STATE(4241), - [sym__special_characters] = ACTIONS(8457), - [anon_sym_DQUOTE] = ACTIONS(8459), - [anon_sym_DOLLAR] = ACTIONS(8461), - [sym_raw_string] = ACTIONS(8463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8467), - [anon_sym_BQUOTE] = ACTIONS(8469), - [anon_sym_LT_LPAREN] = ACTIONS(8471), - [anon_sym_GT_LPAREN] = ACTIONS(8471), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8473), - }, - [4026] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(3771), - [sym_file_descriptor] = ACTIONS(6663), - [anon_sym_esac] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_SEMI_SEMI] = ACTIONS(3103), - [anon_sym_PIPE_AMP] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_PIPE_PIPE] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(6667), - [anon_sym_GT] = ACTIONS(6667), - [anon_sym_GT_GT] = ACTIONS(6667), - [anon_sym_AMP_GT] = ACTIONS(6667), - [anon_sym_AMP_GT_GT] = ACTIONS(6667), - [anon_sym_LT_AMP] = ACTIONS(6667), - [anon_sym_GT_AMP] = ACTIONS(6667), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6669), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_LF] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - }, - [4027] = { - [sym_variable_name] = ACTIONS(1277), - [anon_sym_esac] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_SEMI_SEMI] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1279), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1279), - [sym_word] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_LF] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - }, - [4028] = { - [sym_concatenation] = STATE(660), - [sym_string] = STATE(655), - [sym_simple_expansion] = STATE(655), - [sym_string_expansion] = STATE(655), - [sym_expansion] = STATE(655), - [sym_command_substitution] = STATE(655), - [sym_process_substitution] = STATE(655), - [aux_sym_for_statement_repeat1] = STATE(4247), - [anon_sym_RPAREN] = ACTIONS(8475), - [sym__special_characters] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1287), - [sym_raw_string] = ACTIONS(1289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LT_LPAREN] = ACTIONS(1297), - [anon_sym_GT_LPAREN] = ACTIONS(1297), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1299), - }, - [4029] = { - [aux_sym_concatenation_repeat1] = STATE(3697), - [sym__concat] = ACTIONS(7424), - [sym_variable_name] = ACTIONS(1301), - [anon_sym_esac] = ACTIONS(1305), - [anon_sym_PIPE] = ACTIONS(1305), - [anon_sym_SEMI_SEMI] = ACTIONS(1305), - [anon_sym_PIPE_AMP] = ACTIONS(1305), - [anon_sym_AMP_AMP] = ACTIONS(1305), - [anon_sym_PIPE_PIPE] = ACTIONS(1305), - [sym__special_characters] = ACTIONS(1305), - [anon_sym_DQUOTE] = ACTIONS(1305), - [anon_sym_DOLLAR] = ACTIONS(1305), - [sym_raw_string] = ACTIONS(1305), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1305), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1305), - [anon_sym_BQUOTE] = ACTIONS(1305), - [anon_sym_LT_LPAREN] = ACTIONS(1305), - [anon_sym_GT_LPAREN] = ACTIONS(1305), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1305), - [sym_word] = ACTIONS(1305), - [anon_sym_SEMI] = ACTIONS(1305), - [anon_sym_LF] = ACTIONS(1305), - [anon_sym_AMP] = ACTIONS(1305), - }, - [4030] = { - [aux_sym_concatenation_repeat1] = STATE(3697), - [sym__concat] = ACTIONS(7424), - [sym_variable_name] = ACTIONS(1277), - [anon_sym_esac] = ACTIONS(1279), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_SEMI_SEMI] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym__special_characters] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1279), - [sym_raw_string] = ACTIONS(1279), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), - [anon_sym_BQUOTE] = ACTIONS(1279), - [anon_sym_LT_LPAREN] = ACTIONS(1279), - [anon_sym_GT_LPAREN] = ACTIONS(1279), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1279), - [sym_word] = ACTIONS(1279), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_LF] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - }, - [4031] = { - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [4032] = { - [aux_sym_concatenation_repeat1] = STATE(4032), - [sym__concat] = ACTIONS(8477), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [4033] = { - [sym__concat] = ACTIONS(1923), - [sym_variable_name] = ACTIONS(1923), - [anon_sym_esac] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [sym__special_characters] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [sym_raw_string] = ACTIONS(1925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), - [anon_sym_BQUOTE] = ACTIONS(1925), - [anon_sym_LT_LPAREN] = ACTIONS(1925), - [anon_sym_GT_LPAREN] = ACTIONS(1925), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1925), - [sym_word] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - }, - [4034] = { - [sym_concatenation] = STATE(4251), - [sym_string] = STATE(4250), - [sym_simple_expansion] = STATE(4250), - [sym_string_expansion] = STATE(4250), - [sym_expansion] = STATE(4250), - [sym_command_substitution] = STATE(4250), - [sym_process_substitution] = STATE(4250), - [anon_sym_RBRACE] = ACTIONS(8480), - [sym__special_characters] = ACTIONS(8482), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(8484), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8486), - }, - [4035] = { - [sym__concat] = ACTIONS(1968), - [sym_variable_name] = ACTIONS(1968), - [anon_sym_esac] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [sym__special_characters] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [sym_raw_string] = ACTIONS(1970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1970), - [sym_word] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - }, - [4036] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8488), - }, - [4037] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8490), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4038] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(8492), - [sym_comment] = ACTIONS(56), - }, - [4039] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4257), - [anon_sym_RBRACE] = ACTIONS(8494), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8496), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4040] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4260), - [anon_sym_RBRACE] = ACTIONS(8498), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8500), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4041] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4262), - [anon_sym_RBRACE] = ACTIONS(8480), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8502), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4042] = { - [sym__concat] = ACTIONS(2022), - [sym_variable_name] = ACTIONS(2022), - [anon_sym_esac] = ACTIONS(2024), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [sym__special_characters] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_DOLLAR] = ACTIONS(2024), - [sym_raw_string] = ACTIONS(2024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2024), - [anon_sym_LT_LPAREN] = ACTIONS(2024), - [anon_sym_GT_LPAREN] = ACTIONS(2024), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2024), - [sym_word] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - }, - [4043] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8504), - }, - [4044] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8506), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4045] = { - [sym__concat] = ACTIONS(2030), - [sym_variable_name] = ACTIONS(2030), - [anon_sym_esac] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [sym__special_characters] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2032), - [sym_raw_string] = ACTIONS(2032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), - [anon_sym_BQUOTE] = ACTIONS(2032), - [anon_sym_LT_LPAREN] = ACTIONS(2032), - [anon_sym_GT_LPAREN] = ACTIONS(2032), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2032), - [sym_word] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), - }, - [4046] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8508), - }, - [4047] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8480), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4048] = { - [sym__concat] = ACTIONS(2190), - [sym_variable_name] = ACTIONS(2190), - [anon_sym_esac] = ACTIONS(2192), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [sym__special_characters] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [sym_raw_string] = ACTIONS(2192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), - [anon_sym_BQUOTE] = ACTIONS(2192), - [anon_sym_LT_LPAREN] = ACTIONS(2192), - [anon_sym_GT_LPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2192), - [sym_word] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), - }, - [4049] = { - [sym__concat] = ACTIONS(2396), - [sym_variable_name] = ACTIONS(2396), - [anon_sym_esac] = ACTIONS(2398), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [sym__special_characters] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), - [anon_sym_BQUOTE] = ACTIONS(2398), - [anon_sym_LT_LPAREN] = ACTIONS(2398), - [anon_sym_GT_LPAREN] = ACTIONS(2398), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2398), - [sym_word] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - }, - [4050] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [4051] = { - [aux_sym_concatenation_repeat1] = STATE(4051), - [sym__concat] = ACTIONS(8510), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1888), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [4052] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_esac] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [sym__special_characters] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [sym_raw_string] = ACTIONS(1925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), - [anon_sym_BQUOTE] = ACTIONS(1925), - [anon_sym_LT_LPAREN] = ACTIONS(1925), - [anon_sym_GT_LPAREN] = ACTIONS(1925), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1925), - [sym_word] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - }, - [4053] = { - [sym_concatenation] = STATE(4269), - [sym_string] = STATE(4268), - [sym_simple_expansion] = STATE(4268), - [sym_string_expansion] = STATE(4268), - [sym_expansion] = STATE(4268), - [sym_command_substitution] = STATE(4268), - [sym_process_substitution] = STATE(4268), - [anon_sym_RBRACE] = ACTIONS(8513), - [sym__special_characters] = ACTIONS(8515), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(8517), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8519), - }, - [4054] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_esac] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [sym__special_characters] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [sym_raw_string] = ACTIONS(1970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1970), - [sym_word] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - }, - [4055] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8521), - }, - [4056] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8523), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4057] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(8525), - [sym_comment] = ACTIONS(56), - }, - [4058] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4275), - [anon_sym_RBRACE] = ACTIONS(8527), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8529), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4059] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4278), - [anon_sym_RBRACE] = ACTIONS(8531), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8533), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4060] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4280), - [anon_sym_RBRACE] = ACTIONS(8513), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8535), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4061] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_esac] = ACTIONS(2024), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [sym__special_characters] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_DOLLAR] = ACTIONS(2024), - [sym_raw_string] = ACTIONS(2024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2024), - [anon_sym_LT_LPAREN] = ACTIONS(2024), - [anon_sym_GT_LPAREN] = ACTIONS(2024), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2024), - [sym_word] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - }, - [4062] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8537), - }, - [4063] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8539), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4064] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_esac] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [sym__special_characters] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2032), - [sym_raw_string] = ACTIONS(2032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), - [anon_sym_BQUOTE] = ACTIONS(2032), - [anon_sym_LT_LPAREN] = ACTIONS(2032), - [anon_sym_GT_LPAREN] = ACTIONS(2032), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2032), - [sym_word] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), - }, - [4065] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8541), - }, - [4066] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8513), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4067] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_esac] = ACTIONS(2192), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [sym__special_characters] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [sym_raw_string] = ACTIONS(2192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), - [anon_sym_BQUOTE] = ACTIONS(2192), - [anon_sym_LT_LPAREN] = ACTIONS(2192), - [anon_sym_GT_LPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2192), - [sym_word] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), - }, - [4068] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_esac] = ACTIONS(2398), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [sym__special_characters] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), - [anon_sym_BQUOTE] = ACTIONS(2398), - [anon_sym_LT_LPAREN] = ACTIONS(2398), - [anon_sym_GT_LPAREN] = ACTIONS(2398), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2398), - [sym_word] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - }, - [4069] = { - [sym_file_descriptor] = ACTIONS(3283), - [sym__concat] = ACTIONS(3283), - [anon_sym_esac] = ACTIONS(3285), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_EQ_TILDE] = ACTIONS(3285), - [anon_sym_EQ_EQ] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_GT] = ACTIONS(3285), - [anon_sym_GT_GT] = ACTIONS(3285), - [anon_sym_AMP_GT] = ACTIONS(3285), - [anon_sym_AMP_GT_GT] = ACTIONS(3285), - [anon_sym_LT_AMP] = ACTIONS(3285), - [anon_sym_GT_AMP] = ACTIONS(3285), - [anon_sym_LT_LT] = ACTIONS(3285), - [anon_sym_LT_LT_DASH] = ACTIONS(3285), - [anon_sym_LT_LT_LT] = ACTIONS(3285), - [sym__special_characters] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_DOLLAR] = ACTIONS(3285), - [sym_raw_string] = ACTIONS(3285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), - [anon_sym_BQUOTE] = ACTIONS(3285), - [anon_sym_LT_LPAREN] = ACTIONS(3285), - [anon_sym_GT_LPAREN] = ACTIONS(3285), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), - }, - [4070] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8543), - [sym_comment] = ACTIONS(56), - }, - [4071] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8545), - [sym_comment] = ACTIONS(56), - }, - [4072] = { - [anon_sym_RBRACE] = ACTIONS(8545), - [sym_comment] = ACTIONS(56), - }, - [4073] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4287), - [anon_sym_RBRACE] = ACTIONS(8547), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4074] = { - [sym_file_descriptor] = ACTIONS(3347), - [sym__concat] = ACTIONS(3347), - [anon_sym_esac] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [anon_sym_EQ_TILDE] = ACTIONS(3349), - [anon_sym_EQ_EQ] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_GT] = ACTIONS(3349), - [anon_sym_GT_GT] = ACTIONS(3349), - [anon_sym_AMP_GT] = ACTIONS(3349), - [anon_sym_AMP_GT_GT] = ACTIONS(3349), - [anon_sym_LT_AMP] = ACTIONS(3349), - [anon_sym_GT_AMP] = ACTIONS(3349), - [anon_sym_LT_LT] = ACTIONS(3349), - [anon_sym_LT_LT_DASH] = ACTIONS(3349), - [anon_sym_LT_LT_LT] = ACTIONS(3349), - [sym__special_characters] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3349), - [sym_raw_string] = ACTIONS(3349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), - [anon_sym_BQUOTE] = ACTIONS(3349), - [anon_sym_LT_LPAREN] = ACTIONS(3349), - [anon_sym_GT_LPAREN] = ACTIONS(3349), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - }, - [4075] = { - [sym_concatenation] = STATE(4290), - [sym_string] = STATE(4289), - [sym_simple_expansion] = STATE(4289), - [sym_string_expansion] = STATE(4289), - [sym_expansion] = STATE(4289), - [sym_command_substitution] = STATE(4289), - [sym_process_substitution] = STATE(4289), - [anon_sym_RBRACE] = ACTIONS(8545), - [sym__special_characters] = ACTIONS(8549), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(8551), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8553), - }, - [4076] = { - [sym_file_descriptor] = ACTIONS(3392), - [sym__concat] = ACTIONS(3392), - [anon_sym_esac] = ACTIONS(3394), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [anon_sym_EQ_TILDE] = ACTIONS(3394), - [anon_sym_EQ_EQ] = ACTIONS(3394), - [anon_sym_LT] = ACTIONS(3394), - [anon_sym_GT] = ACTIONS(3394), - [anon_sym_GT_GT] = ACTIONS(3394), - [anon_sym_AMP_GT] = ACTIONS(3394), - [anon_sym_AMP_GT_GT] = ACTIONS(3394), - [anon_sym_LT_AMP] = ACTIONS(3394), - [anon_sym_GT_AMP] = ACTIONS(3394), - [anon_sym_LT_LT] = ACTIONS(3394), - [anon_sym_LT_LT_DASH] = ACTIONS(3394), - [anon_sym_LT_LT_LT] = ACTIONS(3394), - [sym__special_characters] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_DOLLAR] = ACTIONS(3394), - [sym_raw_string] = ACTIONS(3394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), - [anon_sym_BQUOTE] = ACTIONS(3394), - [anon_sym_LT_LPAREN] = ACTIONS(3394), - [anon_sym_GT_LPAREN] = ACTIONS(3394), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3394), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), - }, - [4077] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8555), - }, - [4078] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8557), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4079] = { - [sym_file_descriptor] = ACTIONS(3400), - [sym__concat] = ACTIONS(3400), - [anon_sym_esac] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [anon_sym_EQ_TILDE] = ACTIONS(3402), - [anon_sym_EQ_EQ] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(3402), - [anon_sym_GT] = ACTIONS(3402), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_AMP_GT] = ACTIONS(3402), - [anon_sym_AMP_GT_GT] = ACTIONS(3402), - [anon_sym_LT_AMP] = ACTIONS(3402), - [anon_sym_GT_AMP] = ACTIONS(3402), - [anon_sym_LT_LT] = ACTIONS(3402), - [anon_sym_LT_LT_DASH] = ACTIONS(3402), - [anon_sym_LT_LT_LT] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(3402), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3402), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), - }, - [4080] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8559), - }, - [4081] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8561), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4082] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8563), - }, - [4083] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8545), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4084] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4297), - [anon_sym_RBRACE] = ACTIONS(8565), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4085] = { - [sym_file_descriptor] = ACTIONS(3412), - [sym__concat] = ACTIONS(3412), - [anon_sym_esac] = ACTIONS(3414), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [anon_sym_EQ_TILDE] = ACTIONS(3414), - [anon_sym_EQ_EQ] = ACTIONS(3414), - [anon_sym_LT] = ACTIONS(3414), - [anon_sym_GT] = ACTIONS(3414), - [anon_sym_GT_GT] = ACTIONS(3414), - [anon_sym_AMP_GT] = ACTIONS(3414), - [anon_sym_AMP_GT_GT] = ACTIONS(3414), - [anon_sym_LT_AMP] = ACTIONS(3414), - [anon_sym_GT_AMP] = ACTIONS(3414), - [anon_sym_LT_LT] = ACTIONS(3414), - [anon_sym_LT_LT_DASH] = ACTIONS(3414), - [anon_sym_LT_LT_LT] = ACTIONS(3414), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_DOLLAR] = ACTIONS(3414), - [sym_raw_string] = ACTIONS(3414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), - [anon_sym_BQUOTE] = ACTIONS(3414), - [anon_sym_LT_LPAREN] = ACTIONS(3414), - [anon_sym_GT_LPAREN] = ACTIONS(3414), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), - }, - [4086] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4299), - [anon_sym_RBRACE] = ACTIONS(8567), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4087] = { - [sym_file_redirect] = STATE(1874), - [sym_file_descriptor] = ACTIONS(7969), - [anon_sym_esac] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_SEMI_SEMI] = ACTIONS(2784), - [anon_sym_PIPE_AMP] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(7971), - [anon_sym_GT] = ACTIONS(7971), - [anon_sym_GT_GT] = ACTIONS(7971), - [anon_sym_AMP_GT] = ACTIONS(7971), - [anon_sym_AMP_GT_GT] = ACTIONS(7971), - [anon_sym_LT_AMP] = ACTIONS(7971), - [anon_sym_GT_AMP] = ACTIONS(7971), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - }, - [4088] = { - [aux_sym_concatenation_repeat1] = STATE(4091), - [sym_file_descriptor] = ACTIONS(1239), - [sym__concat] = ACTIONS(8163), - [anon_sym_esac] = ACTIONS(4032), - [anon_sym_PIPE] = ACTIONS(4032), - [anon_sym_SEMI_SEMI] = ACTIONS(4032), - [anon_sym_PIPE_AMP] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_PIPE_PIPE] = ACTIONS(4032), - [anon_sym_LT] = ACTIONS(4032), - [anon_sym_GT] = ACTIONS(4032), - [anon_sym_GT_GT] = ACTIONS(4032), - [anon_sym_AMP_GT] = ACTIONS(4032), - [anon_sym_AMP_GT_GT] = ACTIONS(4032), - [anon_sym_LT_AMP] = ACTIONS(4032), - [anon_sym_GT_AMP] = ACTIONS(4032), - [anon_sym_LT_LT] = ACTIONS(4032), - [anon_sym_LT_LT_DASH] = ACTIONS(4032), - [anon_sym_LT_LT_LT] = ACTIONS(4032), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym_LF] = ACTIONS(4032), - [anon_sym_AMP] = ACTIONS(4032), - }, - [4089] = { - [aux_sym_concatenation_repeat1] = STATE(4091), - [sym_file_descriptor] = ACTIONS(1243), - [sym__concat] = ACTIONS(8163), - [anon_sym_esac] = ACTIONS(4034), - [anon_sym_PIPE] = ACTIONS(4034), - [anon_sym_SEMI_SEMI] = ACTIONS(4034), - [anon_sym_PIPE_AMP] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_PIPE_PIPE] = ACTIONS(4034), - [anon_sym_LT] = ACTIONS(4034), - [anon_sym_GT] = ACTIONS(4034), - [anon_sym_GT_GT] = ACTIONS(4034), - [anon_sym_AMP_GT] = ACTIONS(4034), - [anon_sym_AMP_GT_GT] = ACTIONS(4034), - [anon_sym_LT_AMP] = ACTIONS(4034), - [anon_sym_GT_AMP] = ACTIONS(4034), - [anon_sym_LT_LT] = ACTIONS(4034), - [anon_sym_LT_LT_DASH] = ACTIONS(4034), - [anon_sym_LT_LT_LT] = ACTIONS(4034), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4034), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4034), - }, - [4090] = { - [sym_string] = STATE(4300), - [sym_simple_expansion] = STATE(4300), - [sym_string_expansion] = STATE(4300), - [sym_expansion] = STATE(4300), - [sym_command_substitution] = STATE(4300), - [sym_process_substitution] = STATE(4300), - [sym__special_characters] = ACTIONS(8569), - [anon_sym_DQUOTE] = ACTIONS(7526), - [anon_sym_DOLLAR] = ACTIONS(7528), - [sym_raw_string] = ACTIONS(8571), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7532), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7534), - [anon_sym_BQUOTE] = ACTIONS(7536), - [anon_sym_LT_LPAREN] = ACTIONS(7538), - [anon_sym_GT_LPAREN] = ACTIONS(7538), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8569), - }, - [4091] = { - [aux_sym_concatenation_repeat1] = STATE(4301), - [sym_file_descriptor] = ACTIONS(788), - [sym__concat] = ACTIONS(8163), - [anon_sym_esac] = ACTIONS(790), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), - [anon_sym_LT] = ACTIONS(790), - [anon_sym_GT] = ACTIONS(790), - [anon_sym_GT_GT] = ACTIONS(790), - [anon_sym_AMP_GT] = ACTIONS(790), - [anon_sym_AMP_GT_GT] = ACTIONS(790), - [anon_sym_LT_AMP] = ACTIONS(790), - [anon_sym_GT_AMP] = ACTIONS(790), - [anon_sym_LT_LT] = ACTIONS(790), - [anon_sym_LT_LT_DASH] = ACTIONS(790), - [anon_sym_LT_LT_LT] = ACTIONS(790), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), - }, - [4092] = { - [sym_file_descriptor] = ACTIONS(792), - [sym__concat] = ACTIONS(792), - [anon_sym_esac] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), - [anon_sym_LT] = ACTIONS(794), - [anon_sym_GT] = ACTIONS(794), - [anon_sym_GT_GT] = ACTIONS(794), - [anon_sym_AMP_GT] = ACTIONS(794), - [anon_sym_AMP_GT_GT] = ACTIONS(794), - [anon_sym_LT_AMP] = ACTIONS(794), - [anon_sym_GT_AMP] = ACTIONS(794), - [anon_sym_LT_LT] = ACTIONS(794), - [anon_sym_LT_LT_DASH] = ACTIONS(794), - [anon_sym_LT_LT_LT] = ACTIONS(794), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), - }, - [4093] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(8573), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [4094] = { - [sym_file_descriptor] = ACTIONS(824), - [sym__concat] = ACTIONS(824), - [anon_sym_esac] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [anon_sym_LT] = ACTIONS(826), - [anon_sym_GT] = ACTIONS(826), - [anon_sym_GT_GT] = ACTIONS(826), - [anon_sym_AMP_GT] = ACTIONS(826), - [anon_sym_AMP_GT_GT] = ACTIONS(826), - [anon_sym_LT_AMP] = ACTIONS(826), - [anon_sym_GT_AMP] = ACTIONS(826), - [anon_sym_LT_LT] = ACTIONS(826), - [anon_sym_LT_LT_DASH] = ACTIONS(826), - [anon_sym_LT_LT_LT] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), - }, - [4095] = { - [sym_file_descriptor] = ACTIONS(828), - [sym__concat] = ACTIONS(828), - [anon_sym_esac] = ACTIONS(830), - [anon_sym_PIPE] = 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), - [anon_sym_LT] = ACTIONS(830), - [anon_sym_GT] = ACTIONS(830), - [anon_sym_GT_GT] = ACTIONS(830), - [anon_sym_AMP_GT] = ACTIONS(830), - [anon_sym_AMP_GT_GT] = ACTIONS(830), - [anon_sym_LT_AMP] = ACTIONS(830), - [anon_sym_GT_AMP] = ACTIONS(830), - [anon_sym_LT_LT] = ACTIONS(830), - [anon_sym_LT_LT_DASH] = ACTIONS(830), - [anon_sym_LT_LT_LT] = ACTIONS(830), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), - }, - [4096] = { - [sym_file_descriptor] = ACTIONS(832), - [sym__concat] = ACTIONS(832), - [anon_sym_esac] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [anon_sym_LT] = ACTIONS(834), - [anon_sym_GT] = ACTIONS(834), - [anon_sym_GT_GT] = ACTIONS(834), - [anon_sym_AMP_GT] = ACTIONS(834), - [anon_sym_AMP_GT_GT] = ACTIONS(834), - [anon_sym_LT_AMP] = ACTIONS(834), - [anon_sym_GT_AMP] = ACTIONS(834), - [anon_sym_LT_LT] = ACTIONS(834), - [anon_sym_LT_LT_DASH] = ACTIONS(834), - [anon_sym_LT_LT_LT] = ACTIONS(834), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - }, - [4097] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(8575), - [sym_comment] = ACTIONS(56), - }, - [4098] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4306), - [anon_sym_RBRACE] = ACTIONS(8577), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8579), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4099] = { - [sym_subscript] = STATE(4310), - [sym_variable_name] = ACTIONS(8581), - [anon_sym_DOLLAR] = ACTIONS(8583), - [anon_sym_DASH] = ACTIONS(8583), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8585), - [anon_sym_STAR] = ACTIONS(8583), - [anon_sym_AT] = ACTIONS(8583), - [anon_sym_QMARK] = ACTIONS(8583), - [anon_sym_0] = ACTIONS(8587), - [anon_sym__] = ACTIONS(8587), - }, - [4100] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4313), - [anon_sym_RBRACE] = ACTIONS(8589), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8591), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4101] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4316), - [anon_sym_RBRACE] = ACTIONS(8593), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8595), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4102] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8597), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [4103] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8597), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [4104] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(8597), - [sym_comment] = ACTIONS(56), - }, - [4105] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(8597), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [4106] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8599), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), - }, - [4107] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8599), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), - }, - [4108] = { - [sym_file_redirect] = STATE(207), - [sym_heredoc_redirect] = STATE(207), - [sym_herestring_redirect] = STATE(207), - [aux_sym_while_statement_repeat1] = STATE(3771), - [sym_file_descriptor] = ACTIONS(6663), - [anon_sym_esac] = ACTIONS(4094), - [anon_sym_PIPE] = ACTIONS(4094), - [anon_sym_SEMI_SEMI] = ACTIONS(4094), - [anon_sym_PIPE_AMP] = ACTIONS(4094), - [anon_sym_AMP_AMP] = ACTIONS(4094), - [anon_sym_PIPE_PIPE] = ACTIONS(4094), - [anon_sym_LT] = ACTIONS(6667), - [anon_sym_GT] = ACTIONS(6667), - [anon_sym_GT_GT] = ACTIONS(6667), - [anon_sym_AMP_GT] = ACTIONS(6667), - [anon_sym_AMP_GT_GT] = ACTIONS(6667), - [anon_sym_LT_AMP] = ACTIONS(6667), - [anon_sym_GT_AMP] = ACTIONS(6667), - [anon_sym_LT_LT] = ACTIONS(360), - [anon_sym_LT_LT_DASH] = ACTIONS(360), - [anon_sym_LT_LT_LT] = ACTIONS(6669), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4094), - [anon_sym_LF] = ACTIONS(4094), - [anon_sym_AMP] = ACTIONS(4094), - }, - [4109] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_esac] = ACTIONS(8601), - [anon_sym_SEMI_SEMI] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(8603), - [anon_sym_DQUOTE] = ACTIONS(8605), - [anon_sym_DOLLAR] = ACTIONS(8607), - [sym_raw_string] = ACTIONS(8605), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8605), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8605), - [anon_sym_BQUOTE] = ACTIONS(8605), - [anon_sym_LT_LPAREN] = ACTIONS(8605), - [anon_sym_GT_LPAREN] = ACTIONS(8605), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8603), - }, - [4110] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_esac] = ACTIONS(8609), - [anon_sym_SEMI_SEMI] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(8611), - [anon_sym_DQUOTE] = ACTIONS(8613), - [anon_sym_DOLLAR] = ACTIONS(8615), - [sym_raw_string] = ACTIONS(8613), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8613), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8613), - [anon_sym_BQUOTE] = ACTIONS(8613), - [anon_sym_LT_LPAREN] = ACTIONS(8613), - [anon_sym_GT_LPAREN] = ACTIONS(8613), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8611), - }, - [4111] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6025), - [anon_sym_RPAREN] = ACTIONS(6025), - [sym_comment] = ACTIONS(56), - }, - [4112] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6029), - [anon_sym_RPAREN] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), - }, - [4113] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6033), - [anon_sym_RPAREN] = ACTIONS(6033), - [sym_comment] = ACTIONS(56), - }, - [4114] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6037), - [anon_sym_RPAREN] = ACTIONS(6037), - [sym_comment] = ACTIONS(56), - }, - [4115] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8617), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4116] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6043), - [anon_sym_RPAREN] = ACTIONS(6043), - [sym_comment] = ACTIONS(56), - }, - [4117] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8619), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4118] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6049), - [anon_sym_RPAREN] = ACTIONS(6049), - [sym_comment] = ACTIONS(56), - }, - [4119] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8621), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4120] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6055), - [anon_sym_RPAREN] = ACTIONS(6055), - [sym_comment] = ACTIONS(56), - }, - [4121] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6059), - [anon_sym_RPAREN] = ACTIONS(6059), - [sym_comment] = ACTIONS(56), - }, - [4122] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_SEMI_SEMI] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(7508), - [anon_sym_DQUOTE] = ACTIONS(7510), - [anon_sym_DOLLAR] = ACTIONS(7512), - [sym_raw_string] = ACTIONS(7510), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7510), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7510), - [anon_sym_BQUOTE] = ACTIONS(7510), - [anon_sym_LT_LPAREN] = ACTIONS(7510), - [anon_sym_GT_LPAREN] = ACTIONS(7510), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7508), - }, - [4123] = { - [sym__special_characters] = ACTIONS(7512), - [anon_sym_DQUOTE] = ACTIONS(7510), - [anon_sym_DOLLAR] = ACTIONS(7512), - [sym_raw_string] = ACTIONS(7510), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7510), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7510), - [anon_sym_BQUOTE] = ACTIONS(7510), - [anon_sym_LT_LPAREN] = ACTIONS(7510), - [anon_sym_GT_LPAREN] = ACTIONS(7510), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7512), - }, - [4124] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8623), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [4125] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8623), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [4126] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(26), - [sym_while_statement] = STATE(26), - [sym_if_statement] = STATE(26), - [sym_case_statement] = STATE(26), - [sym_function_definition] = STATE(26), - [sym_subshell] = STATE(26), - [sym_pipeline] = STATE(26), - [sym_list] = STATE(26), - [sym_command] = STATE(26), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(26), - [sym_variable_assignment] = STATE(28), - [sym_declaration_command] = STATE(26), - [sym_unset_command] = STATE(26), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(4126), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(1150), - [sym_variable_name] = ACTIONS(1153), - [anon_sym_for] = ACTIONS(1158), - [anon_sym_while] = ACTIONS(1161), - [anon_sym_if] = ACTIONS(1164), - [anon_sym_case] = ACTIONS(1167), - [anon_sym_SEMI_SEMI] = ACTIONS(1156), - [anon_sym_function] = ACTIONS(1170), - [anon_sym_LPAREN] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(1176), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), - [anon_sym_declare] = ACTIONS(1182), - [anon_sym_typeset] = ACTIONS(1182), - [anon_sym_export] = ACTIONS(1182), - [anon_sym_readonly] = ACTIONS(1182), - [anon_sym_local] = ACTIONS(1182), - [anon_sym_unset] = ACTIONS(1185), - [anon_sym_unsetenv] = ACTIONS(1185), - [anon_sym_LT] = ACTIONS(1188), - [anon_sym_GT] = ACTIONS(1188), - [anon_sym_GT_GT] = ACTIONS(1191), - [anon_sym_AMP_GT] = ACTIONS(1188), - [anon_sym_AMP_GT_GT] = ACTIONS(1191), - [anon_sym_LT_AMP] = ACTIONS(1191), - [anon_sym_GT_AMP] = ACTIONS(1191), - [sym__special_characters] = ACTIONS(1194), - [anon_sym_DQUOTE] = ACTIONS(1197), - [anon_sym_DOLLAR] = ACTIONS(1200), - [sym_raw_string] = ACTIONS(1203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), - [anon_sym_BQUOTE] = ACTIONS(1212), - [anon_sym_LT_LPAREN] = ACTIONS(1215), - [anon_sym_GT_LPAREN] = ACTIONS(1215), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1218), - }, - [4127] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(4324), - [sym_while_statement] = STATE(4324), - [sym_if_statement] = STATE(4324), - [sym_case_statement] = STATE(4324), - [sym_function_definition] = STATE(4324), - [sym_subshell] = STATE(4324), - [sym_pipeline] = STATE(4324), - [sym_list] = STATE(4324), - [sym_command] = STATE(4324), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(4324), - [sym_variable_assignment] = STATE(4325), - [sym_declaration_command] = STATE(4324), - [sym_unset_command] = STATE(4324), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(4126), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8625), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [4128] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_SEMI_SEMI] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(7556), - [anon_sym_DQUOTE] = ACTIONS(7558), - [anon_sym_DOLLAR] = ACTIONS(7560), - [sym_raw_string] = ACTIONS(7558), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7558), - [anon_sym_BQUOTE] = ACTIONS(7558), - [anon_sym_LT_LPAREN] = ACTIONS(7558), - [anon_sym_GT_LPAREN] = ACTIONS(7558), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7556), - }, - [4129] = { - [sym__special_characters] = ACTIONS(7560), - [anon_sym_DQUOTE] = ACTIONS(7558), - [anon_sym_DOLLAR] = ACTIONS(7560), - [sym_raw_string] = ACTIONS(7558), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7558), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7558), - [anon_sym_BQUOTE] = ACTIONS(7558), - [anon_sym_LT_LPAREN] = ACTIONS(7558), - [anon_sym_GT_LPAREN] = ACTIONS(7558), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7560), - }, - [4130] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8627), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [4131] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8627), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), - }, - [4132] = { - [sym__terminated_statement] = STATE(25), - [sym_for_statement] = STATE(4328), - [sym_while_statement] = STATE(4328), - [sym_if_statement] = STATE(4328), - [sym_case_statement] = STATE(4328), - [sym_function_definition] = STATE(4328), - [sym_subshell] = STATE(4328), - [sym_pipeline] = STATE(4328), - [sym_list] = STATE(4328), - [sym_command] = STATE(4328), - [sym_command_name] = STATE(27), - [sym_bracket_command] = STATE(4328), - [sym_variable_assignment] = STATE(4329), - [sym_declaration_command] = STATE(4328), - [sym_unset_command] = STATE(4328), - [sym_subscript] = STATE(29), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(31), - [sym_string] = STATE(18), - [sym_simple_expansion] = STATE(18), - [sym_string_expansion] = STATE(18), - [sym_expansion] = STATE(18), - [sym_command_substitution] = STATE(18), - [sym_process_substitution] = STATE(18), - [aux_sym_program_repeat1] = STATE(4126), - [aux_sym_command_repeat1] = STATE(33), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(12), - [anon_sym_for] = ACTIONS(16), - [anon_sym_while] = ACTIONS(18), - [anon_sym_if] = ACTIONS(20), - [anon_sym_case] = ACTIONS(22), - [anon_sym_SEMI_SEMI] = ACTIONS(8629), - [anon_sym_function] = ACTIONS(24), - [anon_sym_LPAREN] = ACTIONS(26), - [anon_sym_LBRACK] = ACTIONS(28), - [anon_sym_LBRACK_LBRACK] = ACTIONS(30), - [anon_sym_declare] = ACTIONS(32), - [anon_sym_typeset] = ACTIONS(32), - [anon_sym_export] = ACTIONS(32), - [anon_sym_readonly] = ACTIONS(32), - [anon_sym_local] = ACTIONS(32), - [anon_sym_unset] = ACTIONS(34), - [anon_sym_unsetenv] = ACTIONS(34), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(40), - [anon_sym_DQUOTE] = ACTIONS(42), - [anon_sym_DOLLAR] = ACTIONS(44), - [sym_raw_string] = ACTIONS(46), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), - [anon_sym_BQUOTE] = ACTIONS(52), - [anon_sym_LT_LPAREN] = ACTIONS(54), - [anon_sym_GT_LPAREN] = ACTIONS(54), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(58), - }, - [4133] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), - }, - [4134] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), - }, - [4135] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), - }, - [4136] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), - }, - [4137] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8631), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4138] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), - }, - [4139] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8633), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4140] = { - [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6051), - [anon_sym_SEMI_SEMI] = ACTIONS(6051), - [anon_sym_PIPE_AMP] = ACTIONS(6051), - [anon_sym_AMP_AMP] = ACTIONS(6051), - [anon_sym_PIPE_PIPE] = ACTIONS(6051), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6051), - [anon_sym_LF] = ACTIONS(6051), - [anon_sym_AMP] = ACTIONS(6051), - }, - [4141] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8635), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4142] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), - }, - [4143] = { - [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6061), - [anon_sym_SEMI_SEMI] = ACTIONS(6061), - [anon_sym_PIPE_AMP] = ACTIONS(6061), - [anon_sym_AMP_AMP] = ACTIONS(6061), - [anon_sym_PIPE_PIPE] = ACTIONS(6061), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6061), - [anon_sym_LF] = ACTIONS(6061), - [anon_sym_AMP] = ACTIONS(6061), - }, - [4144] = { - [sym_file_descriptor] = ACTIONS(7018), - [sym__concat] = ACTIONS(7018), - [sym_variable_name] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_RPAREN] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_GT] = ACTIONS(7020), - [anon_sym_AMP_GT] = ACTIONS(7020), - [anon_sym_AMP_GT_GT] = ACTIONS(7020), - [anon_sym_LT_AMP] = ACTIONS(7020), - [anon_sym_GT_AMP] = ACTIONS(7020), - [sym__special_characters] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7020), - [anon_sym_DOLLAR] = ACTIONS(7020), - [sym_raw_string] = ACTIONS(7020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), - [anon_sym_BQUOTE] = ACTIONS(7020), - [anon_sym_LT_LPAREN] = ACTIONS(7020), - [anon_sym_GT_LPAREN] = ACTIONS(7020), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7020), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), - }, - [4145] = { - [sym_file_descriptor] = ACTIONS(7022), - [sym__concat] = ACTIONS(7022), - [sym_variable_name] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_RPAREN] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), - [anon_sym_LT] = ACTIONS(7024), - [anon_sym_GT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_AMP_GT] = ACTIONS(7024), - [anon_sym_AMP_GT_GT] = ACTIONS(7024), - [anon_sym_LT_AMP] = ACTIONS(7024), - [anon_sym_GT_AMP] = ACTIONS(7024), - [sym__special_characters] = ACTIONS(7024), - [anon_sym_DQUOTE] = ACTIONS(7024), - [anon_sym_DOLLAR] = ACTIONS(7024), - [sym_raw_string] = ACTIONS(7024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), - [anon_sym_BQUOTE] = ACTIONS(7024), - [anon_sym_LT_LPAREN] = ACTIONS(7024), - [anon_sym_GT_LPAREN] = ACTIONS(7024), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), - }, - [4146] = { - [sym_file_descriptor] = ACTIONS(7026), - [sym__concat] = ACTIONS(7026), - [sym_variable_name] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_RPAREN] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), - [anon_sym_LT] = ACTIONS(7028), - [anon_sym_GT] = ACTIONS(7028), - [anon_sym_GT_GT] = ACTIONS(7028), - [anon_sym_AMP_GT] = ACTIONS(7028), - [anon_sym_AMP_GT_GT] = ACTIONS(7028), - [anon_sym_LT_AMP] = ACTIONS(7028), - [anon_sym_GT_AMP] = ACTIONS(7028), - [sym__special_characters] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7028), - [anon_sym_DOLLAR] = ACTIONS(7028), - [sym_raw_string] = ACTIONS(7028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), - [anon_sym_BQUOTE] = ACTIONS(7028), - [anon_sym_LT_LPAREN] = ACTIONS(7028), - [anon_sym_GT_LPAREN] = ACTIONS(7028), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7028), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), - }, - [4147] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_RPAREN] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), - }, - [4148] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_RPAREN] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), - }, - [4149] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_RPAREN] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), - }, - [4150] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8637), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4151] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8639), - [sym_comment] = ACTIONS(56), - }, - [4152] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8641), - [sym_comment] = ACTIONS(56), - }, - [4153] = { - [anon_sym_RBRACE] = ACTIONS(8641), - [sym_comment] = ACTIONS(56), - }, - [4154] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4337), - [anon_sym_RBRACE] = ACTIONS(8643), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4155] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(4873), - [anon_sym_RPAREN] = ACTIONS(4873), - [anon_sym_SEMI_SEMI] = ACTIONS(4873), - [anon_sym_PIPE_AMP] = ACTIONS(4873), - [anon_sym_AMP_AMP] = ACTIONS(4873), - [anon_sym_PIPE_PIPE] = ACTIONS(4873), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4873), - [anon_sym_LF] = ACTIONS(4873), - [anon_sym_AMP] = ACTIONS(4873), - }, - [4156] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4339), - [anon_sym_RBRACE] = ACTIONS(8645), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4157] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_RPAREN] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), - }, - [4158] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4341), - [anon_sym_RBRACE] = ACTIONS(8647), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4159] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(4885), - [anon_sym_RPAREN] = ACTIONS(4885), - [anon_sym_SEMI_SEMI] = ACTIONS(4885), - [anon_sym_PIPE_AMP] = ACTIONS(4885), - [anon_sym_AMP_AMP] = ACTIONS(4885), - [anon_sym_PIPE_PIPE] = ACTIONS(4885), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4885), - [anon_sym_LF] = ACTIONS(4885), - [anon_sym_AMP] = ACTIONS(4885), - }, - [4160] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8649), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4161] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(4891), - [anon_sym_RPAREN] = ACTIONS(4891), - [anon_sym_SEMI_SEMI] = ACTIONS(4891), - [anon_sym_PIPE_AMP] = ACTIONS(4891), - [anon_sym_AMP_AMP] = ACTIONS(4891), - [anon_sym_PIPE_PIPE] = ACTIONS(4891), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4891), - [anon_sym_LF] = ACTIONS(4891), - [anon_sym_AMP] = ACTIONS(4891), - }, - [4162] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8651), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4163] = { - [sym_file_descriptor] = ACTIONS(7018), - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_RPAREN] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_GT] = ACTIONS(7020), - [anon_sym_AMP_GT] = ACTIONS(7020), - [anon_sym_AMP_GT_GT] = ACTIONS(7020), - [anon_sym_LT_AMP] = ACTIONS(7020), - [anon_sym_GT_AMP] = ACTIONS(7020), - [anon_sym_LT_LT] = ACTIONS(7020), - [anon_sym_LT_LT_DASH] = ACTIONS(7020), - [anon_sym_LT_LT_LT] = ACTIONS(7020), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), - }, - [4164] = { - [sym_file_descriptor] = ACTIONS(7022), - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_RPAREN] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), - [anon_sym_LT] = ACTIONS(7024), - [anon_sym_GT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_AMP_GT] = ACTIONS(7024), - [anon_sym_AMP_GT_GT] = ACTIONS(7024), - [anon_sym_LT_AMP] = ACTIONS(7024), - [anon_sym_GT_AMP] = ACTIONS(7024), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_LT_LT_DASH] = ACTIONS(7024), - [anon_sym_LT_LT_LT] = ACTIONS(7024), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), - }, - [4165] = { - [sym_file_descriptor] = ACTIONS(7026), - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_RPAREN] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), - [anon_sym_LT] = ACTIONS(7028), - [anon_sym_GT] = ACTIONS(7028), - [anon_sym_GT_GT] = ACTIONS(7028), - [anon_sym_AMP_GT] = ACTIONS(7028), - [anon_sym_AMP_GT_GT] = ACTIONS(7028), - [anon_sym_LT_AMP] = ACTIONS(7028), - [anon_sym_GT_AMP] = ACTIONS(7028), - [anon_sym_LT_LT] = ACTIONS(7028), - [anon_sym_LT_LT_DASH] = ACTIONS(7028), - [anon_sym_LT_LT_LT] = ACTIONS(7028), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), - }, - [4166] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_RBRACE] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), - }, - [4167] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_RBRACE] = ACTIONS(7022), - [sym_comment] = ACTIONS(56), - }, - [4168] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_RBRACE] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), - }, - [4169] = { - [sym_file_descriptor] = ACTIONS(7018), - [sym__concat] = ACTIONS(7018), - [sym_variable_name] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7709), - [anon_sym_RPAREN] = ACTIONS(7018), - [anon_sym_PIPE_AMP] = ACTIONS(7018), - [anon_sym_AMP_AMP] = ACTIONS(7018), - [anon_sym_PIPE_PIPE] = ACTIONS(7018), - [anon_sym_LT] = ACTIONS(7709), - [anon_sym_GT] = ACTIONS(7709), - [anon_sym_GT_GT] = ACTIONS(7018), - [anon_sym_AMP_GT] = ACTIONS(7709), - [anon_sym_AMP_GT_GT] = ACTIONS(7018), - [anon_sym_LT_AMP] = ACTIONS(7018), - [anon_sym_GT_AMP] = ACTIONS(7018), - [sym__special_characters] = ACTIONS(7709), - [anon_sym_DQUOTE] = ACTIONS(7018), - [anon_sym_DOLLAR] = ACTIONS(7709), - [sym_raw_string] = ACTIONS(7018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), - [anon_sym_BQUOTE] = ACTIONS(7018), - [anon_sym_LT_LPAREN] = ACTIONS(7018), - [anon_sym_GT_LPAREN] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7709), - }, - [4170] = { - [sym_file_descriptor] = ACTIONS(7022), - [sym__concat] = ACTIONS(7022), - [sym_variable_name] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7711), - [anon_sym_RPAREN] = ACTIONS(7022), - [anon_sym_PIPE_AMP] = ACTIONS(7022), - [anon_sym_AMP_AMP] = ACTIONS(7022), - [anon_sym_PIPE_PIPE] = ACTIONS(7022), - [anon_sym_LT] = ACTIONS(7711), - [anon_sym_GT] = ACTIONS(7711), - [anon_sym_GT_GT] = ACTIONS(7022), - [anon_sym_AMP_GT] = ACTIONS(7711), - [anon_sym_AMP_GT_GT] = ACTIONS(7022), - [anon_sym_LT_AMP] = ACTIONS(7022), - [anon_sym_GT_AMP] = ACTIONS(7022), - [sym__special_characters] = ACTIONS(7711), - [anon_sym_DQUOTE] = ACTIONS(7022), - [anon_sym_DOLLAR] = ACTIONS(7711), - [sym_raw_string] = ACTIONS(7022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), - [anon_sym_BQUOTE] = ACTIONS(7022), - [anon_sym_LT_LPAREN] = ACTIONS(7022), - [anon_sym_GT_LPAREN] = ACTIONS(7022), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7711), - }, - [4171] = { - [sym_file_descriptor] = ACTIONS(7026), - [sym__concat] = ACTIONS(7026), - [sym_variable_name] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_RPAREN] = ACTIONS(7026), - [anon_sym_PIPE_AMP] = ACTIONS(7026), - [anon_sym_AMP_AMP] = ACTIONS(7026), - [anon_sym_PIPE_PIPE] = ACTIONS(7026), - [anon_sym_LT] = ACTIONS(7713), - [anon_sym_GT] = ACTIONS(7713), - [anon_sym_GT_GT] = ACTIONS(7026), - [anon_sym_AMP_GT] = ACTIONS(7713), - [anon_sym_AMP_GT_GT] = ACTIONS(7026), - [anon_sym_LT_AMP] = ACTIONS(7026), - [anon_sym_GT_AMP] = ACTIONS(7026), - [sym__special_characters] = ACTIONS(7713), - [anon_sym_DQUOTE] = ACTIONS(7026), - [anon_sym_DOLLAR] = ACTIONS(7713), - [sym_raw_string] = ACTIONS(7026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), - [anon_sym_BQUOTE] = ACTIONS(7026), - [anon_sym_LT_LPAREN] = ACTIONS(7026), - [anon_sym_GT_LPAREN] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7713), - }, - [4172] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_RPAREN] = ACTIONS(4790), - [anon_sym_PIPE_AMP] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), - }, - [4173] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(5846), - [anon_sym_RPAREN] = ACTIONS(4796), - [anon_sym_PIPE_AMP] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4796), - [anon_sym_PIPE_PIPE] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), - }, - [4174] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_RPAREN] = ACTIONS(4859), - [anon_sym_PIPE_AMP] = ACTIONS(4859), - [anon_sym_AMP_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4859), - [sym_comment] = ACTIONS(56), - }, - [4175] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8653), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4176] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8655), - [sym_comment] = ACTIONS(56), - }, - [4177] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8657), - [sym_comment] = ACTIONS(56), - }, - [4178] = { - [anon_sym_RBRACE] = ACTIONS(8657), - [sym_comment] = ACTIONS(56), - }, - [4179] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4348), - [anon_sym_RBRACE] = ACTIONS(8659), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4180] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5858), - [anon_sym_RPAREN] = ACTIONS(4871), - [anon_sym_PIPE_AMP] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - }, - [4181] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4350), - [anon_sym_RBRACE] = ACTIONS(8661), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4182] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_RPAREN] = ACTIONS(4877), - [anon_sym_PIPE_AMP] = ACTIONS(4877), - [anon_sym_AMP_AMP] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4877), - [sym_comment] = ACTIONS(56), - }, - [4183] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4352), - [anon_sym_RBRACE] = ACTIONS(8663), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4184] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5866), - [anon_sym_RPAREN] = ACTIONS(4883), - [anon_sym_PIPE_AMP] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - }, - [4185] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8665), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4186] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5870), - [anon_sym_RPAREN] = ACTIONS(4889), - [anon_sym_PIPE_AMP] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [sym_comment] = ACTIONS(56), - }, - [4187] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8667), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4188] = { - [sym_file_descriptor] = ACTIONS(7018), - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7709), - [anon_sym_RPAREN] = ACTIONS(7018), - [anon_sym_PIPE_AMP] = ACTIONS(7018), - [anon_sym_AMP_AMP] = ACTIONS(7018), - [anon_sym_PIPE_PIPE] = ACTIONS(7018), - [anon_sym_LT] = ACTIONS(7709), - [anon_sym_GT] = ACTIONS(7709), - [anon_sym_GT_GT] = ACTIONS(7018), - [anon_sym_AMP_GT] = ACTIONS(7709), - [anon_sym_AMP_GT_GT] = ACTIONS(7018), - [anon_sym_LT_AMP] = ACTIONS(7018), - [anon_sym_GT_AMP] = ACTIONS(7018), - [anon_sym_LT_LT] = ACTIONS(7709), - [anon_sym_LT_LT_DASH] = ACTIONS(7018), - [anon_sym_LT_LT_LT] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), - }, - [4189] = { - [sym_file_descriptor] = ACTIONS(7022), - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7711), - [anon_sym_RPAREN] = ACTIONS(7022), - [anon_sym_PIPE_AMP] = ACTIONS(7022), - [anon_sym_AMP_AMP] = ACTIONS(7022), - [anon_sym_PIPE_PIPE] = ACTIONS(7022), - [anon_sym_LT] = ACTIONS(7711), - [anon_sym_GT] = ACTIONS(7711), - [anon_sym_GT_GT] = ACTIONS(7022), - [anon_sym_AMP_GT] = ACTIONS(7711), - [anon_sym_AMP_GT_GT] = ACTIONS(7022), - [anon_sym_LT_AMP] = ACTIONS(7022), - [anon_sym_GT_AMP] = ACTIONS(7022), - [anon_sym_LT_LT] = ACTIONS(7711), - [anon_sym_LT_LT_DASH] = ACTIONS(7022), - [anon_sym_LT_LT_LT] = ACTIONS(7022), - [sym_comment] = ACTIONS(56), - }, - [4190] = { - [sym_file_descriptor] = ACTIONS(7026), - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_RPAREN] = ACTIONS(7026), - [anon_sym_PIPE_AMP] = ACTIONS(7026), - [anon_sym_AMP_AMP] = ACTIONS(7026), - [anon_sym_PIPE_PIPE] = ACTIONS(7026), - [anon_sym_LT] = ACTIONS(7713), - [anon_sym_GT] = ACTIONS(7713), - [anon_sym_GT_GT] = ACTIONS(7026), - [anon_sym_AMP_GT] = ACTIONS(7713), - [anon_sym_AMP_GT_GT] = ACTIONS(7026), - [anon_sym_LT_AMP] = ACTIONS(7026), - [anon_sym_GT_AMP] = ACTIONS(7026), - [anon_sym_LT_LT] = ACTIONS(7713), - [anon_sym_LT_LT_DASH] = ACTIONS(7026), - [anon_sym_LT_LT_LT] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), - }, - [4191] = { - [sym_file_descriptor] = ACTIONS(7018), - [sym__concat] = ACTIONS(7018), - [sym_variable_name] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7709), - [anon_sym_PIPE_AMP] = ACTIONS(7018), - [anon_sym_AMP_AMP] = ACTIONS(7018), - [anon_sym_PIPE_PIPE] = ACTIONS(7018), - [anon_sym_LT] = ACTIONS(7709), - [anon_sym_GT] = ACTIONS(7709), - [anon_sym_GT_GT] = ACTIONS(7018), - [anon_sym_AMP_GT] = ACTIONS(7709), - [anon_sym_AMP_GT_GT] = ACTIONS(7018), - [anon_sym_LT_AMP] = ACTIONS(7018), - [anon_sym_GT_AMP] = ACTIONS(7018), - [sym__special_characters] = ACTIONS(7709), - [anon_sym_DQUOTE] = ACTIONS(7018), - [anon_sym_DOLLAR] = ACTIONS(7709), - [sym_raw_string] = ACTIONS(7018), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7018), - [anon_sym_BQUOTE] = ACTIONS(7018), - [anon_sym_LT_LPAREN] = ACTIONS(7018), - [anon_sym_GT_LPAREN] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7709), - }, - [4192] = { - [sym_file_descriptor] = ACTIONS(7022), - [sym__concat] = ACTIONS(7022), - [sym_variable_name] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7711), - [anon_sym_PIPE_AMP] = ACTIONS(7022), - [anon_sym_AMP_AMP] = ACTIONS(7022), - [anon_sym_PIPE_PIPE] = ACTIONS(7022), - [anon_sym_LT] = ACTIONS(7711), - [anon_sym_GT] = ACTIONS(7711), - [anon_sym_GT_GT] = ACTIONS(7022), - [anon_sym_AMP_GT] = ACTIONS(7711), - [anon_sym_AMP_GT_GT] = ACTIONS(7022), - [anon_sym_LT_AMP] = ACTIONS(7022), - [anon_sym_GT_AMP] = ACTIONS(7022), - [sym__special_characters] = ACTIONS(7711), - [anon_sym_DQUOTE] = ACTIONS(7022), - [anon_sym_DOLLAR] = ACTIONS(7711), - [sym_raw_string] = ACTIONS(7022), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7022), - [anon_sym_BQUOTE] = ACTIONS(7022), - [anon_sym_LT_LPAREN] = ACTIONS(7022), - [anon_sym_GT_LPAREN] = ACTIONS(7022), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7711), - }, - [4193] = { - [sym_file_descriptor] = ACTIONS(7026), - [sym__concat] = ACTIONS(7026), - [sym_variable_name] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_PIPE_AMP] = ACTIONS(7026), - [anon_sym_AMP_AMP] = ACTIONS(7026), - [anon_sym_PIPE_PIPE] = ACTIONS(7026), - [anon_sym_LT] = ACTIONS(7713), - [anon_sym_GT] = ACTIONS(7713), - [anon_sym_GT_GT] = ACTIONS(7026), - [anon_sym_AMP_GT] = ACTIONS(7713), - [anon_sym_AMP_GT_GT] = ACTIONS(7026), - [anon_sym_LT_AMP] = ACTIONS(7026), - [anon_sym_GT_AMP] = ACTIONS(7026), - [sym__special_characters] = ACTIONS(7713), - [anon_sym_DQUOTE] = ACTIONS(7026), - [anon_sym_DOLLAR] = ACTIONS(7713), - [sym_raw_string] = ACTIONS(7026), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7026), - [anon_sym_BQUOTE] = ACTIONS(7026), - [anon_sym_LT_LPAREN] = ACTIONS(7026), - [anon_sym_GT_LPAREN] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(7713), - }, - [4194] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_PIPE] = ACTIONS(5844), - [anon_sym_PIPE_AMP] = ACTIONS(4790), - [anon_sym_AMP_AMP] = ACTIONS(4790), - [anon_sym_PIPE_PIPE] = ACTIONS(4790), - [anon_sym_BQUOTE] = ACTIONS(4790), - [sym_comment] = ACTIONS(56), - }, - [4195] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_PIPE] = ACTIONS(5846), - [anon_sym_PIPE_AMP] = ACTIONS(4796), - [anon_sym_AMP_AMP] = ACTIONS(4796), - [anon_sym_PIPE_PIPE] = ACTIONS(4796), - [anon_sym_BQUOTE] = ACTIONS(4796), - [sym_comment] = ACTIONS(56), - }, - [4196] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_PIPE] = ACTIONS(5848), - [anon_sym_PIPE_AMP] = ACTIONS(4859), - [anon_sym_AMP_AMP] = ACTIONS(4859), - [anon_sym_PIPE_PIPE] = ACTIONS(4859), - [anon_sym_BQUOTE] = ACTIONS(4859), - [sym_comment] = ACTIONS(56), - }, - [4197] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8669), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4198] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8671), - [sym_comment] = ACTIONS(56), - }, - [4199] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8673), - [sym_comment] = ACTIONS(56), - }, - [4200] = { - [anon_sym_RBRACE] = ACTIONS(8673), - [sym_comment] = ACTIONS(56), - }, - [4201] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4359), - [anon_sym_RBRACE] = ACTIONS(8675), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4202] = { - [sym__concat] = ACTIONS(4871), - [anon_sym_PIPE] = ACTIONS(5858), - [anon_sym_PIPE_AMP] = ACTIONS(4871), - [anon_sym_AMP_AMP] = ACTIONS(4871), - [anon_sym_PIPE_PIPE] = ACTIONS(4871), - [anon_sym_BQUOTE] = ACTIONS(4871), - [sym_comment] = ACTIONS(56), - }, - [4203] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4361), - [anon_sym_RBRACE] = ACTIONS(8677), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4204] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_PIPE] = ACTIONS(5862), - [anon_sym_PIPE_AMP] = ACTIONS(4877), - [anon_sym_AMP_AMP] = ACTIONS(4877), - [anon_sym_PIPE_PIPE] = ACTIONS(4877), - [anon_sym_BQUOTE] = ACTIONS(4877), - [sym_comment] = ACTIONS(56), - }, - [4205] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4363), - [anon_sym_RBRACE] = ACTIONS(8679), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4206] = { - [sym__concat] = ACTIONS(4883), - [anon_sym_PIPE] = ACTIONS(5866), - [anon_sym_PIPE_AMP] = ACTIONS(4883), - [anon_sym_AMP_AMP] = ACTIONS(4883), - [anon_sym_PIPE_PIPE] = ACTIONS(4883), - [anon_sym_BQUOTE] = ACTIONS(4883), - [sym_comment] = ACTIONS(56), - }, - [4207] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8681), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4208] = { - [sym__concat] = ACTIONS(4889), - [anon_sym_PIPE] = ACTIONS(5870), - [anon_sym_PIPE_AMP] = ACTIONS(4889), - [anon_sym_AMP_AMP] = ACTIONS(4889), - [anon_sym_PIPE_PIPE] = ACTIONS(4889), - [anon_sym_BQUOTE] = ACTIONS(4889), - [sym_comment] = ACTIONS(56), - }, - [4209] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8683), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4210] = { - [sym_file_descriptor] = ACTIONS(7018), - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7709), - [anon_sym_PIPE_AMP] = ACTIONS(7018), - [anon_sym_AMP_AMP] = ACTIONS(7018), - [anon_sym_PIPE_PIPE] = ACTIONS(7018), - [anon_sym_LT] = ACTIONS(7709), - [anon_sym_GT] = ACTIONS(7709), - [anon_sym_GT_GT] = ACTIONS(7018), - [anon_sym_AMP_GT] = ACTIONS(7709), - [anon_sym_AMP_GT_GT] = ACTIONS(7018), - [anon_sym_LT_AMP] = ACTIONS(7018), - [anon_sym_GT_AMP] = ACTIONS(7018), - [anon_sym_LT_LT] = ACTIONS(7709), - [anon_sym_LT_LT_DASH] = ACTIONS(7018), - [anon_sym_LT_LT_LT] = ACTIONS(7018), - [anon_sym_BQUOTE] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), - }, - [4211] = { - [sym_file_descriptor] = ACTIONS(7022), - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7711), - [anon_sym_PIPE_AMP] = ACTIONS(7022), - [anon_sym_AMP_AMP] = ACTIONS(7022), - [anon_sym_PIPE_PIPE] = ACTIONS(7022), - [anon_sym_LT] = ACTIONS(7711), - [anon_sym_GT] = ACTIONS(7711), - [anon_sym_GT_GT] = ACTIONS(7022), - [anon_sym_AMP_GT] = ACTIONS(7711), - [anon_sym_AMP_GT_GT] = ACTIONS(7022), - [anon_sym_LT_AMP] = ACTIONS(7022), - [anon_sym_GT_AMP] = ACTIONS(7022), - [anon_sym_LT_LT] = ACTIONS(7711), - [anon_sym_LT_LT_DASH] = ACTIONS(7022), - [anon_sym_LT_LT_LT] = ACTIONS(7022), - [anon_sym_BQUOTE] = ACTIONS(7022), - [sym_comment] = ACTIONS(56), - }, - [4212] = { - [sym_file_descriptor] = ACTIONS(7026), - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_PIPE_AMP] = ACTIONS(7026), - [anon_sym_AMP_AMP] = ACTIONS(7026), - [anon_sym_PIPE_PIPE] = ACTIONS(7026), - [anon_sym_LT] = ACTIONS(7713), - [anon_sym_GT] = ACTIONS(7713), - [anon_sym_GT_GT] = ACTIONS(7026), - [anon_sym_AMP_GT] = ACTIONS(7713), - [anon_sym_AMP_GT_GT] = ACTIONS(7026), - [anon_sym_LT_AMP] = ACTIONS(7026), - [anon_sym_GT_AMP] = ACTIONS(7026), - [anon_sym_LT_LT] = ACTIONS(7713), - [anon_sym_LT_LT_DASH] = ACTIONS(7026), - [anon_sym_LT_LT_LT] = ACTIONS(7026), - [anon_sym_BQUOTE] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), - }, - [4213] = { - [sym__heredoc_middle] = ACTIONS(7018), - [sym__heredoc_end] = ACTIONS(7018), - [anon_sym_DOLLAR] = ACTIONS(7709), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), - }, - [4214] = { - [sym__heredoc_middle] = ACTIONS(7022), - [sym__heredoc_end] = ACTIONS(7022), - [anon_sym_DOLLAR] = ACTIONS(7711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7022), - [sym_comment] = ACTIONS(56), - }, - [4215] = { - [sym__heredoc_middle] = ACTIONS(7026), - [sym__heredoc_end] = ACTIONS(7026), - [anon_sym_DOLLAR] = ACTIONS(7713), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), - }, - [4216] = { - [sym_file_descriptor] = ACTIONS(4169), - [sym_variable_name] = ACTIONS(4169), - [anon_sym_esac] = ACTIONS(4171), - [anon_sym_PIPE] = ACTIONS(4171), - [anon_sym_SEMI_SEMI] = ACTIONS(4171), - [anon_sym_PIPE_AMP] = ACTIONS(4171), - [anon_sym_AMP_AMP] = ACTIONS(4171), - [anon_sym_PIPE_PIPE] = ACTIONS(4171), - [anon_sym_LT] = ACTIONS(4171), - [anon_sym_GT] = ACTIONS(4171), - [anon_sym_GT_GT] = ACTIONS(4171), - [anon_sym_AMP_GT] = ACTIONS(4171), - [anon_sym_AMP_GT_GT] = ACTIONS(4171), - [anon_sym_LT_AMP] = ACTIONS(4171), - [anon_sym_GT_AMP] = ACTIONS(4171), - [sym__special_characters] = ACTIONS(4171), - [anon_sym_DQUOTE] = ACTIONS(4171), - [anon_sym_DOLLAR] = ACTIONS(4171), - [sym_raw_string] = ACTIONS(4171), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4171), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4171), - [anon_sym_BQUOTE] = ACTIONS(4171), - [anon_sym_LT_LPAREN] = ACTIONS(4171), - [anon_sym_GT_LPAREN] = ACTIONS(4171), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4171), - [anon_sym_SEMI] = ACTIONS(4171), - [anon_sym_LF] = ACTIONS(4171), - [anon_sym_AMP] = ACTIONS(4171), - }, - [4217] = { - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [4218] = { - [aux_sym_concatenation_repeat1] = STATE(4218), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(8685), - [sym_variable_name] = ACTIONS(1886), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [sym__special_characters] = ACTIONS(1888), - [anon_sym_DQUOTE] = ACTIONS(1888), - [anon_sym_DOLLAR] = ACTIONS(1888), - [sym_raw_string] = ACTIONS(1888), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1888), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1888), - [anon_sym_BQUOTE] = ACTIONS(1888), - [anon_sym_LT_LPAREN] = ACTIONS(1888), - [anon_sym_GT_LPAREN] = ACTIONS(1888), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1888), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), - }, - [4219] = { - [sym_file_descriptor] = ACTIONS(1923), - [sym__concat] = ACTIONS(1923), - [sym_variable_name] = ACTIONS(1923), - [anon_sym_esac] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1925), - [anon_sym_GT_GT] = ACTIONS(1925), - [anon_sym_AMP_GT] = ACTIONS(1925), - [anon_sym_AMP_GT_GT] = ACTIONS(1925), - [anon_sym_LT_AMP] = ACTIONS(1925), - [anon_sym_GT_AMP] = ACTIONS(1925), - [sym__special_characters] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [sym_raw_string] = ACTIONS(1925), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1925), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1925), - [anon_sym_BQUOTE] = ACTIONS(1925), - [anon_sym_LT_LPAREN] = ACTIONS(1925), - [anon_sym_GT_LPAREN] = ACTIONS(1925), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1925), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - }, - [4220] = { - [sym_concatenation] = STATE(4369), - [sym_string] = STATE(4368), - [sym_simple_expansion] = STATE(4368), - [sym_string_expansion] = STATE(4368), - [sym_expansion] = STATE(4368), - [sym_command_substitution] = STATE(4368), - [sym_process_substitution] = STATE(4368), - [anon_sym_RBRACE] = ACTIONS(8688), - [sym__special_characters] = ACTIONS(8690), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(8692), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8694), - }, - [4221] = { - [sym_file_descriptor] = ACTIONS(1968), - [sym__concat] = ACTIONS(1968), - [sym_variable_name] = ACTIONS(1968), - [anon_sym_esac] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_AMP_GT] = ACTIONS(1970), - [anon_sym_AMP_GT_GT] = ACTIONS(1970), - [anon_sym_LT_AMP] = ACTIONS(1970), - [anon_sym_GT_AMP] = ACTIONS(1970), - [sym__special_characters] = ACTIONS(1970), - [anon_sym_DQUOTE] = ACTIONS(1970), - [anon_sym_DOLLAR] = ACTIONS(1970), - [sym_raw_string] = ACTIONS(1970), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1970), - [anon_sym_BQUOTE] = ACTIONS(1970), - [anon_sym_LT_LPAREN] = ACTIONS(1970), - [anon_sym_GT_LPAREN] = ACTIONS(1970), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(1970), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), - }, - [4222] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8696), - }, - [4223] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8698), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4224] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(8700), - [sym_comment] = ACTIONS(56), - }, - [4225] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4375), - [anon_sym_RBRACE] = ACTIONS(8702), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8704), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4226] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4378), - [anon_sym_RBRACE] = ACTIONS(8706), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8708), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4227] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4380), - [anon_sym_RBRACE] = ACTIONS(8688), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8710), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4228] = { - [sym_file_descriptor] = ACTIONS(2022), - [sym__concat] = ACTIONS(2022), - [sym_variable_name] = ACTIONS(2022), - [anon_sym_esac] = ACTIONS(2024), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym_AMP_GT] = ACTIONS(2024), - [anon_sym_AMP_GT_GT] = ACTIONS(2024), - [anon_sym_LT_AMP] = ACTIONS(2024), - [anon_sym_GT_AMP] = ACTIONS(2024), - [sym__special_characters] = ACTIONS(2024), - [anon_sym_DQUOTE] = ACTIONS(2024), - [anon_sym_DOLLAR] = ACTIONS(2024), - [sym_raw_string] = ACTIONS(2024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2024), - [anon_sym_BQUOTE] = ACTIONS(2024), - [anon_sym_LT_LPAREN] = ACTIONS(2024), - [anon_sym_GT_LPAREN] = ACTIONS(2024), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2024), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), - }, - [4229] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8712), - }, - [4230] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8714), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4231] = { - [sym_file_descriptor] = ACTIONS(2030), - [sym__concat] = ACTIONS(2030), - [sym_variable_name] = ACTIONS(2030), - [anon_sym_esac] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2032), - [anon_sym_GT] = ACTIONS(2032), - [anon_sym_GT_GT] = ACTIONS(2032), - [anon_sym_AMP_GT] = ACTIONS(2032), - [anon_sym_AMP_GT_GT] = ACTIONS(2032), - [anon_sym_LT_AMP] = ACTIONS(2032), - [anon_sym_GT_AMP] = ACTIONS(2032), - [sym__special_characters] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_DOLLAR] = ACTIONS(2032), - [sym_raw_string] = ACTIONS(2032), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2032), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2032), - [anon_sym_BQUOTE] = ACTIONS(2032), - [anon_sym_LT_LPAREN] = ACTIONS(2032), - [anon_sym_GT_LPAREN] = ACTIONS(2032), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2032), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), - }, - [4232] = { - [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8716), - }, - [4233] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8688), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4234] = { - [sym_file_descriptor] = ACTIONS(2190), - [sym__concat] = ACTIONS(2190), - [sym_variable_name] = ACTIONS(2190), - [anon_sym_esac] = ACTIONS(2192), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_AMP_GT] = ACTIONS(2192), - [anon_sym_AMP_GT_GT] = ACTIONS(2192), - [anon_sym_LT_AMP] = ACTIONS(2192), - [anon_sym_GT_AMP] = ACTIONS(2192), - [sym__special_characters] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2192), - [sym_raw_string] = ACTIONS(2192), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2192), - [anon_sym_BQUOTE] = ACTIONS(2192), - [anon_sym_LT_LPAREN] = ACTIONS(2192), - [anon_sym_GT_LPAREN] = ACTIONS(2192), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), - }, - [4235] = { - [sym_file_descriptor] = ACTIONS(2396), - [sym__concat] = ACTIONS(2396), - [sym_variable_name] = ACTIONS(2396), - [anon_sym_esac] = ACTIONS(2398), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_GT] = ACTIONS(2398), - [anon_sym_GT_GT] = ACTIONS(2398), - [anon_sym_AMP_GT] = ACTIONS(2398), - [anon_sym_AMP_GT_GT] = ACTIONS(2398), - [anon_sym_LT_AMP] = ACTIONS(2398), - [anon_sym_GT_AMP] = ACTIONS(2398), - [sym__special_characters] = ACTIONS(2398), - [anon_sym_DQUOTE] = ACTIONS(2398), - [anon_sym_DOLLAR] = ACTIONS(2398), - [sym_raw_string] = ACTIONS(2398), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2398), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2398), - [anon_sym_BQUOTE] = ACTIONS(2398), - [anon_sym_LT_LPAREN] = ACTIONS(2398), - [anon_sym_GT_LPAREN] = ACTIONS(2398), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), - }, - [4236] = { - [sym_file_redirect] = STATE(2034), - [sym_file_descriptor] = ACTIONS(7969), - [anon_sym_esac] = ACTIONS(4388), - [anon_sym_PIPE] = ACTIONS(4388), - [anon_sym_SEMI_SEMI] = ACTIONS(4388), - [anon_sym_PIPE_AMP] = ACTIONS(4388), - [anon_sym_AMP_AMP] = ACTIONS(4388), - [anon_sym_PIPE_PIPE] = ACTIONS(4388), - [anon_sym_LT] = ACTIONS(7971), - [anon_sym_GT] = ACTIONS(7971), - [anon_sym_GT_GT] = ACTIONS(7971), - [anon_sym_AMP_GT] = ACTIONS(7971), - [anon_sym_AMP_GT_GT] = ACTIONS(7971), - [anon_sym_LT_AMP] = ACTIONS(7971), - [anon_sym_GT_AMP] = ACTIONS(7971), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4388), - [anon_sym_LF] = ACTIONS(4388), - [anon_sym_AMP] = ACTIONS(4388), - }, - [4237] = { - [sym_concatenation] = STATE(2037), - [sym_string] = STATE(4385), - [sym_simple_expansion] = STATE(4385), - [sym_string_expansion] = STATE(4385), - [sym_expansion] = STATE(4385), - [sym_command_substitution] = STATE(4385), - [sym_process_substitution] = STATE(4385), - [sym__special_characters] = ACTIONS(8718), - [anon_sym_DQUOTE] = ACTIONS(8459), - [anon_sym_DOLLAR] = ACTIONS(8461), - [sym_raw_string] = ACTIONS(8720), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8467), - [anon_sym_BQUOTE] = ACTIONS(8469), - [anon_sym_LT_LPAREN] = ACTIONS(8471), - [anon_sym_GT_LPAREN] = ACTIONS(8471), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8722), - }, - [4238] = { - [aux_sym_concatenation_repeat1] = STATE(4387), - [sym__concat] = ACTIONS(8724), - [anon_sym_esac] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2412), - [anon_sym_SEMI_SEMI] = ACTIONS(2412), - [anon_sym_PIPE_AMP] = ACTIONS(2412), - [anon_sym_AMP_AMP] = ACTIONS(2412), - [anon_sym_PIPE_PIPE] = ACTIONS(2412), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_LF] = ACTIONS(2412), - [anon_sym_AMP] = ACTIONS(2412), - }, - [4239] = { - [sym_simple_expansion] = STATE(134), - [sym_expansion] = STATE(134), - [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(4389), - [anon_sym_DQUOTE] = ACTIONS(8726), - [anon_sym_DOLLAR] = ACTIONS(232), - [sym__string_content] = ACTIONS(234), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), - [anon_sym_BQUOTE] = ACTIONS(240), - [sym_comment] = ACTIONS(182), - }, - [4240] = { - [sym_string] = STATE(4391), - [anon_sym_DQUOTE] = ACTIONS(8459), - [anon_sym_DOLLAR] = ACTIONS(8728), - [sym_raw_string] = ACTIONS(8730), - [anon_sym_POUND] = ACTIONS(8728), - [anon_sym_DASH] = ACTIONS(8728), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8732), - [anon_sym_STAR] = ACTIONS(8728), - [anon_sym_AT] = ACTIONS(8728), - [anon_sym_QMARK] = ACTIONS(8728), - [anon_sym_0] = ACTIONS(8734), - [anon_sym__] = ACTIONS(8734), - }, - [4241] = { - [aux_sym_concatenation_repeat1] = STATE(4387), - [sym__concat] = ACTIONS(8724), - [anon_sym_esac] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_SEMI_SEMI] = ACTIONS(2424), - [anon_sym_PIPE_AMP] = ACTIONS(2424), - [anon_sym_AMP_AMP] = ACTIONS(2424), - [anon_sym_PIPE_PIPE] = ACTIONS(2424), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_LF] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2424), - }, - [4242] = { - [sym_subscript] = STATE(4397), - [sym_variable_name] = ACTIONS(8736), - [anon_sym_DOLLAR] = ACTIONS(8738), - [anon_sym_POUND] = ACTIONS(8740), - [anon_sym_DASH] = ACTIONS(8738), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8742), - [anon_sym_STAR] = ACTIONS(8738), - [anon_sym_AT] = ACTIONS(8738), - [anon_sym_QMARK] = ACTIONS(8738), - [anon_sym_0] = ACTIONS(8744), - [anon_sym__] = ACTIONS(8744), - }, - [4243] = { - [sym_for_statement] = STATE(4398), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4398), - [sym_function_definition] = STATE(4398), - [sym_subshell] = STATE(4398), - [sym_pipeline] = STATE(4398), - [sym_list] = STATE(4398), - [sym_command] = STATE(4398), - [sym_command_name] = STATE(168), - [sym_bracket_command] = STATE(4398), - [sym_variable_assignment] = STATE(4399), - [sym_declaration_command] = STATE(4398), - [sym_unset_command] = STATE(4398), - [sym_subscript] = STATE(170), - [sym_file_redirect] = STATE(30), - [sym_concatenation] = STATE(171), - [sym_string] = STATE(161), - [sym_simple_expansion] = STATE(161), - [sym_string_expansion] = STATE(161), - [sym_expansion] = STATE(161), - [sym_command_substitution] = STATE(161), - [sym_process_substitution] = STATE(161), - [aux_sym_command_repeat1] = STATE(172), - [sym_file_descriptor] = ACTIONS(10), - [sym_variable_name] = ACTIONS(264), - [anon_sym_for] = ACTIONS(266), - [anon_sym_while] = ACTIONS(268), - [anon_sym_if] = ACTIONS(270), - [anon_sym_case] = ACTIONS(272), - [anon_sym_function] = ACTIONS(274), - [anon_sym_LPAREN] = ACTIONS(276), - [anon_sym_LBRACK] = ACTIONS(278), - [anon_sym_LBRACK_LBRACK] = ACTIONS(280), - [anon_sym_declare] = ACTIONS(282), - [anon_sym_typeset] = ACTIONS(282), - [anon_sym_export] = ACTIONS(282), - [anon_sym_readonly] = ACTIONS(282), - [anon_sym_local] = ACTIONS(282), - [anon_sym_unset] = ACTIONS(284), - [anon_sym_unsetenv] = ACTIONS(284), - [anon_sym_LT] = ACTIONS(36), - [anon_sym_GT] = ACTIONS(36), - [anon_sym_GT_GT] = ACTIONS(38), - [anon_sym_AMP_GT] = ACTIONS(36), - [anon_sym_AMP_GT_GT] = ACTIONS(38), - [anon_sym_LT_AMP] = ACTIONS(38), - [anon_sym_GT_AMP] = ACTIONS(38), - [sym__special_characters] = ACTIONS(286), - [anon_sym_DQUOTE] = ACTIONS(288), - [anon_sym_DOLLAR] = ACTIONS(290), - [sym_raw_string] = ACTIONS(292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), - [anon_sym_BQUOTE] = ACTIONS(298), - [anon_sym_LT_LPAREN] = ACTIONS(300), - [anon_sym_GT_LPAREN] = ACTIONS(300), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(302), - }, - [4244] = { - [sym_for_statement] = STATE(4400), - [sym_while_statement] = STATE(4400), - [sym_if_statement] = STATE(4400), - [sym_case_statement] = STATE(4400), - [sym_function_definition] = STATE(4400), - [sym_subshell] = STATE(4400), - [sym_pipeline] = STATE(4400), - [sym_list] = STATE(4400), - [sym_command] = STATE(4400), + [sym_for_statement] = STATE(4108), + [sym_while_statement] = STATE(4108), + [sym_if_statement] = STATE(4108), + [sym_case_statement] = STATE(4108), + [sym_function_definition] = STATE(4108), + [sym_subshell] = STATE(4108), + [sym_pipeline] = STATE(4108), + [sym_list] = STATE(4108), + [sym_command] = STATE(4108), [sym_command_name] = STATE(190), - [sym_bracket_command] = STATE(4400), - [sym_variable_assignment] = STATE(4401), - [sym_declaration_command] = STATE(4400), - [sym_unset_command] = STATE(4400), + [sym_bracket_command] = STATE(4108), + [sym_variable_assignment] = STATE(4109), + [sym_declaration_command] = STATE(4108), + [sym_unset_command] = STATE(4108), [sym_subscript] = STATE(192), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(171), @@ -104014,7 +94118,9825 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(334), }, + [3773] = { + [sym_for_statement] = STATE(4110), + [sym_while_statement] = STATE(4110), + [sym_if_statement] = STATE(4110), + [sym_case_statement] = STATE(4110), + [sym_function_definition] = STATE(4110), + [sym_subshell] = STATE(4110), + [sym_pipeline] = STATE(4110), + [sym_list] = STATE(4110), + [sym_command] = STATE(4110), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(4110), + [sym_variable_assignment] = STATE(4111), + [sym_declaration_command] = STATE(4110), + [sym_unset_command] = STATE(4110), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(302), + }, + [3774] = { + [aux_sym_concatenation_repeat1] = STATE(4095), + [sym_file_descriptor] = ACTIONS(2458), + [sym__concat] = ACTIONS(8173), + [anon_sym_esac] = ACTIONS(2460), + [anon_sym_PIPE] = ACTIONS(2460), + [anon_sym_SEMI_SEMI] = ACTIONS(2460), + [anon_sym_PIPE_AMP] = ACTIONS(2460), + [anon_sym_AMP_AMP] = ACTIONS(2460), + [anon_sym_PIPE_PIPE] = ACTIONS(2460), + [anon_sym_LT] = ACTIONS(2460), + [anon_sym_GT] = ACTIONS(2460), + [anon_sym_GT_GT] = ACTIONS(2460), + [anon_sym_AMP_GT] = ACTIONS(2460), + [anon_sym_AMP_GT_GT] = ACTIONS(2460), + [anon_sym_LT_AMP] = ACTIONS(2460), + [anon_sym_GT_AMP] = ACTIONS(2460), + [anon_sym_LT_LT] = ACTIONS(2460), + [anon_sym_LT_LT_DASH] = ACTIONS(2460), + [anon_sym_LT_LT_LT] = ACTIONS(2460), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2460), + [anon_sym_LF] = ACTIONS(2460), + [anon_sym_AMP] = ACTIONS(2460), + }, + [3775] = { + [aux_sym_concatenation_repeat1] = STATE(4095), + [sym_file_descriptor] = ACTIONS(2462), + [sym__concat] = ACTIONS(8173), + [anon_sym_esac] = ACTIONS(2464), + [anon_sym_PIPE] = ACTIONS(2464), + [anon_sym_SEMI_SEMI] = ACTIONS(2464), + [anon_sym_PIPE_AMP] = ACTIONS(2464), + [anon_sym_AMP_AMP] = ACTIONS(2464), + [anon_sym_PIPE_PIPE] = ACTIONS(2464), + [anon_sym_LT] = ACTIONS(2464), + [anon_sym_GT] = ACTIONS(2464), + [anon_sym_GT_GT] = ACTIONS(2464), + [anon_sym_AMP_GT] = ACTIONS(2464), + [anon_sym_AMP_GT_GT] = ACTIONS(2464), + [anon_sym_LT_AMP] = ACTIONS(2464), + [anon_sym_GT_AMP] = ACTIONS(2464), + [anon_sym_LT_LT] = ACTIONS(2464), + [anon_sym_LT_LT_DASH] = ACTIONS(2464), + [anon_sym_LT_LT_LT] = ACTIONS(2464), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2464), + [anon_sym_LF] = ACTIONS(2464), + [anon_sym_AMP] = ACTIONS(2464), + }, + [3776] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(3776), + [sym_file_descriptor] = ACTIONS(8195), + [anon_sym_esac] = ACTIONS(2469), + [anon_sym_PIPE] = ACTIONS(2469), + [anon_sym_SEMI_SEMI] = ACTIONS(2469), + [anon_sym_PIPE_AMP] = ACTIONS(2469), + [anon_sym_AMP_AMP] = ACTIONS(2469), + [anon_sym_PIPE_PIPE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(8198), + [anon_sym_GT] = ACTIONS(8198), + [anon_sym_GT_GT] = ACTIONS(8198), + [anon_sym_AMP_GT] = ACTIONS(8198), + [anon_sym_AMP_GT_GT] = ACTIONS(8198), + [anon_sym_LT_AMP] = ACTIONS(8198), + [anon_sym_GT_AMP] = ACTIONS(8198), + [anon_sym_LT_LT] = ACTIONS(2474), + [anon_sym_LT_LT_DASH] = ACTIONS(2474), + [anon_sym_LT_LT_LT] = ACTIONS(8201), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_LF] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2469), + }, + [3777] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(3776), + [sym_file_descriptor] = ACTIONS(6677), + [anon_sym_esac] = ACTIONS(2480), + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_SEMI_SEMI] = ACTIONS(2480), + [anon_sym_PIPE_AMP] = ACTIONS(2480), + [anon_sym_AMP_AMP] = ACTIONS(2480), + [anon_sym_PIPE_PIPE] = ACTIONS(2480), + [anon_sym_LT] = ACTIONS(6681), + [anon_sym_GT] = ACTIONS(6681), + [anon_sym_GT_GT] = ACTIONS(6681), + [anon_sym_AMP_GT] = ACTIONS(6681), + [anon_sym_AMP_GT_GT] = ACTIONS(6681), + [anon_sym_LT_AMP] = ACTIONS(6681), + [anon_sym_GT_AMP] = ACTIONS(6681), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6683), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym_LF] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + }, + [3778] = { + [sym_concatenation] = STATE(3293), + [sym_string] = STATE(3292), + [sym_simple_expansion] = STATE(3292), + [sym_string_expansion] = STATE(3292), + [sym_expansion] = STATE(3292), + [sym_command_substitution] = STATE(3292), + [sym_process_substitution] = STATE(3292), + [aux_sym_command_repeat2] = STATE(3778), + [sym_file_descriptor] = ACTIONS(1563), + [anon_sym_esac] = ACTIONS(1565), + [anon_sym_PIPE] = ACTIONS(1565), + [anon_sym_SEMI_SEMI] = ACTIONS(1565), + [anon_sym_PIPE_AMP] = ACTIONS(1565), + [anon_sym_AMP_AMP] = ACTIONS(1565), + [anon_sym_PIPE_PIPE] = ACTIONS(1565), + [anon_sym_EQ_TILDE] = ACTIONS(8204), + [anon_sym_EQ_EQ] = ACTIONS(8204), + [anon_sym_LT] = ACTIONS(1565), + [anon_sym_GT] = ACTIONS(1565), + [anon_sym_GT_GT] = ACTIONS(1565), + [anon_sym_AMP_GT] = ACTIONS(1565), + [anon_sym_AMP_GT_GT] = ACTIONS(1565), + [anon_sym_LT_AMP] = ACTIONS(1565), + [anon_sym_GT_AMP] = ACTIONS(1565), + [anon_sym_LT_LT] = ACTIONS(1565), + [anon_sym_LT_LT_DASH] = ACTIONS(1565), + [anon_sym_LT_LT_LT] = ACTIONS(1565), + [sym__special_characters] = ACTIONS(8207), + [anon_sym_DQUOTE] = ACTIONS(8210), + [anon_sym_DOLLAR] = ACTIONS(8213), + [sym_raw_string] = ACTIONS(8216), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8219), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8222), + [anon_sym_BQUOTE] = ACTIONS(8225), + [anon_sym_LT_LPAREN] = ACTIONS(8228), + [anon_sym_GT_LPAREN] = ACTIONS(8228), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(8216), + [anon_sym_SEMI] = ACTIONS(1565), + [anon_sym_LF] = ACTIONS(1565), + [anon_sym_AMP] = ACTIONS(1565), + }, + [3779] = { + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_esac] = ACTIONS(8231), + [anon_sym_SEMI_SEMI] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(8233), + [anon_sym_DQUOTE] = ACTIONS(8235), + [anon_sym_DOLLAR] = ACTIONS(8237), + [sym_raw_string] = ACTIONS(8235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8235), + [anon_sym_BQUOTE] = ACTIONS(8235), + [anon_sym_LT_LPAREN] = ACTIONS(8235), + [anon_sym_GT_LPAREN] = ACTIONS(8235), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8233), + }, + [3780] = { + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(6675), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6675), + [anon_sym_LF] = ACTIONS(6675), + [anon_sym_AMP] = ACTIONS(6675), + }, + [3781] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(6675), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(6675), + [anon_sym_LF] = ACTIONS(6675), + [anon_sym_AMP] = ACTIONS(6675), + }, + [3782] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [sym_concatenation] = STATE(3293), + [sym_string] = STATE(3292), + [sym_simple_expansion] = STATE(3292), + [sym_string_expansion] = STATE(3292), + [sym_expansion] = STATE(3292), + [sym_command_substitution] = STATE(3292), + [sym_process_substitution] = STATE(3292), + [aux_sym_while_statement_repeat1] = STATE(4112), + [aux_sym_command_repeat2] = STATE(3778), + [sym_file_descriptor] = ACTIONS(6677), + [anon_sym_esac] = ACTIONS(2480), + [anon_sym_PIPE] = ACTIONS(2480), + [anon_sym_SEMI_SEMI] = ACTIONS(2480), + [anon_sym_PIPE_AMP] = ACTIONS(2480), + [anon_sym_AMP_AMP] = ACTIONS(2480), + [anon_sym_PIPE_PIPE] = ACTIONS(2480), + [anon_sym_EQ_TILDE] = ACTIONS(6679), + [anon_sym_EQ_EQ] = ACTIONS(6679), + [anon_sym_LT] = ACTIONS(6681), + [anon_sym_GT] = ACTIONS(6681), + [anon_sym_GT_GT] = ACTIONS(6681), + [anon_sym_AMP_GT] = ACTIONS(6681), + [anon_sym_AMP_GT_GT] = ACTIONS(6681), + [anon_sym_LT_AMP] = ACTIONS(6681), + [anon_sym_GT_AMP] = ACTIONS(6681), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6683), + [sym__special_characters] = ACTIONS(6685), + [anon_sym_DQUOTE] = ACTIONS(6687), + [anon_sym_DOLLAR] = ACTIONS(6689), + [sym_raw_string] = ACTIONS(6691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6693), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6695), + [anon_sym_BQUOTE] = ACTIONS(6697), + [anon_sym_LT_LPAREN] = ACTIONS(6699), + [anon_sym_GT_LPAREN] = ACTIONS(6699), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6691), + [anon_sym_SEMI] = ACTIONS(2480), + [anon_sym_LF] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + }, + [3783] = { + [anon_sym_esac] = ACTIONS(8231), + [sym__special_characters] = ACTIONS(8237), + [anon_sym_DQUOTE] = ACTIONS(8235), + [anon_sym_DOLLAR] = ACTIONS(8237), + [sym_raw_string] = ACTIONS(8235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8235), + [anon_sym_BQUOTE] = ACTIONS(8235), + [anon_sym_LT_LPAREN] = ACTIONS(8235), + [anon_sym_GT_LPAREN] = ACTIONS(8235), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8233), + }, + [3784] = { + [anon_sym_esac] = ACTIONS(8239), + [anon_sym_PIPE] = ACTIONS(6669), + [anon_sym_SEMI_SEMI] = ACTIONS(8241), + [anon_sym_PIPE_AMP] = ACTIONS(6669), + [anon_sym_AMP_AMP] = ACTIONS(6673), + [anon_sym_PIPE_PIPE] = ACTIONS(6673), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6675), + [anon_sym_LF] = ACTIONS(6675), + [anon_sym_AMP] = ACTIONS(6675), + }, + [3785] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_esac] = ACTIONS(8239), + [anon_sym_PIPE] = ACTIONS(6669), + [anon_sym_SEMI_SEMI] = ACTIONS(8241), + [anon_sym_PIPE_AMP] = ACTIONS(6669), + [anon_sym_AMP_AMP] = ACTIONS(6673), + [anon_sym_PIPE_PIPE] = ACTIONS(6673), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(6675), + [anon_sym_LF] = ACTIONS(6675), + [anon_sym_AMP] = ACTIONS(6675), + }, + [3786] = { + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_esac] = ACTIONS(8243), + [anon_sym_SEMI_SEMI] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(8245), + [anon_sym_DQUOTE] = ACTIONS(8247), + [anon_sym_DOLLAR] = ACTIONS(8249), + [sym_raw_string] = ACTIONS(8247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8247), + [anon_sym_BQUOTE] = ACTIONS(8247), + [anon_sym_LT_LPAREN] = ACTIONS(8247), + [anon_sym_GT_LPAREN] = ACTIONS(8247), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8245), + }, + [3787] = { + [anon_sym_esac] = ACTIONS(8243), + [sym__special_characters] = ACTIONS(8249), + [anon_sym_DQUOTE] = ACTIONS(8247), + [anon_sym_DOLLAR] = ACTIONS(8249), + [sym_raw_string] = ACTIONS(8247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8247), + [anon_sym_BQUOTE] = ACTIONS(8247), + [anon_sym_LT_LPAREN] = ACTIONS(8247), + [anon_sym_GT_LPAREN] = ACTIONS(8247), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8245), + }, + [3788] = { + [anon_sym_esac] = ACTIONS(8251), + [anon_sym_PIPE] = ACTIONS(6669), + [anon_sym_SEMI_SEMI] = ACTIONS(8253), + [anon_sym_PIPE_AMP] = ACTIONS(6669), + [anon_sym_AMP_AMP] = ACTIONS(6673), + [anon_sym_PIPE_PIPE] = ACTIONS(6673), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6675), + [anon_sym_LF] = ACTIONS(6675), + [anon_sym_AMP] = ACTIONS(6675), + }, + [3789] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_esac] = ACTIONS(8251), + [anon_sym_PIPE] = ACTIONS(6669), + [anon_sym_SEMI_SEMI] = ACTIONS(8253), + [anon_sym_PIPE_AMP] = ACTIONS(6669), + [anon_sym_AMP_AMP] = ACTIONS(6673), + [anon_sym_PIPE_PIPE] = ACTIONS(6673), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(6675), + [anon_sym_LF] = ACTIONS(6675), + [anon_sym_AMP] = ACTIONS(6675), + }, + [3790] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4802), + [anon_sym_RPAREN] = ACTIONS(4802), + [sym_comment] = ACTIONS(56), + }, + [3791] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4808), + [anon_sym_RPAREN] = ACTIONS(4808), + [sym_comment] = ACTIONS(56), + }, + [3792] = { + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4871), + [anon_sym_RPAREN] = ACTIONS(4871), + [sym_comment] = ACTIONS(56), + }, + [3793] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8255), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3794] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8257), + [sym_comment] = ACTIONS(56), + }, + [3795] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8259), + [sym_comment] = ACTIONS(56), + }, + [3796] = { + [anon_sym_RBRACE] = ACTIONS(8259), + [sym_comment] = ACTIONS(56), + }, + [3797] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4119), + [anon_sym_RBRACE] = ACTIONS(8261), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3798] = { + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4883), + [anon_sym_RPAREN] = ACTIONS(4883), + [sym_comment] = ACTIONS(56), + }, + [3799] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4121), + [anon_sym_RBRACE] = ACTIONS(8263), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3800] = { + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4889), + [anon_sym_RPAREN] = ACTIONS(4889), + [sym_comment] = ACTIONS(56), + }, + [3801] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4123), + [anon_sym_RBRACE] = ACTIONS(8265), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3802] = { + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4895), + [anon_sym_RPAREN] = ACTIONS(4895), + [sym_comment] = ACTIONS(56), + }, + [3803] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8267), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3804] = { + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4901), + [anon_sym_RPAREN] = ACTIONS(4901), + [sym_comment] = ACTIONS(56), + }, + [3805] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8269), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3806] = { + [sym__special_characters] = ACTIONS(6597), + [anon_sym_DQUOTE] = ACTIONS(6599), + [anon_sym_DOLLAR] = ACTIONS(6597), + [sym_raw_string] = ACTIONS(6599), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6599), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6599), + [anon_sym_BQUOTE] = ACTIONS(6599), + [anon_sym_LT_LPAREN] = ACTIONS(6599), + [anon_sym_GT_LPAREN] = ACTIONS(6599), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6597), + }, + [3807] = { + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8271), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), + }, + [3808] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8271), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), + }, + [3809] = { + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(4128), + [sym_while_statement] = STATE(4128), + [sym_if_statement] = STATE(4128), + [sym_case_statement] = STATE(4128), + [sym_function_definition] = STATE(4128), + [sym_subshell] = STATE(4128), + [sym_pipeline] = STATE(4128), + [sym_list] = STATE(4128), + [sym_command] = STATE(4128), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(4128), + [sym_variable_assignment] = STATE(4129), + [sym_declaration_command] = STATE(4128), + [sym_unset_command] = STATE(4128), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(4130), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(8273), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [3810] = { + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(4128), + [sym_while_statement] = STATE(4128), + [sym_if_statement] = STATE(4128), + [sym_case_statement] = STATE(4128), + [sym_function_definition] = STATE(4128), + [sym_subshell] = STATE(4128), + [sym_pipeline] = STATE(4128), + [sym_list] = STATE(4128), + [sym_command] = STATE(4128), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(4128), + [sym_variable_assignment] = STATE(4129), + [sym_declaration_command] = STATE(4128), + [sym_unset_command] = STATE(4128), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(4131), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(8273), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [3811] = { + [sym__special_characters] = ACTIONS(6715), + [anon_sym_DQUOTE] = ACTIONS(6717), + [anon_sym_DOLLAR] = ACTIONS(6715), + [sym_raw_string] = ACTIONS(6717), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6717), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6717), + [anon_sym_BQUOTE] = ACTIONS(6717), + [anon_sym_LT_LPAREN] = ACTIONS(6717), + [anon_sym_GT_LPAREN] = ACTIONS(6717), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6715), + }, + [3812] = { + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8275), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), + }, + [3813] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8275), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), + }, + [3814] = { + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(4134), + [sym_while_statement] = STATE(4134), + [sym_if_statement] = STATE(4134), + [sym_case_statement] = STATE(4134), + [sym_function_definition] = STATE(4134), + [sym_subshell] = STATE(4134), + [sym_pipeline] = STATE(4134), + [sym_list] = STATE(4134), + [sym_command] = STATE(4134), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(4134), + [sym_variable_assignment] = STATE(4135), + [sym_declaration_command] = STATE(4134), + [sym_unset_command] = STATE(4134), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(4130), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(8277), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [3815] = { + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(4134), + [sym_while_statement] = STATE(4134), + [sym_if_statement] = STATE(4134), + [sym_case_statement] = STATE(4134), + [sym_function_definition] = STATE(4134), + [sym_subshell] = STATE(4134), + [sym_pipeline] = STATE(4134), + [sym_list] = STATE(4134), + [sym_command] = STATE(4134), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(4134), + [sym_variable_assignment] = STATE(4135), + [sym_declaration_command] = STATE(4134), + [sym_unset_command] = STATE(4134), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(4136), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(8277), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [3816] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), + }, + [3817] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), + }, + [3818] = { + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), + }, + [3819] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8279), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3820] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8281), + [sym_comment] = ACTIONS(56), + }, + [3821] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8283), + [sym_comment] = ACTIONS(56), + }, + [3822] = { + [anon_sym_RBRACE] = ACTIONS(8283), + [sym_comment] = ACTIONS(56), + }, + [3823] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4141), + [anon_sym_RBRACE] = ACTIONS(8285), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3824] = { + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), + }, + [3825] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4143), + [anon_sym_RBRACE] = ACTIONS(8287), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3826] = { + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), + }, + [3827] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4145), + [anon_sym_RBRACE] = ACTIONS(8289), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3828] = { + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), + }, + [3829] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8291), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3830] = { + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), + }, + [3831] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8293), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3832] = { + [sym_file_descriptor] = ACTIONS(6041), + [sym__concat] = ACTIONS(6041), + [sym_variable_name] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_RPAREN] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_GT_GT] = ACTIONS(6043), + [anon_sym_AMP_GT] = ACTIONS(6043), + [anon_sym_AMP_GT_GT] = ACTIONS(6043), + [anon_sym_LT_AMP] = ACTIONS(6043), + [anon_sym_GT_AMP] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6043), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6043), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6043), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), + }, + [3833] = { + [sym_file_descriptor] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [sym_variable_name] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_RPAREN] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_GT_GT] = ACTIONS(6047), + [anon_sym_AMP_GT] = ACTIONS(6047), + [anon_sym_AMP_GT_GT] = ACTIONS(6047), + [anon_sym_LT_AMP] = ACTIONS(6047), + [anon_sym_GT_AMP] = ACTIONS(6047), + [sym__special_characters] = ACTIONS(6047), + [anon_sym_DQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR] = ACTIONS(6047), + [sym_raw_string] = ACTIONS(6047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), + [anon_sym_BQUOTE] = ACTIONS(6047), + [anon_sym_LT_LPAREN] = ACTIONS(6047), + [anon_sym_GT_LPAREN] = ACTIONS(6047), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6047), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), + }, + [3834] = { + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [sym_variable_name] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_RPAREN] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_LT] = ACTIONS(6051), + [anon_sym_GT] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6051), + [anon_sym_AMP_GT] = ACTIONS(6051), + [anon_sym_AMP_GT_GT] = ACTIONS(6051), + [anon_sym_LT_AMP] = ACTIONS(6051), + [anon_sym_GT_AMP] = ACTIONS(6051), + [sym__special_characters] = ACTIONS(6051), + [anon_sym_DQUOTE] = ACTIONS(6051), + [anon_sym_DOLLAR] = ACTIONS(6051), + [sym_raw_string] = ACTIONS(6051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6051), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6051), + [anon_sym_BQUOTE] = ACTIONS(6051), + [anon_sym_LT_LPAREN] = ACTIONS(6051), + [anon_sym_GT_LPAREN] = ACTIONS(6051), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6051), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), + }, + [3835] = { + [sym_file_descriptor] = ACTIONS(6053), + [sym__concat] = ACTIONS(6053), + [sym_variable_name] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [anon_sym_LT] = ACTIONS(6055), + [anon_sym_GT] = ACTIONS(6055), + [anon_sym_GT_GT] = ACTIONS(6055), + [anon_sym_AMP_GT] = ACTIONS(6055), + [anon_sym_AMP_GT_GT] = ACTIONS(6055), + [anon_sym_LT_AMP] = ACTIONS(6055), + [anon_sym_GT_AMP] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6055), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6055), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), + }, + [3836] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8295), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3837] = { + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [sym_variable_name] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_RPAREN] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_AMP_GT] = ACTIONS(6061), + [anon_sym_AMP_GT_GT] = ACTIONS(6061), + [anon_sym_LT_AMP] = ACTIONS(6061), + [anon_sym_GT_AMP] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(6061), + [anon_sym_DQUOTE] = ACTIONS(6061), + [anon_sym_DOLLAR] = ACTIONS(6061), + [sym_raw_string] = ACTIONS(6061), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6061), + [anon_sym_BQUOTE] = ACTIONS(6061), + [anon_sym_LT_LPAREN] = ACTIONS(6061), + [anon_sym_GT_LPAREN] = ACTIONS(6061), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6061), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), + }, + [3838] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8297), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3839] = { + [sym_file_descriptor] = ACTIONS(6065), + [sym__concat] = ACTIONS(6065), + [sym_variable_name] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_RPAREN] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [anon_sym_LT] = ACTIONS(6067), + [anon_sym_GT] = ACTIONS(6067), + [anon_sym_GT_GT] = ACTIONS(6067), + [anon_sym_AMP_GT] = ACTIONS(6067), + [anon_sym_AMP_GT_GT] = ACTIONS(6067), + [anon_sym_LT_AMP] = ACTIONS(6067), + [anon_sym_GT_AMP] = ACTIONS(6067), + [sym__special_characters] = ACTIONS(6067), + [anon_sym_DQUOTE] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6067), + [sym_raw_string] = ACTIONS(6067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), + [anon_sym_BQUOTE] = ACTIONS(6067), + [anon_sym_LT_LPAREN] = ACTIONS(6067), + [anon_sym_GT_LPAREN] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6067), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), + }, + [3840] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8299), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3841] = { + [sym_file_descriptor] = ACTIONS(6071), + [sym__concat] = ACTIONS(6071), + [sym_variable_name] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_RPAREN] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_GT_GT] = ACTIONS(6073), + [anon_sym_AMP_GT] = ACTIONS(6073), + [anon_sym_AMP_GT_GT] = ACTIONS(6073), + [anon_sym_LT_AMP] = ACTIONS(6073), + [anon_sym_GT_AMP] = ACTIONS(6073), + [sym__special_characters] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR] = ACTIONS(6073), + [sym_raw_string] = ACTIONS(6073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), + [anon_sym_BQUOTE] = ACTIONS(6073), + [anon_sym_LT_LPAREN] = ACTIONS(6073), + [anon_sym_GT_LPAREN] = ACTIONS(6073), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6073), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), + }, + [3842] = { + [sym_file_descriptor] = ACTIONS(6075), + [sym__concat] = ACTIONS(6075), + [sym_variable_name] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_RPAREN] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_AMP_GT] = ACTIONS(6077), + [anon_sym_AMP_GT_GT] = ACTIONS(6077), + [anon_sym_LT_AMP] = ACTIONS(6077), + [anon_sym_GT_AMP] = ACTIONS(6077), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), + [anon_sym_BQUOTE] = ACTIONS(6077), + [anon_sym_LT_LPAREN] = ACTIONS(6077), + [anon_sym_GT_LPAREN] = ACTIONS(6077), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6077), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), + }, + [3843] = { + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_RPAREN] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + }, + [3844] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8301), + [sym_comment] = ACTIONS(56), + }, + [3845] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8303), + [sym_comment] = ACTIONS(56), + }, + [3846] = { + [anon_sym_RBRACE] = ACTIONS(8303), + [sym_comment] = ACTIONS(56), + }, + [3847] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4154), + [anon_sym_RBRACE] = ACTIONS(8305), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3848] = { + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_RPAREN] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), + }, + [3849] = { + [sym_concatenation] = STATE(4157), + [sym_string] = STATE(4156), + [sym_simple_expansion] = STATE(4156), + [sym_string_expansion] = STATE(4156), + [sym_expansion] = STATE(4156), + [sym_command_substitution] = STATE(4156), + [sym_process_substitution] = STATE(4156), + [anon_sym_RBRACE] = ACTIONS(8303), + [sym__special_characters] = ACTIONS(8307), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(8309), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8311), + }, + [3850] = { + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_RPAREN] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), + }, + [3851] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8313), + }, + [3852] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8315), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3853] = { + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), + }, + [3854] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8317), + }, + [3855] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8319), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3856] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8321), + }, + [3857] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8303), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3858] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4164), + [anon_sym_RBRACE] = ACTIONS(8323), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3859] = { + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), + }, + [3860] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4166), + [anon_sym_RBRACE] = ACTIONS(8325), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3861] = { + [sym__concat] = ACTIONS(7032), + [sym_variable_name] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_RPAREN] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [sym__special_characters] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [anon_sym_DOLLAR] = ACTIONS(7034), + [sym_raw_string] = ACTIONS(7034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), + [anon_sym_BQUOTE] = ACTIONS(7034), + [anon_sym_LT_LPAREN] = ACTIONS(7034), + [anon_sym_GT_LPAREN] = ACTIONS(7034), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7034), + [sym_word] = ACTIONS(7034), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), + }, + [3862] = { + [sym__concat] = ACTIONS(7036), + [sym_variable_name] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_RPAREN] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [sym__special_characters] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7038), + [anon_sym_DOLLAR] = ACTIONS(7038), + [sym_raw_string] = ACTIONS(7038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), + [anon_sym_BQUOTE] = ACTIONS(7038), + [anon_sym_LT_LPAREN] = ACTIONS(7038), + [anon_sym_GT_LPAREN] = ACTIONS(7038), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7038), + [sym_word] = ACTIONS(7038), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), + }, + [3863] = { + [sym__concat] = ACTIONS(7040), + [sym_variable_name] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_RPAREN] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [sym__special_characters] = ACTIONS(7042), + [anon_sym_DQUOTE] = ACTIONS(7042), + [anon_sym_DOLLAR] = ACTIONS(7042), + [sym_raw_string] = ACTIONS(7042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), + [anon_sym_BQUOTE] = ACTIONS(7042), + [anon_sym_LT_LPAREN] = ACTIONS(7042), + [anon_sym_GT_LPAREN] = ACTIONS(7042), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7042), + [sym_word] = ACTIONS(7042), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), + }, + [3864] = { + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_RPAREN] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [sym__special_characters] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [anon_sym_DOLLAR] = ACTIONS(7034), + [sym_raw_string] = ACTIONS(7034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), + [anon_sym_BQUOTE] = ACTIONS(7034), + [anon_sym_LT_LPAREN] = ACTIONS(7034), + [anon_sym_GT_LPAREN] = ACTIONS(7034), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7034), + [sym_word] = ACTIONS(7034), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), + }, + [3865] = { + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_RPAREN] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [sym__special_characters] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7038), + [anon_sym_DOLLAR] = ACTIONS(7038), + [sym_raw_string] = ACTIONS(7038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), + [anon_sym_BQUOTE] = ACTIONS(7038), + [anon_sym_LT_LPAREN] = ACTIONS(7038), + [anon_sym_GT_LPAREN] = ACTIONS(7038), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7038), + [sym_word] = ACTIONS(7038), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), + }, + [3866] = { + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_RPAREN] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [sym__special_characters] = ACTIONS(7042), + [anon_sym_DQUOTE] = ACTIONS(7042), + [anon_sym_DOLLAR] = ACTIONS(7042), + [sym_raw_string] = ACTIONS(7042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), + [anon_sym_BQUOTE] = ACTIONS(7042), + [anon_sym_LT_LPAREN] = ACTIONS(7042), + [anon_sym_GT_LPAREN] = ACTIONS(7042), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7042), + [sym_word] = ACTIONS(7042), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), + }, + [3867] = { + [sym_file_descriptor] = ACTIONS(6041), + [sym__concat] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_RPAREN] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_GT_GT] = ACTIONS(6043), + [anon_sym_AMP_GT] = ACTIONS(6043), + [anon_sym_AMP_GT_GT] = ACTIONS(6043), + [anon_sym_LT_AMP] = ACTIONS(6043), + [anon_sym_GT_AMP] = ACTIONS(6043), + [anon_sym_LT_LT] = ACTIONS(6043), + [anon_sym_LT_LT_DASH] = ACTIONS(6043), + [anon_sym_LT_LT_LT] = ACTIONS(6043), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), + }, + [3868] = { + [sym_file_descriptor] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_RPAREN] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_GT_GT] = ACTIONS(6047), + [anon_sym_AMP_GT] = ACTIONS(6047), + [anon_sym_AMP_GT_GT] = ACTIONS(6047), + [anon_sym_LT_AMP] = ACTIONS(6047), + [anon_sym_GT_AMP] = ACTIONS(6047), + [anon_sym_LT_LT] = ACTIONS(6047), + [anon_sym_LT_LT_DASH] = ACTIONS(6047), + [anon_sym_LT_LT_LT] = ACTIONS(6047), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), + }, + [3869] = { + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_RPAREN] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [anon_sym_LT] = ACTIONS(6051), + [anon_sym_GT] = ACTIONS(6051), + [anon_sym_GT_GT] = ACTIONS(6051), + [anon_sym_AMP_GT] = ACTIONS(6051), + [anon_sym_AMP_GT_GT] = ACTIONS(6051), + [anon_sym_LT_AMP] = ACTIONS(6051), + [anon_sym_GT_AMP] = ACTIONS(6051), + [anon_sym_LT_LT] = ACTIONS(6051), + [anon_sym_LT_LT_DASH] = ACTIONS(6051), + [anon_sym_LT_LT_LT] = ACTIONS(6051), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), + }, + [3870] = { + [sym_file_descriptor] = ACTIONS(6053), + [sym__concat] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [anon_sym_LT] = ACTIONS(6055), + [anon_sym_GT] = ACTIONS(6055), + [anon_sym_GT_GT] = ACTIONS(6055), + [anon_sym_AMP_GT] = ACTIONS(6055), + [anon_sym_AMP_GT_GT] = ACTIONS(6055), + [anon_sym_LT_AMP] = ACTIONS(6055), + [anon_sym_GT_AMP] = ACTIONS(6055), + [anon_sym_LT_LT] = ACTIONS(6055), + [anon_sym_LT_LT_DASH] = ACTIONS(6055), + [anon_sym_LT_LT_LT] = ACTIONS(6055), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), + }, + [3871] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8327), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3872] = { + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_RPAREN] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [anon_sym_LT] = ACTIONS(6061), + [anon_sym_GT] = ACTIONS(6061), + [anon_sym_GT_GT] = ACTIONS(6061), + [anon_sym_AMP_GT] = ACTIONS(6061), + [anon_sym_AMP_GT_GT] = ACTIONS(6061), + [anon_sym_LT_AMP] = ACTIONS(6061), + [anon_sym_GT_AMP] = ACTIONS(6061), + [anon_sym_LT_LT] = ACTIONS(6061), + [anon_sym_LT_LT_DASH] = ACTIONS(6061), + [anon_sym_LT_LT_LT] = ACTIONS(6061), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), + }, + [3873] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8329), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3874] = { + [sym_file_descriptor] = ACTIONS(6065), + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_RPAREN] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [anon_sym_LT] = ACTIONS(6067), + [anon_sym_GT] = ACTIONS(6067), + [anon_sym_GT_GT] = ACTIONS(6067), + [anon_sym_AMP_GT] = ACTIONS(6067), + [anon_sym_AMP_GT_GT] = ACTIONS(6067), + [anon_sym_LT_AMP] = ACTIONS(6067), + [anon_sym_GT_AMP] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_LT_LT_DASH] = ACTIONS(6067), + [anon_sym_LT_LT_LT] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), + }, + [3875] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8331), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3876] = { + [sym_file_descriptor] = ACTIONS(6071), + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_RPAREN] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_GT_GT] = ACTIONS(6073), + [anon_sym_AMP_GT] = ACTIONS(6073), + [anon_sym_AMP_GT_GT] = ACTIONS(6073), + [anon_sym_LT_AMP] = ACTIONS(6073), + [anon_sym_GT_AMP] = ACTIONS(6073), + [anon_sym_LT_LT] = ACTIONS(6073), + [anon_sym_LT_LT_DASH] = ACTIONS(6073), + [anon_sym_LT_LT_LT] = ACTIONS(6073), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), + }, + [3877] = { + [sym_file_descriptor] = ACTIONS(6075), + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_RPAREN] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_AMP_GT] = ACTIONS(6077), + [anon_sym_AMP_GT_GT] = ACTIONS(6077), + [anon_sym_LT_AMP] = ACTIONS(6077), + [anon_sym_GT_AMP] = ACTIONS(6077), + [anon_sym_LT_LT] = ACTIONS(6077), + [anon_sym_LT_LT_DASH] = ACTIONS(6077), + [anon_sym_LT_LT_LT] = ACTIONS(6077), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), + }, + [3878] = { + [sym__concat] = ACTIONS(6041), + [anon_sym_RBRACE] = ACTIONS(6041), + [sym_comment] = ACTIONS(56), + }, + [3879] = { + [sym__concat] = ACTIONS(6045), + [anon_sym_RBRACE] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + }, + [3880] = { + [sym__concat] = ACTIONS(6049), + [anon_sym_RBRACE] = ACTIONS(6049), + [sym_comment] = ACTIONS(56), + }, + [3881] = { + [sym__concat] = ACTIONS(6053), + [anon_sym_RBRACE] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + }, + [3882] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8333), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3883] = { + [sym__concat] = ACTIONS(6059), + [anon_sym_RBRACE] = ACTIONS(6059), + [sym_comment] = ACTIONS(56), + }, + [3884] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8335), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3885] = { + [sym__concat] = ACTIONS(6065), + [anon_sym_RBRACE] = ACTIONS(6065), + [sym_comment] = ACTIONS(56), + }, + [3886] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8337), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3887] = { + [sym__concat] = ACTIONS(6071), + [anon_sym_RBRACE] = ACTIONS(6071), + [sym_comment] = ACTIONS(56), + }, + [3888] = { + [sym__concat] = ACTIONS(6075), + [anon_sym_RBRACE] = ACTIONS(6075), + [sym_comment] = ACTIONS(56), + }, + [3889] = { + [sym__concat] = ACTIONS(7032), + [anon_sym_RBRACE] = ACTIONS(7032), + [anon_sym_EQ] = ACTIONS(7721), + [sym__special_characters] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7721), + [sym_raw_string] = ACTIONS(7032), + [anon_sym_POUND] = ACTIONS(7032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), + [anon_sym_COLON] = ACTIONS(7721), + [anon_sym_COLON_QMARK] = ACTIONS(7721), + [anon_sym_COLON_DASH] = ACTIONS(7721), + [anon_sym_PERCENT] = ACTIONS(7721), + [anon_sym_DASH] = ACTIONS(7721), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), + [anon_sym_BQUOTE] = ACTIONS(7032), + [anon_sym_LT_LPAREN] = ACTIONS(7032), + [anon_sym_GT_LPAREN] = ACTIONS(7032), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(7034), + }, + [3890] = { + [sym__concat] = ACTIONS(7036), + [anon_sym_RBRACE] = ACTIONS(7036), + [anon_sym_EQ] = ACTIONS(7723), + [sym__special_characters] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7036), + [anon_sym_DOLLAR] = ACTIONS(7723), + [sym_raw_string] = ACTIONS(7036), + [anon_sym_POUND] = ACTIONS(7036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), + [anon_sym_COLON] = ACTIONS(7723), + [anon_sym_COLON_QMARK] = ACTIONS(7723), + [anon_sym_COLON_DASH] = ACTIONS(7723), + [anon_sym_PERCENT] = ACTIONS(7723), + [anon_sym_DASH] = ACTIONS(7723), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), + [anon_sym_BQUOTE] = ACTIONS(7036), + [anon_sym_LT_LPAREN] = ACTIONS(7036), + [anon_sym_GT_LPAREN] = ACTIONS(7036), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(7038), + }, + [3891] = { + [sym__concat] = ACTIONS(7040), + [anon_sym_RBRACE] = ACTIONS(7040), + [anon_sym_EQ] = ACTIONS(7725), + [sym__special_characters] = ACTIONS(7042), + [anon_sym_DQUOTE] = ACTIONS(7040), + [anon_sym_DOLLAR] = ACTIONS(7725), + [sym_raw_string] = ACTIONS(7040), + [anon_sym_POUND] = ACTIONS(7040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), + [anon_sym_COLON] = ACTIONS(7725), + [anon_sym_COLON_QMARK] = ACTIONS(7725), + [anon_sym_COLON_DASH] = ACTIONS(7725), + [anon_sym_PERCENT] = ACTIONS(7725), + [anon_sym_DASH] = ACTIONS(7725), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), + [anon_sym_BQUOTE] = ACTIONS(7040), + [anon_sym_LT_LPAREN] = ACTIONS(7040), + [anon_sym_GT_LPAREN] = ACTIONS(7040), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(7042), + }, + [3892] = { + [sym_file_descriptor] = ACTIONS(6041), + [sym__concat] = ACTIONS(6041), + [sym_variable_name] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_RPAREN] = ACTIONS(6041), + [anon_sym_PIPE_AMP] = ACTIONS(6041), + [anon_sym_AMP_AMP] = ACTIONS(6041), + [anon_sym_PIPE_PIPE] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(6930), + [anon_sym_GT] = ACTIONS(6930), + [anon_sym_GT_GT] = ACTIONS(6041), + [anon_sym_AMP_GT] = ACTIONS(6930), + [anon_sym_AMP_GT_GT] = ACTIONS(6041), + [anon_sym_LT_AMP] = ACTIONS(6041), + [anon_sym_GT_AMP] = ACTIONS(6041), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), + [anon_sym_BQUOTE] = ACTIONS(6041), + [anon_sym_LT_LPAREN] = ACTIONS(6041), + [anon_sym_GT_LPAREN] = ACTIONS(6041), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6930), + }, + [3893] = { + [sym_file_descriptor] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [sym_variable_name] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6932), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [anon_sym_LT] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6932), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_AMP_GT] = ACTIONS(6932), + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_AMP] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6932), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6932), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6932), + }, + [3894] = { + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [sym_variable_name] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6049), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [anon_sym_LT] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6049), + [anon_sym_AMP_GT] = ACTIONS(6934), + [anon_sym_AMP_GT_GT] = ACTIONS(6049), + [anon_sym_LT_AMP] = ACTIONS(6049), + [anon_sym_GT_AMP] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(6934), + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6934), + [sym_raw_string] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), + [anon_sym_LT_LPAREN] = ACTIONS(6049), + [anon_sym_GT_LPAREN] = ACTIONS(6049), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6934), + }, + [3895] = { + [sym_file_descriptor] = ACTIONS(6053), + [sym__concat] = ACTIONS(6053), + [sym_variable_name] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_RPAREN] = ACTIONS(6053), + [anon_sym_PIPE_AMP] = ACTIONS(6053), + [anon_sym_AMP_AMP] = ACTIONS(6053), + [anon_sym_PIPE_PIPE] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6053), + [anon_sym_AMP_GT] = ACTIONS(6936), + [anon_sym_AMP_GT_GT] = ACTIONS(6053), + [anon_sym_LT_AMP] = ACTIONS(6053), + [anon_sym_GT_AMP] = ACTIONS(6053), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), + [anon_sym_BQUOTE] = ACTIONS(6053), + [anon_sym_LT_LPAREN] = ACTIONS(6053), + [anon_sym_GT_LPAREN] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6936), + }, + [3896] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8339), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3897] = { + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [sym_variable_name] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6940), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [anon_sym_LT] = ACTIONS(6940), + [anon_sym_GT] = ACTIONS(6940), + [anon_sym_GT_GT] = ACTIONS(6059), + [anon_sym_AMP_GT] = ACTIONS(6940), + [anon_sym_AMP_GT_GT] = ACTIONS(6059), + [anon_sym_LT_AMP] = ACTIONS(6059), + [anon_sym_GT_AMP] = ACTIONS(6059), + [sym__special_characters] = ACTIONS(6940), + [anon_sym_DQUOTE] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6940), + [sym_raw_string] = ACTIONS(6059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), + [anon_sym_LT_LPAREN] = ACTIONS(6059), + [anon_sym_GT_LPAREN] = ACTIONS(6059), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6940), + }, + [3898] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8341), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3899] = { + [sym_file_descriptor] = ACTIONS(6065), + [sym__concat] = ACTIONS(6065), + [sym_variable_name] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6944), + [anon_sym_RPAREN] = ACTIONS(6065), + [anon_sym_PIPE_AMP] = ACTIONS(6065), + [anon_sym_AMP_AMP] = ACTIONS(6065), + [anon_sym_PIPE_PIPE] = ACTIONS(6065), + [anon_sym_LT] = ACTIONS(6944), + [anon_sym_GT] = ACTIONS(6944), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_AMP_GT] = ACTIONS(6944), + [anon_sym_AMP_GT_GT] = ACTIONS(6065), + [anon_sym_LT_AMP] = ACTIONS(6065), + [anon_sym_GT_AMP] = ACTIONS(6065), + [sym__special_characters] = ACTIONS(6944), + [anon_sym_DQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR] = ACTIONS(6944), + [sym_raw_string] = ACTIONS(6065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), + [anon_sym_BQUOTE] = ACTIONS(6065), + [anon_sym_LT_LPAREN] = ACTIONS(6065), + [anon_sym_GT_LPAREN] = ACTIONS(6065), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6944), + }, + [3900] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8343), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3901] = { + [sym_file_descriptor] = ACTIONS(6071), + [sym__concat] = ACTIONS(6071), + [sym_variable_name] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6948), + [anon_sym_RPAREN] = ACTIONS(6071), + [anon_sym_PIPE_AMP] = ACTIONS(6071), + [anon_sym_AMP_AMP] = ACTIONS(6071), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [anon_sym_LT] = ACTIONS(6948), + [anon_sym_GT] = ACTIONS(6948), + [anon_sym_GT_GT] = ACTIONS(6071), + [anon_sym_AMP_GT] = ACTIONS(6948), + [anon_sym_AMP_GT_GT] = ACTIONS(6071), + [anon_sym_LT_AMP] = ACTIONS(6071), + [anon_sym_GT_AMP] = ACTIONS(6071), + [sym__special_characters] = ACTIONS(6948), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6948), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6948), + }, + [3902] = { + [sym_file_descriptor] = ACTIONS(6075), + [sym__concat] = ACTIONS(6075), + [sym_variable_name] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_RPAREN] = ACTIONS(6075), + [anon_sym_PIPE_AMP] = ACTIONS(6075), + [anon_sym_AMP_AMP] = ACTIONS(6075), + [anon_sym_PIPE_PIPE] = ACTIONS(6075), + [anon_sym_LT] = ACTIONS(6950), + [anon_sym_GT] = ACTIONS(6950), + [anon_sym_GT_GT] = ACTIONS(6075), + [anon_sym_AMP_GT] = ACTIONS(6950), + [anon_sym_AMP_GT_GT] = ACTIONS(6075), + [anon_sym_LT_AMP] = ACTIONS(6075), + [anon_sym_GT_AMP] = ACTIONS(6075), + [sym__special_characters] = ACTIONS(6950), + [anon_sym_DQUOTE] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6950), + [sym_raw_string] = ACTIONS(6075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), + [anon_sym_BQUOTE] = ACTIONS(6075), + [anon_sym_LT_LPAREN] = ACTIONS(6075), + [anon_sym_GT_LPAREN] = ACTIONS(6075), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6950), + }, + [3903] = { + [anon_sym_PIPE] = ACTIONS(8345), + [anon_sym_RPAREN] = ACTIONS(8347), + [anon_sym_PIPE_AMP] = ACTIONS(8347), + [anon_sym_AMP_AMP] = ACTIONS(8347), + [anon_sym_PIPE_PIPE] = ACTIONS(8347), + [anon_sym_BQUOTE] = ACTIONS(8347), + [sym_comment] = ACTIONS(56), + }, + [3904] = { + [anon_sym_PIPE] = ACTIONS(8349), + [anon_sym_RPAREN] = ACTIONS(8351), + [anon_sym_PIPE_AMP] = ACTIONS(8351), + [anon_sym_AMP_AMP] = ACTIONS(8351), + [anon_sym_PIPE_PIPE] = ACTIONS(8351), + [anon_sym_BQUOTE] = ACTIONS(8351), + [sym_comment] = ACTIONS(56), + }, + [3905] = { + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_RPAREN] = ACTIONS(3293), + [anon_sym_PIPE_AMP] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [sym_comment] = ACTIONS(56), + }, + [3906] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8353), + [sym_comment] = ACTIONS(56), + }, + [3907] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8355), + [sym_comment] = ACTIONS(56), + }, + [3908] = { + [anon_sym_RBRACE] = ACTIONS(8355), + [sym_comment] = ACTIONS(56), + }, + [3909] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4179), + [anon_sym_RBRACE] = ACTIONS(8357), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3910] = { + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(4622), + [anon_sym_RPAREN] = ACTIONS(3357), + [anon_sym_PIPE_AMP] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), + }, + [3911] = { + [sym_concatenation] = STATE(4182), + [sym_string] = STATE(4181), + [sym_simple_expansion] = STATE(4181), + [sym_string_expansion] = STATE(4181), + [sym_expansion] = STATE(4181), + [sym_command_substitution] = STATE(4181), + [sym_process_substitution] = STATE(4181), + [anon_sym_RBRACE] = ACTIONS(8355), + [sym__special_characters] = ACTIONS(8359), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(8361), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8363), + }, + [3912] = { + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_RPAREN] = ACTIONS(3402), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), + }, + [3913] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8365), + }, + [3914] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8367), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3915] = { + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(4636), + [anon_sym_RPAREN] = ACTIONS(3410), + [anon_sym_PIPE_AMP] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [sym_comment] = ACTIONS(56), + }, + [3916] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8369), + }, + [3917] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8371), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3918] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8373), + }, + [3919] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8355), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3920] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4189), + [anon_sym_RBRACE] = ACTIONS(8375), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3921] = { + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(4646), + [anon_sym_RPAREN] = ACTIONS(3422), + [anon_sym_PIPE_AMP] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + }, + [3922] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4191), + [anon_sym_RBRACE] = ACTIONS(8377), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3923] = { + [sym__concat] = ACTIONS(7032), + [sym_variable_name] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7721), + [anon_sym_RPAREN] = ACTIONS(7032), + [anon_sym_PIPE_AMP] = ACTIONS(7032), + [anon_sym_AMP_AMP] = ACTIONS(7032), + [anon_sym_PIPE_PIPE] = ACTIONS(7032), + [sym__special_characters] = ACTIONS(7721), + [anon_sym_DQUOTE] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7721), + [sym_raw_string] = ACTIONS(7032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), + [anon_sym_BQUOTE] = ACTIONS(7032), + [anon_sym_LT_LPAREN] = ACTIONS(7032), + [anon_sym_GT_LPAREN] = ACTIONS(7032), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7721), + [sym_word] = ACTIONS(7034), + }, + [3924] = { + [sym__concat] = ACTIONS(7036), + [sym_variable_name] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_RPAREN] = ACTIONS(7036), + [anon_sym_PIPE_AMP] = ACTIONS(7036), + [anon_sym_AMP_AMP] = ACTIONS(7036), + [anon_sym_PIPE_PIPE] = ACTIONS(7036), + [sym__special_characters] = ACTIONS(7723), + [anon_sym_DQUOTE] = ACTIONS(7036), + [anon_sym_DOLLAR] = ACTIONS(7723), + [sym_raw_string] = ACTIONS(7036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), + [anon_sym_BQUOTE] = ACTIONS(7036), + [anon_sym_LT_LPAREN] = ACTIONS(7036), + [anon_sym_GT_LPAREN] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7723), + [sym_word] = ACTIONS(7038), + }, + [3925] = { + [sym__concat] = ACTIONS(7040), + [sym_variable_name] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7040), + [anon_sym_PIPE_AMP] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7040), + [anon_sym_PIPE_PIPE] = ACTIONS(7040), + [sym__special_characters] = ACTIONS(7725), + [anon_sym_DQUOTE] = ACTIONS(7040), + [anon_sym_DOLLAR] = ACTIONS(7725), + [sym_raw_string] = ACTIONS(7040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), + [anon_sym_BQUOTE] = ACTIONS(7040), + [anon_sym_LT_LPAREN] = ACTIONS(7040), + [anon_sym_GT_LPAREN] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7725), + [sym_word] = ACTIONS(7042), + }, + [3926] = { + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7721), + [anon_sym_RPAREN] = ACTIONS(7032), + [anon_sym_PIPE_AMP] = ACTIONS(7032), + [anon_sym_AMP_AMP] = ACTIONS(7032), + [anon_sym_PIPE_PIPE] = ACTIONS(7032), + [sym__special_characters] = ACTIONS(7721), + [anon_sym_DQUOTE] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7721), + [sym_raw_string] = ACTIONS(7032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), + [anon_sym_BQUOTE] = ACTIONS(7032), + [anon_sym_LT_LPAREN] = ACTIONS(7032), + [anon_sym_GT_LPAREN] = ACTIONS(7032), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7721), + [sym_word] = ACTIONS(7034), + }, + [3927] = { + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_RPAREN] = ACTIONS(7036), + [anon_sym_PIPE_AMP] = ACTIONS(7036), + [anon_sym_AMP_AMP] = ACTIONS(7036), + [anon_sym_PIPE_PIPE] = ACTIONS(7036), + [sym__special_characters] = ACTIONS(7723), + [anon_sym_DQUOTE] = ACTIONS(7036), + [anon_sym_DOLLAR] = ACTIONS(7723), + [sym_raw_string] = ACTIONS(7036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), + [anon_sym_BQUOTE] = ACTIONS(7036), + [anon_sym_LT_LPAREN] = ACTIONS(7036), + [anon_sym_GT_LPAREN] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7723), + [sym_word] = ACTIONS(7038), + }, + [3928] = { + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7040), + [anon_sym_PIPE_AMP] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7040), + [anon_sym_PIPE_PIPE] = ACTIONS(7040), + [sym__special_characters] = ACTIONS(7725), + [anon_sym_DQUOTE] = ACTIONS(7040), + [anon_sym_DOLLAR] = ACTIONS(7725), + [sym_raw_string] = ACTIONS(7040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), + [anon_sym_BQUOTE] = ACTIONS(7040), + [anon_sym_LT_LPAREN] = ACTIONS(7040), + [anon_sym_GT_LPAREN] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7725), + [sym_word] = ACTIONS(7042), + }, + [3929] = { + [sym_file_descriptor] = ACTIONS(6041), + [sym__concat] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_RPAREN] = ACTIONS(6041), + [anon_sym_PIPE_AMP] = ACTIONS(6041), + [anon_sym_AMP_AMP] = ACTIONS(6041), + [anon_sym_PIPE_PIPE] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(6930), + [anon_sym_GT] = ACTIONS(6930), + [anon_sym_GT_GT] = ACTIONS(6041), + [anon_sym_AMP_GT] = ACTIONS(6930), + [anon_sym_AMP_GT_GT] = ACTIONS(6041), + [anon_sym_LT_AMP] = ACTIONS(6041), + [anon_sym_GT_AMP] = ACTIONS(6041), + [anon_sym_LT_LT] = ACTIONS(6930), + [anon_sym_LT_LT_DASH] = ACTIONS(6041), + [anon_sym_LT_LT_LT] = ACTIONS(6041), + [sym_comment] = ACTIONS(56), + }, + [3930] = { + [sym_file_descriptor] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6932), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [anon_sym_LT] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6932), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_AMP_GT] = ACTIONS(6932), + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_AMP] = ACTIONS(6045), + [anon_sym_LT_LT] = ACTIONS(6932), + [anon_sym_LT_LT_DASH] = ACTIONS(6045), + [anon_sym_LT_LT_LT] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + }, + [3931] = { + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_RPAREN] = ACTIONS(6049), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [anon_sym_LT] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6049), + [anon_sym_AMP_GT] = ACTIONS(6934), + [anon_sym_AMP_GT_GT] = ACTIONS(6049), + [anon_sym_LT_AMP] = ACTIONS(6049), + [anon_sym_GT_AMP] = ACTIONS(6049), + [anon_sym_LT_LT] = ACTIONS(6934), + [anon_sym_LT_LT_DASH] = ACTIONS(6049), + [anon_sym_LT_LT_LT] = ACTIONS(6049), + [sym_comment] = ACTIONS(56), + }, + [3932] = { + [sym_file_descriptor] = ACTIONS(6053), + [sym__concat] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_RPAREN] = ACTIONS(6053), + [anon_sym_PIPE_AMP] = ACTIONS(6053), + [anon_sym_AMP_AMP] = ACTIONS(6053), + [anon_sym_PIPE_PIPE] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6053), + [anon_sym_AMP_GT] = ACTIONS(6936), + [anon_sym_AMP_GT_GT] = ACTIONS(6053), + [anon_sym_LT_AMP] = ACTIONS(6053), + [anon_sym_GT_AMP] = ACTIONS(6053), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_LT_LT_DASH] = ACTIONS(6053), + [anon_sym_LT_LT_LT] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + }, + [3933] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8379), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3934] = { + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6940), + [anon_sym_RPAREN] = ACTIONS(6059), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [anon_sym_LT] = ACTIONS(6940), + [anon_sym_GT] = ACTIONS(6940), + [anon_sym_GT_GT] = ACTIONS(6059), + [anon_sym_AMP_GT] = ACTIONS(6940), + [anon_sym_AMP_GT_GT] = ACTIONS(6059), + [anon_sym_LT_AMP] = ACTIONS(6059), + [anon_sym_GT_AMP] = ACTIONS(6059), + [anon_sym_LT_LT] = ACTIONS(6940), + [anon_sym_LT_LT_DASH] = ACTIONS(6059), + [anon_sym_LT_LT_LT] = ACTIONS(6059), + [sym_comment] = ACTIONS(56), + }, + [3935] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8381), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3936] = { + [sym_file_descriptor] = ACTIONS(6065), + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6944), + [anon_sym_RPAREN] = ACTIONS(6065), + [anon_sym_PIPE_AMP] = ACTIONS(6065), + [anon_sym_AMP_AMP] = ACTIONS(6065), + [anon_sym_PIPE_PIPE] = ACTIONS(6065), + [anon_sym_LT] = ACTIONS(6944), + [anon_sym_GT] = ACTIONS(6944), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_AMP_GT] = ACTIONS(6944), + [anon_sym_AMP_GT_GT] = ACTIONS(6065), + [anon_sym_LT_AMP] = ACTIONS(6065), + [anon_sym_GT_AMP] = ACTIONS(6065), + [anon_sym_LT_LT] = ACTIONS(6944), + [anon_sym_LT_LT_DASH] = ACTIONS(6065), + [anon_sym_LT_LT_LT] = ACTIONS(6065), + [sym_comment] = ACTIONS(56), + }, + [3937] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8383), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3938] = { + [sym_file_descriptor] = ACTIONS(6071), + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6948), + [anon_sym_RPAREN] = ACTIONS(6071), + [anon_sym_PIPE_AMP] = ACTIONS(6071), + [anon_sym_AMP_AMP] = ACTIONS(6071), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [anon_sym_LT] = ACTIONS(6948), + [anon_sym_GT] = ACTIONS(6948), + [anon_sym_GT_GT] = ACTIONS(6071), + [anon_sym_AMP_GT] = ACTIONS(6948), + [anon_sym_AMP_GT_GT] = ACTIONS(6071), + [anon_sym_LT_AMP] = ACTIONS(6071), + [anon_sym_GT_AMP] = ACTIONS(6071), + [anon_sym_LT_LT] = ACTIONS(6948), + [anon_sym_LT_LT_DASH] = ACTIONS(6071), + [anon_sym_LT_LT_LT] = ACTIONS(6071), + [sym_comment] = ACTIONS(56), + }, + [3939] = { + [sym_file_descriptor] = ACTIONS(6075), + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_RPAREN] = ACTIONS(6075), + [anon_sym_PIPE_AMP] = ACTIONS(6075), + [anon_sym_AMP_AMP] = ACTIONS(6075), + [anon_sym_PIPE_PIPE] = ACTIONS(6075), + [anon_sym_LT] = ACTIONS(6950), + [anon_sym_GT] = ACTIONS(6950), + [anon_sym_GT_GT] = ACTIONS(6075), + [anon_sym_AMP_GT] = ACTIONS(6950), + [anon_sym_AMP_GT_GT] = ACTIONS(6075), + [anon_sym_LT_AMP] = ACTIONS(6075), + [anon_sym_GT_AMP] = ACTIONS(6075), + [anon_sym_LT_LT] = ACTIONS(6950), + [anon_sym_LT_LT_DASH] = ACTIONS(6075), + [anon_sym_LT_LT_LT] = ACTIONS(6075), + [sym_comment] = ACTIONS(56), + }, + [3940] = { + [sym_file_descriptor] = ACTIONS(6041), + [sym__concat] = ACTIONS(6041), + [sym_variable_name] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE_AMP] = ACTIONS(6041), + [anon_sym_AMP_AMP] = ACTIONS(6041), + [anon_sym_PIPE_PIPE] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(6930), + [anon_sym_GT] = ACTIONS(6930), + [anon_sym_GT_GT] = ACTIONS(6041), + [anon_sym_AMP_GT] = ACTIONS(6930), + [anon_sym_AMP_GT_GT] = ACTIONS(6041), + [anon_sym_LT_AMP] = ACTIONS(6041), + [anon_sym_GT_AMP] = ACTIONS(6041), + [sym__special_characters] = ACTIONS(6930), + [anon_sym_DQUOTE] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6930), + [sym_raw_string] = ACTIONS(6041), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6041), + [anon_sym_BQUOTE] = ACTIONS(6041), + [anon_sym_LT_LPAREN] = ACTIONS(6041), + [anon_sym_GT_LPAREN] = ACTIONS(6041), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6930), + }, + [3941] = { + [sym_file_descriptor] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [sym_variable_name] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6932), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [anon_sym_LT] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6932), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_AMP_GT] = ACTIONS(6932), + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_AMP] = ACTIONS(6045), + [sym__special_characters] = ACTIONS(6932), + [anon_sym_DQUOTE] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6932), + [sym_raw_string] = ACTIONS(6045), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [anon_sym_LT_LPAREN] = ACTIONS(6045), + [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6932), + }, + [3942] = { + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [sym_variable_name] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [anon_sym_LT] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6049), + [anon_sym_AMP_GT] = ACTIONS(6934), + [anon_sym_AMP_GT_GT] = ACTIONS(6049), + [anon_sym_LT_AMP] = ACTIONS(6049), + [anon_sym_GT_AMP] = ACTIONS(6049), + [sym__special_characters] = ACTIONS(6934), + [anon_sym_DQUOTE] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6934), + [sym_raw_string] = ACTIONS(6049), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), + [anon_sym_LT_LPAREN] = ACTIONS(6049), + [anon_sym_GT_LPAREN] = ACTIONS(6049), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6934), + }, + [3943] = { + [sym_file_descriptor] = ACTIONS(6053), + [sym__concat] = ACTIONS(6053), + [sym_variable_name] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE_AMP] = ACTIONS(6053), + [anon_sym_AMP_AMP] = ACTIONS(6053), + [anon_sym_PIPE_PIPE] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6053), + [anon_sym_AMP_GT] = ACTIONS(6936), + [anon_sym_AMP_GT_GT] = ACTIONS(6053), + [anon_sym_LT_AMP] = ACTIONS(6053), + [anon_sym_GT_AMP] = ACTIONS(6053), + [sym__special_characters] = ACTIONS(6936), + [anon_sym_DQUOTE] = ACTIONS(6053), + [anon_sym_DOLLAR] = ACTIONS(6936), + [sym_raw_string] = ACTIONS(6053), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6053), + [anon_sym_BQUOTE] = ACTIONS(6053), + [anon_sym_LT_LPAREN] = ACTIONS(6053), + [anon_sym_GT_LPAREN] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6936), + }, + [3944] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8385), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3945] = { + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [sym_variable_name] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6940), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [anon_sym_LT] = ACTIONS(6940), + [anon_sym_GT] = ACTIONS(6940), + [anon_sym_GT_GT] = ACTIONS(6059), + [anon_sym_AMP_GT] = ACTIONS(6940), + [anon_sym_AMP_GT_GT] = ACTIONS(6059), + [anon_sym_LT_AMP] = ACTIONS(6059), + [anon_sym_GT_AMP] = ACTIONS(6059), + [sym__special_characters] = ACTIONS(6940), + [anon_sym_DQUOTE] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6940), + [sym_raw_string] = ACTIONS(6059), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), + [anon_sym_LT_LPAREN] = ACTIONS(6059), + [anon_sym_GT_LPAREN] = ACTIONS(6059), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6940), + }, + [3946] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8387), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3947] = { + [sym_file_descriptor] = ACTIONS(6065), + [sym__concat] = ACTIONS(6065), + [sym_variable_name] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6944), + [anon_sym_PIPE_AMP] = ACTIONS(6065), + [anon_sym_AMP_AMP] = ACTIONS(6065), + [anon_sym_PIPE_PIPE] = ACTIONS(6065), + [anon_sym_LT] = ACTIONS(6944), + [anon_sym_GT] = ACTIONS(6944), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_AMP_GT] = ACTIONS(6944), + [anon_sym_AMP_GT_GT] = ACTIONS(6065), + [anon_sym_LT_AMP] = ACTIONS(6065), + [anon_sym_GT_AMP] = ACTIONS(6065), + [sym__special_characters] = ACTIONS(6944), + [anon_sym_DQUOTE] = ACTIONS(6065), + [anon_sym_DOLLAR] = ACTIONS(6944), + [sym_raw_string] = ACTIONS(6065), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6065), + [anon_sym_BQUOTE] = ACTIONS(6065), + [anon_sym_LT_LPAREN] = ACTIONS(6065), + [anon_sym_GT_LPAREN] = ACTIONS(6065), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6944), + }, + [3948] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8389), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3949] = { + [sym_file_descriptor] = ACTIONS(6071), + [sym__concat] = ACTIONS(6071), + [sym_variable_name] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6948), + [anon_sym_PIPE_AMP] = ACTIONS(6071), + [anon_sym_AMP_AMP] = ACTIONS(6071), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [anon_sym_LT] = ACTIONS(6948), + [anon_sym_GT] = ACTIONS(6948), + [anon_sym_GT_GT] = ACTIONS(6071), + [anon_sym_AMP_GT] = ACTIONS(6948), + [anon_sym_AMP_GT_GT] = ACTIONS(6071), + [anon_sym_LT_AMP] = ACTIONS(6071), + [anon_sym_GT_AMP] = ACTIONS(6071), + [sym__special_characters] = ACTIONS(6948), + [anon_sym_DQUOTE] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6948), + [sym_raw_string] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [anon_sym_LT_LPAREN] = ACTIONS(6071), + [anon_sym_GT_LPAREN] = ACTIONS(6071), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6948), + }, + [3950] = { + [sym_file_descriptor] = ACTIONS(6075), + [sym__concat] = ACTIONS(6075), + [sym_variable_name] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_PIPE_AMP] = ACTIONS(6075), + [anon_sym_AMP_AMP] = ACTIONS(6075), + [anon_sym_PIPE_PIPE] = ACTIONS(6075), + [anon_sym_LT] = ACTIONS(6950), + [anon_sym_GT] = ACTIONS(6950), + [anon_sym_GT_GT] = ACTIONS(6075), + [anon_sym_AMP_GT] = ACTIONS(6950), + [anon_sym_AMP_GT_GT] = ACTIONS(6075), + [anon_sym_LT_AMP] = ACTIONS(6075), + [anon_sym_GT_AMP] = ACTIONS(6075), + [sym__special_characters] = ACTIONS(6950), + [anon_sym_DQUOTE] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6950), + [sym_raw_string] = ACTIONS(6075), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6075), + [anon_sym_BQUOTE] = ACTIONS(6075), + [anon_sym_LT_LPAREN] = ACTIONS(6075), + [anon_sym_GT_LPAREN] = ACTIONS(6075), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(6950), + }, + [3951] = { + [sym__concat] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(4614), + [anon_sym_PIPE_AMP] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3293), + [sym_comment] = ACTIONS(56), + }, + [3952] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8391), + [sym_comment] = ACTIONS(56), + }, + [3953] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8393), + [sym_comment] = ACTIONS(56), + }, + [3954] = { + [anon_sym_RBRACE] = ACTIONS(8393), + [sym_comment] = ACTIONS(56), + }, + [3955] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4201), + [anon_sym_RBRACE] = ACTIONS(8395), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3956] = { + [sym__concat] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(4622), + [anon_sym_PIPE_AMP] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3357), + [sym_comment] = ACTIONS(56), + }, + [3957] = { + [sym_concatenation] = STATE(4204), + [sym_string] = STATE(4203), + [sym_simple_expansion] = STATE(4203), + [sym_string_expansion] = STATE(4203), + [sym_expansion] = STATE(4203), + [sym_command_substitution] = STATE(4203), + [sym_process_substitution] = STATE(4203), + [anon_sym_RBRACE] = ACTIONS(8393), + [sym__special_characters] = ACTIONS(8397), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(8399), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8401), + }, + [3958] = { + [sym__concat] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(4630), + [anon_sym_PIPE_AMP] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_BQUOTE] = ACTIONS(3402), + [sym_comment] = ACTIONS(56), + }, + [3959] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8403), + }, + [3960] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8405), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3961] = { + [sym__concat] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(4636), + [anon_sym_PIPE_AMP] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [anon_sym_BQUOTE] = ACTIONS(3410), + [sym_comment] = ACTIONS(56), + }, + [3962] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8407), + }, + [3963] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8409), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3964] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8411), + }, + [3965] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8393), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3966] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4211), + [anon_sym_RBRACE] = ACTIONS(8413), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3967] = { + [sym__concat] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(4646), + [anon_sym_PIPE_AMP] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_BQUOTE] = ACTIONS(3422), + [sym_comment] = ACTIONS(56), + }, + [3968] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4213), + [anon_sym_RBRACE] = ACTIONS(8415), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3969] = { + [sym__concat] = ACTIONS(7032), + [sym_variable_name] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7721), + [anon_sym_PIPE_AMP] = ACTIONS(7032), + [anon_sym_AMP_AMP] = ACTIONS(7032), + [anon_sym_PIPE_PIPE] = ACTIONS(7032), + [sym__special_characters] = ACTIONS(7721), + [anon_sym_DQUOTE] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7721), + [sym_raw_string] = ACTIONS(7032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), + [anon_sym_BQUOTE] = ACTIONS(7032), + [anon_sym_LT_LPAREN] = ACTIONS(7032), + [anon_sym_GT_LPAREN] = ACTIONS(7032), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7721), + [sym_word] = ACTIONS(7034), + }, + [3970] = { + [sym__concat] = ACTIONS(7036), + [sym_variable_name] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_PIPE_AMP] = ACTIONS(7036), + [anon_sym_AMP_AMP] = ACTIONS(7036), + [anon_sym_PIPE_PIPE] = ACTIONS(7036), + [sym__special_characters] = ACTIONS(7723), + [anon_sym_DQUOTE] = ACTIONS(7036), + [anon_sym_DOLLAR] = ACTIONS(7723), + [sym_raw_string] = ACTIONS(7036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), + [anon_sym_BQUOTE] = ACTIONS(7036), + [anon_sym_LT_LPAREN] = ACTIONS(7036), + [anon_sym_GT_LPAREN] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7723), + [sym_word] = ACTIONS(7038), + }, + [3971] = { + [sym__concat] = ACTIONS(7040), + [sym_variable_name] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7725), + [anon_sym_PIPE_AMP] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7040), + [anon_sym_PIPE_PIPE] = ACTIONS(7040), + [sym__special_characters] = ACTIONS(7725), + [anon_sym_DQUOTE] = ACTIONS(7040), + [anon_sym_DOLLAR] = ACTIONS(7725), + [sym_raw_string] = ACTIONS(7040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), + [anon_sym_BQUOTE] = ACTIONS(7040), + [anon_sym_LT_LPAREN] = ACTIONS(7040), + [anon_sym_GT_LPAREN] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7725), + [sym_word] = ACTIONS(7042), + }, + [3972] = { + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7721), + [anon_sym_PIPE_AMP] = ACTIONS(7032), + [anon_sym_AMP_AMP] = ACTIONS(7032), + [anon_sym_PIPE_PIPE] = ACTIONS(7032), + [sym__special_characters] = ACTIONS(7721), + [anon_sym_DQUOTE] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7721), + [sym_raw_string] = ACTIONS(7032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), + [anon_sym_BQUOTE] = ACTIONS(7032), + [anon_sym_LT_LPAREN] = ACTIONS(7032), + [anon_sym_GT_LPAREN] = ACTIONS(7032), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7721), + [sym_word] = ACTIONS(7034), + }, + [3973] = { + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_PIPE_AMP] = ACTIONS(7036), + [anon_sym_AMP_AMP] = ACTIONS(7036), + [anon_sym_PIPE_PIPE] = ACTIONS(7036), + [sym__special_characters] = ACTIONS(7723), + [anon_sym_DQUOTE] = ACTIONS(7036), + [anon_sym_DOLLAR] = ACTIONS(7723), + [sym_raw_string] = ACTIONS(7036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), + [anon_sym_BQUOTE] = ACTIONS(7036), + [anon_sym_LT_LPAREN] = ACTIONS(7036), + [anon_sym_GT_LPAREN] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7723), + [sym_word] = ACTIONS(7038), + }, + [3974] = { + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7725), + [anon_sym_PIPE_AMP] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7040), + [anon_sym_PIPE_PIPE] = ACTIONS(7040), + [sym__special_characters] = ACTIONS(7725), + [anon_sym_DQUOTE] = ACTIONS(7040), + [anon_sym_DOLLAR] = ACTIONS(7725), + [sym_raw_string] = ACTIONS(7040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), + [anon_sym_BQUOTE] = ACTIONS(7040), + [anon_sym_LT_LPAREN] = ACTIONS(7040), + [anon_sym_GT_LPAREN] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7725), + [sym_word] = ACTIONS(7042), + }, + [3975] = { + [sym_file_descriptor] = ACTIONS(6041), + [sym__concat] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE_AMP] = ACTIONS(6041), + [anon_sym_AMP_AMP] = ACTIONS(6041), + [anon_sym_PIPE_PIPE] = ACTIONS(6041), + [anon_sym_LT] = ACTIONS(6930), + [anon_sym_GT] = ACTIONS(6930), + [anon_sym_GT_GT] = ACTIONS(6041), + [anon_sym_AMP_GT] = ACTIONS(6930), + [anon_sym_AMP_GT_GT] = ACTIONS(6041), + [anon_sym_LT_AMP] = ACTIONS(6041), + [anon_sym_GT_AMP] = ACTIONS(6041), + [anon_sym_LT_LT] = ACTIONS(6930), + [anon_sym_LT_LT_DASH] = ACTIONS(6041), + [anon_sym_LT_LT_LT] = ACTIONS(6041), + [anon_sym_BQUOTE] = ACTIONS(6041), + [sym_comment] = ACTIONS(56), + }, + [3976] = { + [sym_file_descriptor] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6932), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [anon_sym_LT] = ACTIONS(6932), + [anon_sym_GT] = ACTIONS(6932), + [anon_sym_GT_GT] = ACTIONS(6045), + [anon_sym_AMP_GT] = ACTIONS(6932), + [anon_sym_AMP_GT_GT] = ACTIONS(6045), + [anon_sym_LT_AMP] = ACTIONS(6045), + [anon_sym_GT_AMP] = ACTIONS(6045), + [anon_sym_LT_LT] = ACTIONS(6932), + [anon_sym_LT_LT_DASH] = ACTIONS(6045), + [anon_sym_LT_LT_LT] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + }, + [3977] = { + [sym_file_descriptor] = ACTIONS(6049), + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6934), + [anon_sym_PIPE_AMP] = ACTIONS(6049), + [anon_sym_AMP_AMP] = ACTIONS(6049), + [anon_sym_PIPE_PIPE] = ACTIONS(6049), + [anon_sym_LT] = ACTIONS(6934), + [anon_sym_GT] = ACTIONS(6934), + [anon_sym_GT_GT] = ACTIONS(6049), + [anon_sym_AMP_GT] = ACTIONS(6934), + [anon_sym_AMP_GT_GT] = ACTIONS(6049), + [anon_sym_LT_AMP] = ACTIONS(6049), + [anon_sym_GT_AMP] = ACTIONS(6049), + [anon_sym_LT_LT] = ACTIONS(6934), + [anon_sym_LT_LT_DASH] = ACTIONS(6049), + [anon_sym_LT_LT_LT] = ACTIONS(6049), + [anon_sym_BQUOTE] = ACTIONS(6049), + [sym_comment] = ACTIONS(56), + }, + [3978] = { + [sym_file_descriptor] = ACTIONS(6053), + [sym__concat] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE_AMP] = ACTIONS(6053), + [anon_sym_AMP_AMP] = ACTIONS(6053), + [anon_sym_PIPE_PIPE] = ACTIONS(6053), + [anon_sym_LT] = ACTIONS(6936), + [anon_sym_GT] = ACTIONS(6936), + [anon_sym_GT_GT] = ACTIONS(6053), + [anon_sym_AMP_GT] = ACTIONS(6936), + [anon_sym_AMP_GT_GT] = ACTIONS(6053), + [anon_sym_LT_AMP] = ACTIONS(6053), + [anon_sym_GT_AMP] = ACTIONS(6053), + [anon_sym_LT_LT] = ACTIONS(6936), + [anon_sym_LT_LT_DASH] = ACTIONS(6053), + [anon_sym_LT_LT_LT] = ACTIONS(6053), + [anon_sym_BQUOTE] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + }, + [3979] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8417), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3980] = { + [sym_file_descriptor] = ACTIONS(6059), + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6940), + [anon_sym_PIPE_AMP] = ACTIONS(6059), + [anon_sym_AMP_AMP] = ACTIONS(6059), + [anon_sym_PIPE_PIPE] = ACTIONS(6059), + [anon_sym_LT] = ACTIONS(6940), + [anon_sym_GT] = ACTIONS(6940), + [anon_sym_GT_GT] = ACTIONS(6059), + [anon_sym_AMP_GT] = ACTIONS(6940), + [anon_sym_AMP_GT_GT] = ACTIONS(6059), + [anon_sym_LT_AMP] = ACTIONS(6059), + [anon_sym_GT_AMP] = ACTIONS(6059), + [anon_sym_LT_LT] = ACTIONS(6940), + [anon_sym_LT_LT_DASH] = ACTIONS(6059), + [anon_sym_LT_LT_LT] = ACTIONS(6059), + [anon_sym_BQUOTE] = ACTIONS(6059), + [sym_comment] = ACTIONS(56), + }, + [3981] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8419), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3982] = { + [sym_file_descriptor] = ACTIONS(6065), + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6944), + [anon_sym_PIPE_AMP] = ACTIONS(6065), + [anon_sym_AMP_AMP] = ACTIONS(6065), + [anon_sym_PIPE_PIPE] = ACTIONS(6065), + [anon_sym_LT] = ACTIONS(6944), + [anon_sym_GT] = ACTIONS(6944), + [anon_sym_GT_GT] = ACTIONS(6065), + [anon_sym_AMP_GT] = ACTIONS(6944), + [anon_sym_AMP_GT_GT] = ACTIONS(6065), + [anon_sym_LT_AMP] = ACTIONS(6065), + [anon_sym_GT_AMP] = ACTIONS(6065), + [anon_sym_LT_LT] = ACTIONS(6944), + [anon_sym_LT_LT_DASH] = ACTIONS(6065), + [anon_sym_LT_LT_LT] = ACTIONS(6065), + [anon_sym_BQUOTE] = ACTIONS(6065), + [sym_comment] = ACTIONS(56), + }, + [3983] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8421), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3984] = { + [sym_file_descriptor] = ACTIONS(6071), + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6948), + [anon_sym_PIPE_AMP] = ACTIONS(6071), + [anon_sym_AMP_AMP] = ACTIONS(6071), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [anon_sym_LT] = ACTIONS(6948), + [anon_sym_GT] = ACTIONS(6948), + [anon_sym_GT_GT] = ACTIONS(6071), + [anon_sym_AMP_GT] = ACTIONS(6948), + [anon_sym_AMP_GT_GT] = ACTIONS(6071), + [anon_sym_LT_AMP] = ACTIONS(6071), + [anon_sym_GT_AMP] = ACTIONS(6071), + [anon_sym_LT_LT] = ACTIONS(6948), + [anon_sym_LT_LT_DASH] = ACTIONS(6071), + [anon_sym_LT_LT_LT] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), + [sym_comment] = ACTIONS(56), + }, + [3985] = { + [sym_file_descriptor] = ACTIONS(6075), + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_PIPE_AMP] = ACTIONS(6075), + [anon_sym_AMP_AMP] = ACTIONS(6075), + [anon_sym_PIPE_PIPE] = ACTIONS(6075), + [anon_sym_LT] = ACTIONS(6950), + [anon_sym_GT] = ACTIONS(6950), + [anon_sym_GT_GT] = ACTIONS(6075), + [anon_sym_AMP_GT] = ACTIONS(6950), + [anon_sym_AMP_GT_GT] = ACTIONS(6075), + [anon_sym_LT_AMP] = ACTIONS(6075), + [anon_sym_GT_AMP] = ACTIONS(6075), + [anon_sym_LT_LT] = ACTIONS(6950), + [anon_sym_LT_LT_DASH] = ACTIONS(6075), + [anon_sym_LT_LT_LT] = ACTIONS(6075), + [anon_sym_BQUOTE] = ACTIONS(6075), + [sym_comment] = ACTIONS(56), + }, + [3986] = { + [sym_file_descriptor] = ACTIONS(7032), + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [anon_sym_LT] = ACTIONS(7034), + [anon_sym_GT] = ACTIONS(7034), + [anon_sym_GT_GT] = ACTIONS(7034), + [anon_sym_AMP_GT] = ACTIONS(7034), + [anon_sym_AMP_GT_GT] = ACTIONS(7034), + [anon_sym_LT_AMP] = ACTIONS(7034), + [anon_sym_GT_AMP] = ACTIONS(7034), + [anon_sym_LT_LT] = ACTIONS(7034), + [anon_sym_LT_LT_DASH] = ACTIONS(7034), + [anon_sym_LT_LT_LT] = ACTIONS(7034), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), + }, + [3987] = { + [sym_file_descriptor] = ACTIONS(7036), + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [anon_sym_LT] = ACTIONS(7038), + [anon_sym_GT] = ACTIONS(7038), + [anon_sym_GT_GT] = ACTIONS(7038), + [anon_sym_AMP_GT] = ACTIONS(7038), + [anon_sym_AMP_GT_GT] = ACTIONS(7038), + [anon_sym_LT_AMP] = ACTIONS(7038), + [anon_sym_GT_AMP] = ACTIONS(7038), + [anon_sym_LT_LT] = ACTIONS(7038), + [anon_sym_LT_LT_DASH] = ACTIONS(7038), + [anon_sym_LT_LT_LT] = ACTIONS(7038), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), + }, + [3988] = { + [sym_file_descriptor] = ACTIONS(7040), + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [anon_sym_LT] = ACTIONS(7042), + [anon_sym_GT] = ACTIONS(7042), + [anon_sym_GT_GT] = ACTIONS(7042), + [anon_sym_AMP_GT] = ACTIONS(7042), + [anon_sym_AMP_GT_GT] = ACTIONS(7042), + [anon_sym_LT_AMP] = ACTIONS(7042), + [anon_sym_GT_AMP] = ACTIONS(7042), + [anon_sym_LT_LT] = ACTIONS(7042), + [anon_sym_LT_LT_DASH] = ACTIONS(7042), + [anon_sym_LT_LT_LT] = ACTIONS(7042), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), + }, + [3989] = { + [sym__heredoc_middle] = ACTIONS(6041), + [sym__heredoc_end] = ACTIONS(6041), + [anon_sym_DOLLAR] = ACTIONS(6930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6041), + [sym_comment] = ACTIONS(56), + }, + [3990] = { + [sym__heredoc_middle] = ACTIONS(6045), + [sym__heredoc_end] = ACTIONS(6045), + [anon_sym_DOLLAR] = ACTIONS(6932), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + }, + [3991] = { + [sym__heredoc_middle] = ACTIONS(6049), + [sym__heredoc_end] = ACTIONS(6049), + [anon_sym_DOLLAR] = ACTIONS(6934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6049), + [sym_comment] = ACTIONS(56), + }, + [3992] = { + [sym__heredoc_middle] = ACTIONS(6053), + [sym__heredoc_end] = ACTIONS(6053), + [anon_sym_DOLLAR] = ACTIONS(6936), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + }, + [3993] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8423), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3994] = { + [sym__heredoc_middle] = ACTIONS(6059), + [sym__heredoc_end] = ACTIONS(6059), + [anon_sym_DOLLAR] = ACTIONS(6940), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6059), + [sym_comment] = ACTIONS(56), + }, + [3995] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8425), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3996] = { + [sym__heredoc_middle] = ACTIONS(6065), + [sym__heredoc_end] = ACTIONS(6065), + [anon_sym_DOLLAR] = ACTIONS(6944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6065), + [sym_comment] = ACTIONS(56), + }, + [3997] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8427), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [3998] = { + [sym__heredoc_middle] = ACTIONS(6071), + [sym__heredoc_end] = ACTIONS(6071), + [anon_sym_DOLLAR] = ACTIONS(6948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6071), + [sym_comment] = ACTIONS(56), + }, + [3999] = { + [sym__heredoc_middle] = ACTIONS(6075), + [sym__heredoc_end] = ACTIONS(6075), + [anon_sym_DOLLAR] = ACTIONS(6950), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6075), + [sym_comment] = ACTIONS(56), + }, + [4000] = { + [sym__concat] = ACTIONS(7032), + [anon_sym_RPAREN] = ACTIONS(7032), + [sym__special_characters] = ACTIONS(7721), + [anon_sym_DQUOTE] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7721), + [sym_raw_string] = ACTIONS(7032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), + [anon_sym_BQUOTE] = ACTIONS(7032), + [anon_sym_LT_LPAREN] = ACTIONS(7032), + [anon_sym_GT_LPAREN] = ACTIONS(7032), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7721), + }, + [4001] = { + [sym__concat] = ACTIONS(7036), + [anon_sym_RPAREN] = ACTIONS(7036), + [sym__special_characters] = ACTIONS(7723), + [anon_sym_DQUOTE] = ACTIONS(7036), + [anon_sym_DOLLAR] = ACTIONS(7723), + [sym_raw_string] = ACTIONS(7036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), + [anon_sym_BQUOTE] = ACTIONS(7036), + [anon_sym_LT_LPAREN] = ACTIONS(7036), + [anon_sym_GT_LPAREN] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7723), + }, + [4002] = { + [sym__concat] = ACTIONS(7040), + [anon_sym_RPAREN] = ACTIONS(7040), + [sym__special_characters] = ACTIONS(7725), + [anon_sym_DQUOTE] = ACTIONS(7040), + [anon_sym_DOLLAR] = ACTIONS(7725), + [sym_raw_string] = ACTIONS(7040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), + [anon_sym_BQUOTE] = ACTIONS(7040), + [anon_sym_LT_LPAREN] = ACTIONS(7040), + [anon_sym_GT_LPAREN] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7725), + }, + [4003] = { + [sym__concat] = ACTIONS(7032), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [sym__special_characters] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [anon_sym_DOLLAR] = ACTIONS(7034), + [sym_raw_string] = ACTIONS(7034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), + [anon_sym_BQUOTE] = ACTIONS(7034), + [anon_sym_LT_LPAREN] = ACTIONS(7034), + [anon_sym_GT_LPAREN] = ACTIONS(7034), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(7034), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), + }, + [4004] = { + [sym__concat] = ACTIONS(7036), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [sym__special_characters] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7038), + [anon_sym_DOLLAR] = ACTIONS(7038), + [sym_raw_string] = ACTIONS(7038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), + [anon_sym_BQUOTE] = ACTIONS(7038), + [anon_sym_LT_LPAREN] = ACTIONS(7038), + [anon_sym_GT_LPAREN] = ACTIONS(7038), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(7038), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), + }, + [4005] = { + [sym__concat] = ACTIONS(7040), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [sym__special_characters] = ACTIONS(7042), + [anon_sym_DQUOTE] = ACTIONS(7042), + [anon_sym_DOLLAR] = ACTIONS(7042), + [sym_raw_string] = ACTIONS(7042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), + [anon_sym_BQUOTE] = ACTIONS(7042), + [anon_sym_LT_LPAREN] = ACTIONS(7042), + [anon_sym_GT_LPAREN] = ACTIONS(7042), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(7042), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), + }, + [4006] = { + [sym_file_descriptor] = ACTIONS(2563), + [sym_variable_name] = ACTIONS(2563), + [anon_sym_esac] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2565), + [anon_sym_SEMI_SEMI] = ACTIONS(2565), + [anon_sym_PIPE_AMP] = ACTIONS(2565), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE_PIPE] = ACTIONS(2565), + [anon_sym_LT] = ACTIONS(2565), + [anon_sym_GT] = ACTIONS(2565), + [anon_sym_GT_GT] = ACTIONS(2565), + [anon_sym_AMP_GT] = ACTIONS(2565), + [anon_sym_AMP_GT_GT] = ACTIONS(2565), + [anon_sym_LT_AMP] = ACTIONS(2565), + [anon_sym_GT_AMP] = ACTIONS(2565), + [sym__special_characters] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), + [anon_sym_DOLLAR] = ACTIONS(2565), + [sym_raw_string] = ACTIONS(2565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2565), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2565), + [anon_sym_BQUOTE] = ACTIONS(2565), + [anon_sym_LT_LPAREN] = ACTIONS(2565), + [anon_sym_GT_LPAREN] = ACTIONS(2565), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_LF] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2565), + }, + [4007] = { + [sym_concatenation] = STATE(661), + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [aux_sym_for_statement_repeat1] = STATE(1273), + [anon_sym_RPAREN] = ACTIONS(8429), + [sym__special_characters] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1289), + [sym_raw_string] = ACTIONS(1291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), + [anon_sym_BQUOTE] = ACTIONS(1297), + [anon_sym_LT_LPAREN] = ACTIONS(1299), + [anon_sym_GT_LPAREN] = ACTIONS(1299), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1301), + }, + [4008] = { + [sym_string] = STATE(4221), + [sym_simple_expansion] = STATE(4221), + [sym_string_expansion] = STATE(4221), + [sym_expansion] = STATE(4221), + [sym_command_substitution] = STATE(4221), + [sym_process_substitution] = STATE(4221), + [sym__special_characters] = ACTIONS(8431), + [anon_sym_DQUOTE] = ACTIONS(7414), + [anon_sym_DOLLAR] = ACTIONS(7416), + [sym_raw_string] = ACTIONS(8433), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7420), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7422), + [anon_sym_BQUOTE] = ACTIONS(7424), + [anon_sym_LT_LPAREN] = ACTIONS(7426), + [anon_sym_GT_LPAREN] = ACTIONS(7426), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8431), + }, + [4009] = { + [aux_sym_concatenation_repeat1] = STATE(4222), + [sym_file_descriptor] = ACTIONS(790), + [sym__concat] = ACTIONS(7955), + [sym_variable_name] = ACTIONS(790), + [anon_sym_esac] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_AMP_GT] = ACTIONS(792), + [anon_sym_AMP_GT_GT] = ACTIONS(792), + [anon_sym_LT_AMP] = ACTIONS(792), + [anon_sym_GT_AMP] = ACTIONS(792), + [sym__special_characters] = ACTIONS(792), + [anon_sym_DQUOTE] = ACTIONS(792), + [anon_sym_DOLLAR] = ACTIONS(792), + [sym_raw_string] = ACTIONS(792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(792), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(792), + [anon_sym_LT_LPAREN] = ACTIONS(792), + [anon_sym_GT_LPAREN] = ACTIONS(792), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(792), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), + }, + [4010] = { + [sym_file_descriptor] = ACTIONS(794), + [sym__concat] = ACTIONS(794), + [sym_variable_name] = ACTIONS(794), + [anon_sym_esac] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(796), + [anon_sym_GT_GT] = ACTIONS(796), + [anon_sym_AMP_GT] = ACTIONS(796), + [anon_sym_AMP_GT_GT] = ACTIONS(796), + [anon_sym_LT_AMP] = ACTIONS(796), + [anon_sym_GT_AMP] = ACTIONS(796), + [sym__special_characters] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(796), + [anon_sym_DOLLAR] = ACTIONS(796), + [sym_raw_string] = ACTIONS(796), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(796), + [anon_sym_BQUOTE] = ACTIONS(796), + [anon_sym_LT_LPAREN] = ACTIONS(796), + [anon_sym_GT_LPAREN] = ACTIONS(796), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(796), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + }, + [4011] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(8435), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [4012] = { + [sym_file_descriptor] = ACTIONS(826), + [sym__concat] = ACTIONS(826), + [sym_variable_name] = ACTIONS(826), + [anon_sym_esac] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(828), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(828), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [sym__special_characters] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(828), + [anon_sym_DOLLAR] = ACTIONS(828), + [sym_raw_string] = ACTIONS(828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(828), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(828), + [anon_sym_BQUOTE] = ACTIONS(828), + [anon_sym_LT_LPAREN] = ACTIONS(828), + [anon_sym_GT_LPAREN] = ACTIONS(828), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(828), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), + }, + [4013] = { + [sym_file_descriptor] = ACTIONS(830), + [sym__concat] = ACTIONS(830), + [sym_variable_name] = ACTIONS(830), + [anon_sym_esac] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_AMP_GT] = ACTIONS(832), + [anon_sym_AMP_GT_GT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(832), + [anon_sym_GT_AMP] = ACTIONS(832), + [sym__special_characters] = ACTIONS(832), + [anon_sym_DQUOTE] = ACTIONS(832), + [anon_sym_DOLLAR] = ACTIONS(832), + [sym_raw_string] = ACTIONS(832), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(832), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(832), + [anon_sym_BQUOTE] = ACTIONS(832), + [anon_sym_LT_LPAREN] = ACTIONS(832), + [anon_sym_GT_LPAREN] = ACTIONS(832), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(832), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), + }, + [4014] = { + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [sym_variable_name] = ACTIONS(834), + [anon_sym_esac] = ACTIONS(836), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_AMP_GT] = ACTIONS(836), + [anon_sym_AMP_GT_GT] = ACTIONS(836), + [anon_sym_LT_AMP] = ACTIONS(836), + [anon_sym_GT_AMP] = ACTIONS(836), + [sym__special_characters] = ACTIONS(836), + [anon_sym_DQUOTE] = ACTIONS(836), + [anon_sym_DOLLAR] = ACTIONS(836), + [sym_raw_string] = ACTIONS(836), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(836), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(836), + [anon_sym_BQUOTE] = ACTIONS(836), + [anon_sym_LT_LPAREN] = ACTIONS(836), + [anon_sym_GT_LPAREN] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(836), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), + }, + [4015] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(8437), + [sym_comment] = ACTIONS(56), + }, + [4016] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4227), + [anon_sym_RBRACE] = ACTIONS(8439), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8441), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4017] = { + [sym_subscript] = STATE(4231), + [sym_variable_name] = ACTIONS(8443), + [anon_sym_DOLLAR] = ACTIONS(8445), + [anon_sym_DASH] = ACTIONS(8445), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8447), + [anon_sym_STAR] = ACTIONS(8445), + [anon_sym_AT] = ACTIONS(8445), + [anon_sym_QMARK] = ACTIONS(8445), + [anon_sym_0] = ACTIONS(8449), + [anon_sym__] = ACTIONS(8449), + }, + [4018] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4234), + [anon_sym_RBRACE] = ACTIONS(8451), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8453), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4019] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4237), + [anon_sym_RBRACE] = ACTIONS(8455), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8457), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4020] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8459), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [4021] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8459), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [4022] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(8459), + [sym_comment] = ACTIONS(56), + }, + [4023] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(8459), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [4024] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8461), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [4025] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8461), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [4026] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(3776), + [sym_file_descriptor] = ACTIONS(6677), + [anon_sym_esac] = ACTIONS(2687), + [anon_sym_PIPE] = ACTIONS(2687), + [anon_sym_SEMI_SEMI] = ACTIONS(2687), + [anon_sym_PIPE_AMP] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_PIPE_PIPE] = ACTIONS(2687), + [anon_sym_LT] = ACTIONS(6681), + [anon_sym_GT] = ACTIONS(6681), + [anon_sym_GT_GT] = ACTIONS(6681), + [anon_sym_AMP_GT] = ACTIONS(6681), + [anon_sym_AMP_GT_GT] = ACTIONS(6681), + [anon_sym_LT_AMP] = ACTIONS(6681), + [anon_sym_GT_AMP] = ACTIONS(6681), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6683), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_LF] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2687), + }, + [4027] = { + [sym_compound_statement] = STATE(4240), + [anon_sym_LBRACE] = ACTIONS(486), + [sym_comment] = ACTIONS(56), + }, + [4028] = { + [anon_sym_LT] = ACTIONS(8463), + [anon_sym_GT] = ACTIONS(8463), + [anon_sym_GT_GT] = ACTIONS(8465), + [anon_sym_AMP_GT] = ACTIONS(8463), + [anon_sym_AMP_GT_GT] = ACTIONS(8465), + [anon_sym_LT_AMP] = ACTIONS(8465), + [anon_sym_GT_AMP] = ACTIONS(8465), + [sym_comment] = ACTIONS(56), + }, + [4029] = { + [sym_concatenation] = STATE(1378), + [sym_string] = STATE(4245), + [sym_simple_expansion] = STATE(4245), + [sym_string_expansion] = STATE(4245), + [sym_expansion] = STATE(4245), + [sym_command_substitution] = STATE(4245), + [sym_process_substitution] = STATE(4245), + [sym__special_characters] = ACTIONS(8467), + [anon_sym_DQUOTE] = ACTIONS(8469), + [anon_sym_DOLLAR] = ACTIONS(8471), + [sym_raw_string] = ACTIONS(8473), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8477), + [anon_sym_BQUOTE] = ACTIONS(8479), + [anon_sym_LT_LPAREN] = ACTIONS(8481), + [anon_sym_GT_LPAREN] = ACTIONS(8481), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8483), + }, + [4030] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(3776), + [sym_file_descriptor] = ACTIONS(6677), + [anon_sym_esac] = ACTIONS(3113), + [anon_sym_PIPE] = ACTIONS(3113), + [anon_sym_SEMI_SEMI] = ACTIONS(3113), + [anon_sym_PIPE_AMP] = ACTIONS(3113), + [anon_sym_AMP_AMP] = ACTIONS(3113), + [anon_sym_PIPE_PIPE] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(6681), + [anon_sym_GT] = ACTIONS(6681), + [anon_sym_GT_GT] = ACTIONS(6681), + [anon_sym_AMP_GT] = ACTIONS(6681), + [anon_sym_AMP_GT_GT] = ACTIONS(6681), + [anon_sym_LT_AMP] = ACTIONS(6681), + [anon_sym_GT_AMP] = ACTIONS(6681), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6683), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_LF] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3113), + }, + [4031] = { + [sym_variable_name] = ACTIONS(1279), + [anon_sym_esac] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_SEMI_SEMI] = ACTIONS(1281), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1281), + [sym_word] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + }, + [4032] = { + [sym_concatenation] = STATE(661), + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [aux_sym_for_statement_repeat1] = STATE(4251), + [anon_sym_RPAREN] = ACTIONS(8485), + [sym__special_characters] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1289), + [sym_raw_string] = ACTIONS(1291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), + [anon_sym_BQUOTE] = ACTIONS(1297), + [anon_sym_LT_LPAREN] = ACTIONS(1299), + [anon_sym_GT_LPAREN] = ACTIONS(1299), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1301), + }, + [4033] = { + [aux_sym_concatenation_repeat1] = STATE(3702), + [sym__concat] = ACTIONS(7436), + [sym_variable_name] = ACTIONS(1303), + [anon_sym_esac] = ACTIONS(1307), + [anon_sym_PIPE] = ACTIONS(1307), + [anon_sym_SEMI_SEMI] = ACTIONS(1307), + [anon_sym_PIPE_AMP] = ACTIONS(1307), + [anon_sym_AMP_AMP] = ACTIONS(1307), + [anon_sym_PIPE_PIPE] = ACTIONS(1307), + [sym__special_characters] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1307), + [sym_raw_string] = ACTIONS(1307), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1307), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1307), + [anon_sym_BQUOTE] = ACTIONS(1307), + [anon_sym_LT_LPAREN] = ACTIONS(1307), + [anon_sym_GT_LPAREN] = ACTIONS(1307), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1307), + [sym_word] = ACTIONS(1307), + [anon_sym_SEMI] = ACTIONS(1307), + [anon_sym_LF] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(1307), + }, + [4034] = { + [aux_sym_concatenation_repeat1] = STATE(3702), + [sym__concat] = ACTIONS(7436), + [sym_variable_name] = ACTIONS(1279), + [anon_sym_esac] = ACTIONS(1281), + [anon_sym_PIPE] = ACTIONS(1281), + [anon_sym_SEMI_SEMI] = ACTIONS(1281), + [anon_sym_PIPE_AMP] = ACTIONS(1281), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [sym__special_characters] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(1281), + [anon_sym_DOLLAR] = ACTIONS(1281), + [sym_raw_string] = ACTIONS(1281), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1281), + [anon_sym_BQUOTE] = ACTIONS(1281), + [anon_sym_LT_LPAREN] = ACTIONS(1281), + [anon_sym_GT_LPAREN] = ACTIONS(1281), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1281), + [sym_word] = ACTIONS(1281), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_LF] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + }, + [4035] = { + [sym__concat] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [4036] = { + [aux_sym_concatenation_repeat1] = STATE(4036), + [sym__concat] = ACTIONS(8487), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [4037] = { + [sym__concat] = ACTIONS(1927), + [sym_variable_name] = ACTIONS(1927), + [anon_sym_esac] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), + [anon_sym_BQUOTE] = ACTIONS(1929), + [anon_sym_LT_LPAREN] = ACTIONS(1929), + [anon_sym_GT_LPAREN] = ACTIONS(1929), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), + [sym_word] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), + }, + [4038] = { + [sym_concatenation] = STATE(4255), + [sym_string] = STATE(4254), + [sym_simple_expansion] = STATE(4254), + [sym_string_expansion] = STATE(4254), + [sym_expansion] = STATE(4254), + [sym_command_substitution] = STATE(4254), + [sym_process_substitution] = STATE(4254), + [anon_sym_RBRACE] = ACTIONS(8490), + [sym__special_characters] = ACTIONS(8492), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(8494), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8496), + }, + [4039] = { + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(1972), + [anon_sym_esac] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [sym__special_characters] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1974), + [sym_raw_string] = ACTIONS(1974), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [anon_sym_BQUOTE] = ACTIONS(1974), + [anon_sym_LT_LPAREN] = ACTIONS(1974), + [anon_sym_GT_LPAREN] = ACTIONS(1974), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1974), + [sym_word] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + }, + [4040] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8498), + }, + [4041] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8500), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4042] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(8502), + [sym_comment] = ACTIONS(56), + }, + [4043] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4261), + [anon_sym_RBRACE] = ACTIONS(8504), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8506), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4044] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4264), + [anon_sym_RBRACE] = ACTIONS(8508), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8510), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4045] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4266), + [anon_sym_RBRACE] = ACTIONS(8490), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8512), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4046] = { + [sym__concat] = ACTIONS(2026), + [sym_variable_name] = ACTIONS(2026), + [anon_sym_esac] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym_raw_string] = ACTIONS(2028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(2028), + [anon_sym_LT_LPAREN] = ACTIONS(2028), + [anon_sym_GT_LPAREN] = ACTIONS(2028), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2028), + [sym_word] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + }, + [4047] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8514), + }, + [4048] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8516), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4049] = { + [sym__concat] = ACTIONS(2034), + [sym_variable_name] = ACTIONS(2034), + [anon_sym_esac] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [anon_sym_LT_LPAREN] = ACTIONS(2036), + [anon_sym_GT_LPAREN] = ACTIONS(2036), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2036), + [sym_word] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + }, + [4050] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8518), + }, + [4051] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8490), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4052] = { + [sym__concat] = ACTIONS(2196), + [sym_variable_name] = ACTIONS(2196), + [anon_sym_esac] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [sym__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2198), + [sym_word] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + }, + [4053] = { + [sym__concat] = ACTIONS(2402), + [sym_variable_name] = ACTIONS(2402), + [anon_sym_esac] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [sym__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(2404), + [sym_raw_string] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2404), + [anon_sym_LT_LPAREN] = ACTIONS(2404), + [anon_sym_GT_LPAREN] = ACTIONS(2404), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2404), + [sym_word] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + }, + [4054] = { + [sym__concat] = ACTIONS(1890), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [4055] = { + [aux_sym_concatenation_repeat1] = STATE(4055), + [sym__concat] = ACTIONS(8520), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1892), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [4056] = { + [sym__concat] = ACTIONS(1927), + [anon_sym_esac] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), + [anon_sym_BQUOTE] = ACTIONS(1929), + [anon_sym_LT_LPAREN] = ACTIONS(1929), + [anon_sym_GT_LPAREN] = ACTIONS(1929), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1929), + [sym_word] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), + }, + [4057] = { + [sym_concatenation] = STATE(4273), + [sym_string] = STATE(4272), + [sym_simple_expansion] = STATE(4272), + [sym_string_expansion] = STATE(4272), + [sym_expansion] = STATE(4272), + [sym_command_substitution] = STATE(4272), + [sym_process_substitution] = STATE(4272), + [anon_sym_RBRACE] = ACTIONS(8523), + [sym__special_characters] = ACTIONS(8525), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(8527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8529), + }, + [4058] = { + [sym__concat] = ACTIONS(1972), + [anon_sym_esac] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [sym__special_characters] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1974), + [sym_raw_string] = ACTIONS(1974), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [anon_sym_BQUOTE] = ACTIONS(1974), + [anon_sym_LT_LPAREN] = ACTIONS(1974), + [anon_sym_GT_LPAREN] = ACTIONS(1974), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1974), + [sym_word] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + }, + [4059] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8531), + }, + [4060] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8533), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4061] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(8535), + [sym_comment] = ACTIONS(56), + }, + [4062] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4279), + [anon_sym_RBRACE] = ACTIONS(8537), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8539), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4063] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4282), + [anon_sym_RBRACE] = ACTIONS(8541), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8543), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4064] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4284), + [anon_sym_RBRACE] = ACTIONS(8523), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8545), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4065] = { + [sym__concat] = ACTIONS(2026), + [anon_sym_esac] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym_raw_string] = ACTIONS(2028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(2028), + [anon_sym_LT_LPAREN] = ACTIONS(2028), + [anon_sym_GT_LPAREN] = ACTIONS(2028), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2028), + [sym_word] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + }, + [4066] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8547), + }, + [4067] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8549), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4068] = { + [sym__concat] = ACTIONS(2034), + [anon_sym_esac] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [anon_sym_LT_LPAREN] = ACTIONS(2036), + [anon_sym_GT_LPAREN] = ACTIONS(2036), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2036), + [sym_word] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + }, + [4069] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8551), + }, + [4070] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8523), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4071] = { + [sym__concat] = ACTIONS(2196), + [anon_sym_esac] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [sym__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2198), + [sym_word] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + }, + [4072] = { + [sym__concat] = ACTIONS(2402), + [anon_sym_esac] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [sym__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(2404), + [sym_raw_string] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2404), + [anon_sym_LT_LPAREN] = ACTIONS(2404), + [anon_sym_GT_LPAREN] = ACTIONS(2404), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2404), + [sym_word] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + }, + [4073] = { + [sym_file_descriptor] = ACTIONS(3293), + [sym__concat] = ACTIONS(3293), + [anon_sym_esac] = ACTIONS(3295), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_EQ_TILDE] = ACTIONS(3295), + [anon_sym_EQ_EQ] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_GT] = ACTIONS(3295), + [anon_sym_GT_GT] = ACTIONS(3295), + [anon_sym_AMP_GT] = ACTIONS(3295), + [anon_sym_AMP_GT_GT] = ACTIONS(3295), + [anon_sym_LT_AMP] = ACTIONS(3295), + [anon_sym_GT_AMP] = ACTIONS(3295), + [anon_sym_LT_LT] = ACTIONS(3295), + [anon_sym_LT_LT_DASH] = ACTIONS(3295), + [anon_sym_LT_LT_LT] = ACTIONS(3295), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), + [anon_sym_BQUOTE] = ACTIONS(3295), + [anon_sym_LT_LPAREN] = ACTIONS(3295), + [anon_sym_GT_LPAREN] = ACTIONS(3295), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + }, + [4074] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8553), + [sym_comment] = ACTIONS(56), + }, + [4075] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8555), + [sym_comment] = ACTIONS(56), + }, + [4076] = { + [anon_sym_RBRACE] = ACTIONS(8555), + [sym_comment] = ACTIONS(56), + }, + [4077] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4291), + [anon_sym_RBRACE] = ACTIONS(8557), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4078] = { + [sym_file_descriptor] = ACTIONS(3357), + [sym__concat] = ACTIONS(3357), + [anon_sym_esac] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [anon_sym_EQ_TILDE] = ACTIONS(3359), + [anon_sym_EQ_EQ] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_AMP_GT] = ACTIONS(3359), + [anon_sym_AMP_GT_GT] = ACTIONS(3359), + [anon_sym_LT_AMP] = ACTIONS(3359), + [anon_sym_GT_AMP] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(3359), + [anon_sym_LT_LT_DASH] = ACTIONS(3359), + [anon_sym_LT_LT_LT] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), + }, + [4079] = { + [sym_concatenation] = STATE(4294), + [sym_string] = STATE(4293), + [sym_simple_expansion] = STATE(4293), + [sym_string_expansion] = STATE(4293), + [sym_expansion] = STATE(4293), + [sym_command_substitution] = STATE(4293), + [sym_process_substitution] = STATE(4293), + [anon_sym_RBRACE] = ACTIONS(8555), + [sym__special_characters] = ACTIONS(8559), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(8561), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8563), + }, + [4080] = { + [sym_file_descriptor] = ACTIONS(3402), + [sym__concat] = ACTIONS(3402), + [anon_sym_esac] = ACTIONS(3404), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_EQ_TILDE] = ACTIONS(3404), + [anon_sym_EQ_EQ] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_GT] = ACTIONS(3404), + [anon_sym_GT_GT] = ACTIONS(3404), + [anon_sym_AMP_GT] = ACTIONS(3404), + [anon_sym_AMP_GT_GT] = ACTIONS(3404), + [anon_sym_LT_AMP] = ACTIONS(3404), + [anon_sym_GT_AMP] = ACTIONS(3404), + [anon_sym_LT_LT] = ACTIONS(3404), + [anon_sym_LT_LT_DASH] = ACTIONS(3404), + [anon_sym_LT_LT_LT] = ACTIONS(3404), + [sym__special_characters] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_DOLLAR] = ACTIONS(3404), + [sym_raw_string] = ACTIONS(3404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), + [anon_sym_BQUOTE] = ACTIONS(3404), + [anon_sym_LT_LPAREN] = ACTIONS(3404), + [anon_sym_GT_LPAREN] = ACTIONS(3404), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), + }, + [4081] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8565), + }, + [4082] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8567), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4083] = { + [sym_file_descriptor] = ACTIONS(3410), + [sym__concat] = ACTIONS(3410), + [anon_sym_esac] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_EQ_TILDE] = ACTIONS(3412), + [anon_sym_EQ_EQ] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_GT] = ACTIONS(3412), + [anon_sym_AMP_GT_GT] = ACTIONS(3412), + [anon_sym_LT_AMP] = ACTIONS(3412), + [anon_sym_GT_AMP] = ACTIONS(3412), + [anon_sym_LT_LT] = ACTIONS(3412), + [anon_sym_LT_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT_LT] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(3412), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), + }, + [4084] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8569), + }, + [4085] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8571), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4086] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8573), + }, + [4087] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8555), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4088] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4301), + [anon_sym_RBRACE] = ACTIONS(8575), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4089] = { + [sym_file_descriptor] = ACTIONS(3422), + [sym__concat] = ACTIONS(3422), + [anon_sym_esac] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_EQ_TILDE] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(3424), + [anon_sym_AMP_GT] = ACTIONS(3424), + [anon_sym_AMP_GT_GT] = ACTIONS(3424), + [anon_sym_LT_AMP] = ACTIONS(3424), + [anon_sym_GT_AMP] = ACTIONS(3424), + [anon_sym_LT_LT] = ACTIONS(3424), + [anon_sym_LT_LT_DASH] = ACTIONS(3424), + [anon_sym_LT_LT_LT] = ACTIONS(3424), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(3424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), + [anon_sym_BQUOTE] = ACTIONS(3424), + [anon_sym_LT_LPAREN] = ACTIONS(3424), + [anon_sym_GT_LPAREN] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), + }, + [4090] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4303), + [anon_sym_RBRACE] = ACTIONS(8577), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4091] = { + [sym_file_redirect] = STATE(1882), + [sym_file_descriptor] = ACTIONS(7979), + [anon_sym_esac] = ACTIONS(2794), + [anon_sym_PIPE] = ACTIONS(2794), + [anon_sym_SEMI_SEMI] = ACTIONS(2794), + [anon_sym_PIPE_AMP] = ACTIONS(2794), + [anon_sym_AMP_AMP] = ACTIONS(2794), + [anon_sym_PIPE_PIPE] = ACTIONS(2794), + [anon_sym_LT] = ACTIONS(7981), + [anon_sym_GT] = ACTIONS(7981), + [anon_sym_GT_GT] = ACTIONS(7981), + [anon_sym_AMP_GT] = ACTIONS(7981), + [anon_sym_AMP_GT_GT] = ACTIONS(7981), + [anon_sym_LT_AMP] = ACTIONS(7981), + [anon_sym_GT_AMP] = ACTIONS(7981), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2794), + [anon_sym_LF] = ACTIONS(2794), + [anon_sym_AMP] = ACTIONS(2794), + }, + [4092] = { + [aux_sym_concatenation_repeat1] = STATE(4095), + [sym_file_descriptor] = ACTIONS(1241), + [sym__concat] = ACTIONS(8173), + [anon_sym_esac] = ACTIONS(4044), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [anon_sym_PIPE_AMP] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), + [anon_sym_LT] = ACTIONS(4044), + [anon_sym_GT] = ACTIONS(4044), + [anon_sym_GT_GT] = ACTIONS(4044), + [anon_sym_AMP_GT] = ACTIONS(4044), + [anon_sym_AMP_GT_GT] = ACTIONS(4044), + [anon_sym_LT_AMP] = ACTIONS(4044), + [anon_sym_GT_AMP] = ACTIONS(4044), + [anon_sym_LT_LT] = ACTIONS(4044), + [anon_sym_LT_LT_DASH] = ACTIONS(4044), + [anon_sym_LT_LT_LT] = ACTIONS(4044), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4044), + }, + [4093] = { + [aux_sym_concatenation_repeat1] = STATE(4095), + [sym_file_descriptor] = ACTIONS(1245), + [sym__concat] = ACTIONS(8173), + [anon_sym_esac] = ACTIONS(4046), + [anon_sym_PIPE] = ACTIONS(4046), + [anon_sym_SEMI_SEMI] = ACTIONS(4046), + [anon_sym_PIPE_AMP] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [anon_sym_LT] = ACTIONS(4046), + [anon_sym_GT] = ACTIONS(4046), + [anon_sym_GT_GT] = ACTIONS(4046), + [anon_sym_AMP_GT] = ACTIONS(4046), + [anon_sym_AMP_GT_GT] = ACTIONS(4046), + [anon_sym_LT_AMP] = ACTIONS(4046), + [anon_sym_GT_AMP] = ACTIONS(4046), + [anon_sym_LT_LT] = ACTIONS(4046), + [anon_sym_LT_LT_DASH] = ACTIONS(4046), + [anon_sym_LT_LT_LT] = ACTIONS(4046), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_LF] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4046), + }, + [4094] = { + [sym_string] = STATE(4304), + [sym_simple_expansion] = STATE(4304), + [sym_string_expansion] = STATE(4304), + [sym_expansion] = STATE(4304), + [sym_command_substitution] = STATE(4304), + [sym_process_substitution] = STATE(4304), + [sym__special_characters] = ACTIONS(8579), + [anon_sym_DQUOTE] = ACTIONS(7538), + [anon_sym_DOLLAR] = ACTIONS(7540), + [sym_raw_string] = ACTIONS(8581), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7544), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7546), + [anon_sym_BQUOTE] = ACTIONS(7548), + [anon_sym_LT_LPAREN] = ACTIONS(7550), + [anon_sym_GT_LPAREN] = ACTIONS(7550), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8579), + }, + [4095] = { + [aux_sym_concatenation_repeat1] = STATE(4305), + [sym_file_descriptor] = ACTIONS(790), + [sym__concat] = ACTIONS(8173), + [anon_sym_esac] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [anon_sym_LT] = ACTIONS(792), + [anon_sym_GT] = ACTIONS(792), + [anon_sym_GT_GT] = ACTIONS(792), + [anon_sym_AMP_GT] = ACTIONS(792), + [anon_sym_AMP_GT_GT] = ACTIONS(792), + [anon_sym_LT_AMP] = ACTIONS(792), + [anon_sym_GT_AMP] = ACTIONS(792), + [anon_sym_LT_LT] = ACTIONS(792), + [anon_sym_LT_LT_DASH] = ACTIONS(792), + [anon_sym_LT_LT_LT] = ACTIONS(792), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), + }, + [4096] = { + [sym_file_descriptor] = ACTIONS(794), + [sym__concat] = ACTIONS(794), + [anon_sym_esac] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(796), + [anon_sym_GT] = ACTIONS(796), + [anon_sym_GT_GT] = ACTIONS(796), + [anon_sym_AMP_GT] = ACTIONS(796), + [anon_sym_AMP_GT_GT] = ACTIONS(796), + [anon_sym_LT_AMP] = ACTIONS(796), + [anon_sym_GT_AMP] = ACTIONS(796), + [anon_sym_LT_LT] = ACTIONS(796), + [anon_sym_LT_LT_DASH] = ACTIONS(796), + [anon_sym_LT_LT_LT] = ACTIONS(796), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + }, + [4097] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(8583), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [4098] = { + [sym_file_descriptor] = ACTIONS(826), + [sym__concat] = ACTIONS(826), + [anon_sym_esac] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), + [anon_sym_LT] = ACTIONS(828), + [anon_sym_GT] = ACTIONS(828), + [anon_sym_GT_GT] = ACTIONS(828), + [anon_sym_AMP_GT] = ACTIONS(828), + [anon_sym_AMP_GT_GT] = ACTIONS(828), + [anon_sym_LT_AMP] = ACTIONS(828), + [anon_sym_GT_AMP] = ACTIONS(828), + [anon_sym_LT_LT] = ACTIONS(828), + [anon_sym_LT_LT_DASH] = ACTIONS(828), + [anon_sym_LT_LT_LT] = ACTIONS(828), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), + }, + [4099] = { + [sym_file_descriptor] = ACTIONS(830), + [sym__concat] = ACTIONS(830), + [anon_sym_esac] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [anon_sym_LT] = ACTIONS(832), + [anon_sym_GT] = ACTIONS(832), + [anon_sym_GT_GT] = ACTIONS(832), + [anon_sym_AMP_GT] = ACTIONS(832), + [anon_sym_AMP_GT_GT] = ACTIONS(832), + [anon_sym_LT_AMP] = ACTIONS(832), + [anon_sym_GT_AMP] = ACTIONS(832), + [anon_sym_LT_LT] = ACTIONS(832), + [anon_sym_LT_LT_DASH] = ACTIONS(832), + [anon_sym_LT_LT_LT] = ACTIONS(832), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), + }, + [4100] = { + [sym_file_descriptor] = ACTIONS(834), + [sym__concat] = ACTIONS(834), + [anon_sym_esac] = ACTIONS(836), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), + [anon_sym_LT] = ACTIONS(836), + [anon_sym_GT] = ACTIONS(836), + [anon_sym_GT_GT] = ACTIONS(836), + [anon_sym_AMP_GT] = ACTIONS(836), + [anon_sym_AMP_GT_GT] = ACTIONS(836), + [anon_sym_LT_AMP] = ACTIONS(836), + [anon_sym_GT_AMP] = ACTIONS(836), + [anon_sym_LT_LT] = ACTIONS(836), + [anon_sym_LT_LT_DASH] = ACTIONS(836), + [anon_sym_LT_LT_LT] = ACTIONS(836), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), + }, + [4101] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(8585), + [sym_comment] = ACTIONS(56), + }, + [4102] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4310), + [anon_sym_RBRACE] = ACTIONS(8587), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8589), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4103] = { + [sym_subscript] = STATE(4314), + [sym_variable_name] = ACTIONS(8591), + [anon_sym_DOLLAR] = ACTIONS(8593), + [anon_sym_DASH] = ACTIONS(8593), + [sym_comment] = ACTIONS(56), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8595), + [anon_sym_STAR] = ACTIONS(8593), + [anon_sym_AT] = ACTIONS(8593), + [anon_sym_QMARK] = ACTIONS(8593), + [anon_sym_0] = ACTIONS(8597), + [anon_sym__] = ACTIONS(8597), + }, + [4104] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4317), + [anon_sym_RBRACE] = ACTIONS(8599), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8601), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4105] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4320), + [anon_sym_RBRACE] = ACTIONS(8603), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8605), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4106] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8607), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [4107] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8607), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [4108] = { + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(8607), + [sym_comment] = ACTIONS(56), + }, + [4109] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(8607), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [4110] = { + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8609), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), + }, + [4111] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8609), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), + }, + [4112] = { + [sym_file_redirect] = STATE(207), + [sym_heredoc_redirect] = STATE(207), + [sym_herestring_redirect] = STATE(207), + [aux_sym_while_statement_repeat1] = STATE(3776), + [sym_file_descriptor] = ACTIONS(6677), + [anon_sym_esac] = ACTIONS(4106), + [anon_sym_PIPE] = ACTIONS(4106), + [anon_sym_SEMI_SEMI] = ACTIONS(4106), + [anon_sym_PIPE_AMP] = ACTIONS(4106), + [anon_sym_AMP_AMP] = ACTIONS(4106), + [anon_sym_PIPE_PIPE] = ACTIONS(4106), + [anon_sym_LT] = ACTIONS(6681), + [anon_sym_GT] = ACTIONS(6681), + [anon_sym_GT_GT] = ACTIONS(6681), + [anon_sym_AMP_GT] = ACTIONS(6681), + [anon_sym_AMP_GT_GT] = ACTIONS(6681), + [anon_sym_LT_AMP] = ACTIONS(6681), + [anon_sym_GT_AMP] = ACTIONS(6681), + [anon_sym_LT_LT] = ACTIONS(360), + [anon_sym_LT_LT_DASH] = ACTIONS(360), + [anon_sym_LT_LT_LT] = ACTIONS(6683), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4106), + [anon_sym_LF] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4106), + }, + [4113] = { + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_esac] = ACTIONS(8611), + [anon_sym_SEMI_SEMI] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(8613), + [anon_sym_DQUOTE] = ACTIONS(8615), + [anon_sym_DOLLAR] = ACTIONS(8617), + [sym_raw_string] = ACTIONS(8615), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8615), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8615), + [anon_sym_BQUOTE] = ACTIONS(8615), + [anon_sym_LT_LPAREN] = ACTIONS(8615), + [anon_sym_GT_LPAREN] = ACTIONS(8615), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8613), + }, + [4114] = { + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_esac] = ACTIONS(8619), + [anon_sym_SEMI_SEMI] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(8621), + [anon_sym_DQUOTE] = ACTIONS(8623), + [anon_sym_DOLLAR] = ACTIONS(8625), + [sym_raw_string] = ACTIONS(8623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8623), + [anon_sym_BQUOTE] = ACTIONS(8623), + [anon_sym_LT_LPAREN] = ACTIONS(8623), + [anon_sym_GT_LPAREN] = ACTIONS(8623), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8621), + }, + [4115] = { + [sym__concat] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6041), + [anon_sym_RPAREN] = ACTIONS(6041), + [sym_comment] = ACTIONS(56), + }, + [4116] = { + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6045), + [anon_sym_RPAREN] = ACTIONS(6045), + [sym_comment] = ACTIONS(56), + }, + [4117] = { + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6049), + [anon_sym_RPAREN] = ACTIONS(6049), + [sym_comment] = ACTIONS(56), + }, + [4118] = { + [sym__concat] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6053), + [anon_sym_RPAREN] = ACTIONS(6053), + [sym_comment] = ACTIONS(56), + }, + [4119] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8627), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4120] = { + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6059), + [anon_sym_RPAREN] = ACTIONS(6059), + [sym_comment] = ACTIONS(56), + }, + [4121] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8629), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4122] = { + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6065), + [anon_sym_RPAREN] = ACTIONS(6065), + [sym_comment] = ACTIONS(56), + }, + [4123] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8631), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4124] = { + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6071), + [anon_sym_RPAREN] = ACTIONS(6071), + [sym_comment] = ACTIONS(56), + }, + [4125] = { + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6075), + [anon_sym_RPAREN] = ACTIONS(6075), + [sym_comment] = ACTIONS(56), + }, + [4126] = { + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_SEMI_SEMI] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(7520), + [anon_sym_DQUOTE] = ACTIONS(7522), + [anon_sym_DOLLAR] = ACTIONS(7524), + [sym_raw_string] = ACTIONS(7522), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7522), + [anon_sym_BQUOTE] = ACTIONS(7522), + [anon_sym_LT_LPAREN] = ACTIONS(7522), + [anon_sym_GT_LPAREN] = ACTIONS(7522), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7520), + }, + [4127] = { + [sym__special_characters] = ACTIONS(7524), + [anon_sym_DQUOTE] = ACTIONS(7522), + [anon_sym_DOLLAR] = ACTIONS(7524), + [sym_raw_string] = ACTIONS(7522), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7522), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7522), + [anon_sym_BQUOTE] = ACTIONS(7522), + [anon_sym_LT_LPAREN] = ACTIONS(7522), + [anon_sym_GT_LPAREN] = ACTIONS(7522), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7524), + }, + [4128] = { + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8633), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), + }, + [4129] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8633), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), + }, + [4130] = { + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(26), + [sym_while_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_case_statement] = STATE(26), + [sym_function_definition] = STATE(26), + [sym_subshell] = STATE(26), + [sym_pipeline] = STATE(26), + [sym_list] = STATE(26), + [sym_command] = STATE(26), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(26), + [sym_variable_assignment] = STATE(28), + [sym_declaration_command] = STATE(26), + [sym_unset_command] = STATE(26), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(4130), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(1152), + [sym_variable_name] = ACTIONS(1155), + [anon_sym_for] = ACTIONS(1160), + [anon_sym_while] = ACTIONS(1163), + [anon_sym_if] = ACTIONS(1166), + [anon_sym_case] = ACTIONS(1169), + [anon_sym_SEMI_SEMI] = ACTIONS(1158), + [anon_sym_function] = ACTIONS(1172), + [anon_sym_LPAREN] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1178), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1184), + [anon_sym_typeset] = ACTIONS(1184), + [anon_sym_export] = ACTIONS(1184), + [anon_sym_readonly] = ACTIONS(1184), + [anon_sym_local] = ACTIONS(1184), + [anon_sym_unset] = ACTIONS(1187), + [anon_sym_unsetenv] = ACTIONS(1187), + [anon_sym_LT] = ACTIONS(1190), + [anon_sym_GT] = ACTIONS(1190), + [anon_sym_GT_GT] = ACTIONS(1193), + [anon_sym_AMP_GT] = ACTIONS(1190), + [anon_sym_AMP_GT_GT] = ACTIONS(1193), + [anon_sym_LT_AMP] = ACTIONS(1193), + [anon_sym_GT_AMP] = ACTIONS(1193), + [sym__special_characters] = ACTIONS(1196), + [anon_sym_DQUOTE] = ACTIONS(1199), + [anon_sym_DOLLAR] = ACTIONS(1202), + [sym_raw_string] = ACTIONS(1205), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1208), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1211), + [anon_sym_BQUOTE] = ACTIONS(1214), + [anon_sym_LT_LPAREN] = ACTIONS(1217), + [anon_sym_GT_LPAREN] = ACTIONS(1217), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1220), + }, + [4131] = { + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(4328), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4328), + [sym_function_definition] = STATE(4328), + [sym_subshell] = STATE(4328), + [sym_pipeline] = STATE(4328), + [sym_list] = STATE(4328), + [sym_command] = STATE(4328), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(4328), + [sym_variable_assignment] = STATE(4329), + [sym_declaration_command] = STATE(4328), + [sym_unset_command] = STATE(4328), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(4130), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(8635), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [4132] = { + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_SEMI_SEMI] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(7568), + [anon_sym_DQUOTE] = ACTIONS(7570), + [anon_sym_DOLLAR] = ACTIONS(7572), + [sym_raw_string] = ACTIONS(7570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7570), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7570), + [anon_sym_BQUOTE] = ACTIONS(7570), + [anon_sym_LT_LPAREN] = ACTIONS(7570), + [anon_sym_GT_LPAREN] = ACTIONS(7570), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7568), + }, + [4133] = { + [sym__special_characters] = ACTIONS(7572), + [anon_sym_DQUOTE] = ACTIONS(7570), + [anon_sym_DOLLAR] = ACTIONS(7572), + [sym_raw_string] = ACTIONS(7570), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7570), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7570), + [anon_sym_BQUOTE] = ACTIONS(7570), + [anon_sym_LT_LPAREN] = ACTIONS(7570), + [anon_sym_GT_LPAREN] = ACTIONS(7570), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7572), + }, + [4134] = { + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8637), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), + }, + [4135] = { + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8637), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), + }, + [4136] = { + [sym__terminated_statement] = STATE(25), + [sym_for_statement] = STATE(4332), + [sym_while_statement] = STATE(4332), + [sym_if_statement] = STATE(4332), + [sym_case_statement] = STATE(4332), + [sym_function_definition] = STATE(4332), + [sym_subshell] = STATE(4332), + [sym_pipeline] = STATE(4332), + [sym_list] = STATE(4332), + [sym_command] = STATE(4332), + [sym_command_name] = STATE(27), + [sym_bracket_command] = STATE(4332), + [sym_variable_assignment] = STATE(4333), + [sym_declaration_command] = STATE(4332), + [sym_unset_command] = STATE(4332), + [sym_subscript] = STATE(29), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(31), + [sym_string] = STATE(18), + [sym_simple_expansion] = STATE(18), + [sym_string_expansion] = STATE(18), + [sym_expansion] = STATE(18), + [sym_command_substitution] = STATE(18), + [sym_process_substitution] = STATE(18), + [aux_sym_program_repeat1] = STATE(4130), + [aux_sym_command_repeat1] = STATE(33), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(12), + [anon_sym_for] = ACTIONS(16), + [anon_sym_while] = ACTIONS(18), + [anon_sym_if] = ACTIONS(20), + [anon_sym_case] = ACTIONS(22), + [anon_sym_SEMI_SEMI] = ACTIONS(8639), + [anon_sym_function] = ACTIONS(24), + [anon_sym_LPAREN] = ACTIONS(26), + [anon_sym_LBRACK] = ACTIONS(28), + [anon_sym_LBRACK_LBRACK] = ACTIONS(30), + [anon_sym_declare] = ACTIONS(32), + [anon_sym_typeset] = ACTIONS(32), + [anon_sym_export] = ACTIONS(32), + [anon_sym_readonly] = ACTIONS(32), + [anon_sym_local] = ACTIONS(32), + [anon_sym_unset] = ACTIONS(34), + [anon_sym_unsetenv] = ACTIONS(34), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(40), + [anon_sym_DQUOTE] = ACTIONS(42), + [anon_sym_DOLLAR] = ACTIONS(44), + [sym_raw_string] = ACTIONS(46), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(48), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(50), + [anon_sym_BQUOTE] = ACTIONS(52), + [anon_sym_LT_LPAREN] = ACTIONS(54), + [anon_sym_GT_LPAREN] = ACTIONS(54), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(58), + }, + [4137] = { + [sym__concat] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), + }, + [4138] = { + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), + }, + [4139] = { + [sym__concat] = ACTIONS(6049), + [anon_sym_PIPE] = ACTIONS(6051), + [anon_sym_SEMI_SEMI] = ACTIONS(6051), + [anon_sym_PIPE_AMP] = ACTIONS(6051), + [anon_sym_AMP_AMP] = ACTIONS(6051), + [anon_sym_PIPE_PIPE] = ACTIONS(6051), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6051), + [anon_sym_LF] = ACTIONS(6051), + [anon_sym_AMP] = ACTIONS(6051), + }, + [4140] = { + [sym__concat] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), + }, + [4141] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8641), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4142] = { + [sym__concat] = ACTIONS(6059), + [anon_sym_PIPE] = ACTIONS(6061), + [anon_sym_SEMI_SEMI] = ACTIONS(6061), + [anon_sym_PIPE_AMP] = ACTIONS(6061), + [anon_sym_AMP_AMP] = ACTIONS(6061), + [anon_sym_PIPE_PIPE] = ACTIONS(6061), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6061), + [anon_sym_LF] = ACTIONS(6061), + [anon_sym_AMP] = ACTIONS(6061), + }, + [4143] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8643), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4144] = { + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), + }, + [4145] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8645), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4146] = { + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), + }, + [4147] = { + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), + }, + [4148] = { + [sym_file_descriptor] = ACTIONS(7032), + [sym__concat] = ACTIONS(7032), + [sym_variable_name] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_RPAREN] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [anon_sym_LT] = ACTIONS(7034), + [anon_sym_GT] = ACTIONS(7034), + [anon_sym_GT_GT] = ACTIONS(7034), + [anon_sym_AMP_GT] = ACTIONS(7034), + [anon_sym_AMP_GT_GT] = ACTIONS(7034), + [anon_sym_LT_AMP] = ACTIONS(7034), + [anon_sym_GT_AMP] = ACTIONS(7034), + [sym__special_characters] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [anon_sym_DOLLAR] = ACTIONS(7034), + [sym_raw_string] = ACTIONS(7034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), + [anon_sym_BQUOTE] = ACTIONS(7034), + [anon_sym_LT_LPAREN] = ACTIONS(7034), + [anon_sym_GT_LPAREN] = ACTIONS(7034), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(7034), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), + }, + [4149] = { + [sym_file_descriptor] = ACTIONS(7036), + [sym__concat] = ACTIONS(7036), + [sym_variable_name] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_RPAREN] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [anon_sym_LT] = ACTIONS(7038), + [anon_sym_GT] = ACTIONS(7038), + [anon_sym_GT_GT] = ACTIONS(7038), + [anon_sym_AMP_GT] = ACTIONS(7038), + [anon_sym_AMP_GT_GT] = ACTIONS(7038), + [anon_sym_LT_AMP] = ACTIONS(7038), + [anon_sym_GT_AMP] = ACTIONS(7038), + [sym__special_characters] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7038), + [anon_sym_DOLLAR] = ACTIONS(7038), + [sym_raw_string] = ACTIONS(7038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), + [anon_sym_BQUOTE] = ACTIONS(7038), + [anon_sym_LT_LPAREN] = ACTIONS(7038), + [anon_sym_GT_LPAREN] = ACTIONS(7038), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(7038), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), + }, + [4150] = { + [sym_file_descriptor] = ACTIONS(7040), + [sym__concat] = ACTIONS(7040), + [sym_variable_name] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_RPAREN] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [anon_sym_LT] = ACTIONS(7042), + [anon_sym_GT] = ACTIONS(7042), + [anon_sym_GT_GT] = ACTIONS(7042), + [anon_sym_AMP_GT] = ACTIONS(7042), + [anon_sym_AMP_GT_GT] = ACTIONS(7042), + [anon_sym_LT_AMP] = ACTIONS(7042), + [anon_sym_GT_AMP] = ACTIONS(7042), + [sym__special_characters] = ACTIONS(7042), + [anon_sym_DQUOTE] = ACTIONS(7042), + [anon_sym_DOLLAR] = ACTIONS(7042), + [sym_raw_string] = ACTIONS(7042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), + [anon_sym_BQUOTE] = ACTIONS(7042), + [anon_sym_LT_LPAREN] = ACTIONS(7042), + [anon_sym_GT_LPAREN] = ACTIONS(7042), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(7042), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), + }, + [4151] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_RPAREN] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), + }, + [4152] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_RPAREN] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), + }, + [4153] = { + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(4873), + [anon_sym_RPAREN] = ACTIONS(4873), + [anon_sym_SEMI_SEMI] = ACTIONS(4873), + [anon_sym_PIPE_AMP] = ACTIONS(4873), + [anon_sym_AMP_AMP] = ACTIONS(4873), + [anon_sym_PIPE_PIPE] = ACTIONS(4873), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4873), + [anon_sym_LF] = ACTIONS(4873), + [anon_sym_AMP] = ACTIONS(4873), + }, + [4154] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8647), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4155] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8649), + [sym_comment] = ACTIONS(56), + }, + [4156] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8651), + [sym_comment] = ACTIONS(56), + }, + [4157] = { + [anon_sym_RBRACE] = ACTIONS(8651), + [sym_comment] = ACTIONS(56), + }, + [4158] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4341), + [anon_sym_RBRACE] = ACTIONS(8653), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4159] = { + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(4885), + [anon_sym_RPAREN] = ACTIONS(4885), + [anon_sym_SEMI_SEMI] = ACTIONS(4885), + [anon_sym_PIPE_AMP] = ACTIONS(4885), + [anon_sym_AMP_AMP] = ACTIONS(4885), + [anon_sym_PIPE_PIPE] = ACTIONS(4885), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4885), + [anon_sym_LF] = ACTIONS(4885), + [anon_sym_AMP] = ACTIONS(4885), + }, + [4160] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4343), + [anon_sym_RBRACE] = ACTIONS(8655), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4161] = { + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(4891), + [anon_sym_RPAREN] = ACTIONS(4891), + [anon_sym_SEMI_SEMI] = ACTIONS(4891), + [anon_sym_PIPE_AMP] = ACTIONS(4891), + [anon_sym_AMP_AMP] = ACTIONS(4891), + [anon_sym_PIPE_PIPE] = ACTIONS(4891), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4891), + [anon_sym_LF] = ACTIONS(4891), + [anon_sym_AMP] = ACTIONS(4891), + }, + [4162] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4345), + [anon_sym_RBRACE] = ACTIONS(8657), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4163] = { + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_RPAREN] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), + }, + [4164] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8659), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4165] = { + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_RPAREN] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), + }, + [4166] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8661), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4167] = { + [sym_file_descriptor] = ACTIONS(7032), + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_RPAREN] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [anon_sym_LT] = ACTIONS(7034), + [anon_sym_GT] = ACTIONS(7034), + [anon_sym_GT_GT] = ACTIONS(7034), + [anon_sym_AMP_GT] = ACTIONS(7034), + [anon_sym_AMP_GT_GT] = ACTIONS(7034), + [anon_sym_LT_AMP] = ACTIONS(7034), + [anon_sym_GT_AMP] = ACTIONS(7034), + [anon_sym_LT_LT] = ACTIONS(7034), + [anon_sym_LT_LT_DASH] = ACTIONS(7034), + [anon_sym_LT_LT_LT] = ACTIONS(7034), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), + }, + [4168] = { + [sym_file_descriptor] = ACTIONS(7036), + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_RPAREN] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [anon_sym_LT] = ACTIONS(7038), + [anon_sym_GT] = ACTIONS(7038), + [anon_sym_GT_GT] = ACTIONS(7038), + [anon_sym_AMP_GT] = ACTIONS(7038), + [anon_sym_AMP_GT_GT] = ACTIONS(7038), + [anon_sym_LT_AMP] = ACTIONS(7038), + [anon_sym_GT_AMP] = ACTIONS(7038), + [anon_sym_LT_LT] = ACTIONS(7038), + [anon_sym_LT_LT_DASH] = ACTIONS(7038), + [anon_sym_LT_LT_LT] = ACTIONS(7038), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), + }, + [4169] = { + [sym_file_descriptor] = ACTIONS(7040), + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_RPAREN] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [anon_sym_LT] = ACTIONS(7042), + [anon_sym_GT] = ACTIONS(7042), + [anon_sym_GT_GT] = ACTIONS(7042), + [anon_sym_AMP_GT] = ACTIONS(7042), + [anon_sym_AMP_GT_GT] = ACTIONS(7042), + [anon_sym_LT_AMP] = ACTIONS(7042), + [anon_sym_GT_AMP] = ACTIONS(7042), + [anon_sym_LT_LT] = ACTIONS(7042), + [anon_sym_LT_LT_DASH] = ACTIONS(7042), + [anon_sym_LT_LT_LT] = ACTIONS(7042), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), + }, + [4170] = { + [sym__concat] = ACTIONS(7032), + [anon_sym_RBRACE] = ACTIONS(7032), + [sym_comment] = ACTIONS(56), + }, + [4171] = { + [sym__concat] = ACTIONS(7036), + [anon_sym_RBRACE] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), + }, + [4172] = { + [sym__concat] = ACTIONS(7040), + [anon_sym_RBRACE] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), + }, + [4173] = { + [sym_file_descriptor] = ACTIONS(7032), + [sym__concat] = ACTIONS(7032), + [sym_variable_name] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7721), + [anon_sym_RPAREN] = ACTIONS(7032), + [anon_sym_PIPE_AMP] = ACTIONS(7032), + [anon_sym_AMP_AMP] = ACTIONS(7032), + [anon_sym_PIPE_PIPE] = ACTIONS(7032), + [anon_sym_LT] = ACTIONS(7721), + [anon_sym_GT] = ACTIONS(7721), + [anon_sym_GT_GT] = ACTIONS(7032), + [anon_sym_AMP_GT] = ACTIONS(7721), + [anon_sym_AMP_GT_GT] = ACTIONS(7032), + [anon_sym_LT_AMP] = ACTIONS(7032), + [anon_sym_GT_AMP] = ACTIONS(7032), + [sym__special_characters] = ACTIONS(7721), + [anon_sym_DQUOTE] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7721), + [sym_raw_string] = ACTIONS(7032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), + [anon_sym_BQUOTE] = ACTIONS(7032), + [anon_sym_LT_LPAREN] = ACTIONS(7032), + [anon_sym_GT_LPAREN] = ACTIONS(7032), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7721), + }, + [4174] = { + [sym_file_descriptor] = ACTIONS(7036), + [sym__concat] = ACTIONS(7036), + [sym_variable_name] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_RPAREN] = ACTIONS(7036), + [anon_sym_PIPE_AMP] = ACTIONS(7036), + [anon_sym_AMP_AMP] = ACTIONS(7036), + [anon_sym_PIPE_PIPE] = ACTIONS(7036), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7036), + [anon_sym_AMP_GT] = ACTIONS(7723), + [anon_sym_AMP_GT_GT] = ACTIONS(7036), + [anon_sym_LT_AMP] = ACTIONS(7036), + [anon_sym_GT_AMP] = ACTIONS(7036), + [sym__special_characters] = ACTIONS(7723), + [anon_sym_DQUOTE] = ACTIONS(7036), + [anon_sym_DOLLAR] = ACTIONS(7723), + [sym_raw_string] = ACTIONS(7036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), + [anon_sym_BQUOTE] = ACTIONS(7036), + [anon_sym_LT_LPAREN] = ACTIONS(7036), + [anon_sym_GT_LPAREN] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7723), + }, + [4175] = { + [sym_file_descriptor] = ACTIONS(7040), + [sym__concat] = ACTIONS(7040), + [sym_variable_name] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7040), + [anon_sym_PIPE_AMP] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7040), + [anon_sym_PIPE_PIPE] = ACTIONS(7040), + [anon_sym_LT] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7725), + [anon_sym_GT_GT] = ACTIONS(7040), + [anon_sym_AMP_GT] = ACTIONS(7725), + [anon_sym_AMP_GT_GT] = ACTIONS(7040), + [anon_sym_LT_AMP] = ACTIONS(7040), + [anon_sym_GT_AMP] = ACTIONS(7040), + [sym__special_characters] = ACTIONS(7725), + [anon_sym_DQUOTE] = ACTIONS(7040), + [anon_sym_DOLLAR] = ACTIONS(7725), + [sym_raw_string] = ACTIONS(7040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), + [anon_sym_BQUOTE] = ACTIONS(7040), + [anon_sym_LT_LPAREN] = ACTIONS(7040), + [anon_sym_GT_LPAREN] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7725), + }, + [4176] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(5860), + [anon_sym_RPAREN] = ACTIONS(4802), + [anon_sym_PIPE_AMP] = ACTIONS(4802), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [sym_comment] = ACTIONS(56), + }, + [4177] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_RPAREN] = ACTIONS(4808), + [anon_sym_PIPE_AMP] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), + [sym_comment] = ACTIONS(56), + }, + [4178] = { + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5864), + [anon_sym_RPAREN] = ACTIONS(4871), + [anon_sym_PIPE_AMP] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [sym_comment] = ACTIONS(56), + }, + [4179] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8663), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4180] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8665), + [sym_comment] = ACTIONS(56), + }, + [4181] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8667), + [sym_comment] = ACTIONS(56), + }, + [4182] = { + [anon_sym_RBRACE] = ACTIONS(8667), + [sym_comment] = ACTIONS(56), + }, + [4183] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4352), + [anon_sym_RBRACE] = ACTIONS(8669), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4184] = { + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5874), + [anon_sym_RPAREN] = ACTIONS(4883), + [anon_sym_PIPE_AMP] = ACTIONS(4883), + [anon_sym_AMP_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4883), + [sym_comment] = ACTIONS(56), + }, + [4185] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4354), + [anon_sym_RBRACE] = ACTIONS(8671), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4186] = { + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5878), + [anon_sym_RPAREN] = ACTIONS(4889), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [sym_comment] = ACTIONS(56), + }, + [4187] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4356), + [anon_sym_RBRACE] = ACTIONS(8673), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4188] = { + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(5882), + [anon_sym_RPAREN] = ACTIONS(4895), + [anon_sym_PIPE_AMP] = ACTIONS(4895), + [anon_sym_AMP_AMP] = ACTIONS(4895), + [anon_sym_PIPE_PIPE] = ACTIONS(4895), + [sym_comment] = ACTIONS(56), + }, + [4189] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8675), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4190] = { + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(5886), + [anon_sym_RPAREN] = ACTIONS(4901), + [anon_sym_PIPE_AMP] = ACTIONS(4901), + [anon_sym_AMP_AMP] = ACTIONS(4901), + [anon_sym_PIPE_PIPE] = ACTIONS(4901), + [sym_comment] = ACTIONS(56), + }, + [4191] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8677), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4192] = { + [sym_file_descriptor] = ACTIONS(7032), + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7721), + [anon_sym_RPAREN] = ACTIONS(7032), + [anon_sym_PIPE_AMP] = ACTIONS(7032), + [anon_sym_AMP_AMP] = ACTIONS(7032), + [anon_sym_PIPE_PIPE] = ACTIONS(7032), + [anon_sym_LT] = ACTIONS(7721), + [anon_sym_GT] = ACTIONS(7721), + [anon_sym_GT_GT] = ACTIONS(7032), + [anon_sym_AMP_GT] = ACTIONS(7721), + [anon_sym_AMP_GT_GT] = ACTIONS(7032), + [anon_sym_LT_AMP] = ACTIONS(7032), + [anon_sym_GT_AMP] = ACTIONS(7032), + [anon_sym_LT_LT] = ACTIONS(7721), + [anon_sym_LT_LT_DASH] = ACTIONS(7032), + [anon_sym_LT_LT_LT] = ACTIONS(7032), + [sym_comment] = ACTIONS(56), + }, + [4193] = { + [sym_file_descriptor] = ACTIONS(7036), + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_RPAREN] = ACTIONS(7036), + [anon_sym_PIPE_AMP] = ACTIONS(7036), + [anon_sym_AMP_AMP] = ACTIONS(7036), + [anon_sym_PIPE_PIPE] = ACTIONS(7036), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7036), + [anon_sym_AMP_GT] = ACTIONS(7723), + [anon_sym_AMP_GT_GT] = ACTIONS(7036), + [anon_sym_LT_AMP] = ACTIONS(7036), + [anon_sym_GT_AMP] = ACTIONS(7036), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_LT_LT_DASH] = ACTIONS(7036), + [anon_sym_LT_LT_LT] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), + }, + [4194] = { + [sym_file_descriptor] = ACTIONS(7040), + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7040), + [anon_sym_PIPE_AMP] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7040), + [anon_sym_PIPE_PIPE] = ACTIONS(7040), + [anon_sym_LT] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7725), + [anon_sym_GT_GT] = ACTIONS(7040), + [anon_sym_AMP_GT] = ACTIONS(7725), + [anon_sym_AMP_GT_GT] = ACTIONS(7040), + [anon_sym_LT_AMP] = ACTIONS(7040), + [anon_sym_GT_AMP] = ACTIONS(7040), + [anon_sym_LT_LT] = ACTIONS(7725), + [anon_sym_LT_LT_DASH] = ACTIONS(7040), + [anon_sym_LT_LT_LT] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), + }, + [4195] = { + [sym_file_descriptor] = ACTIONS(7032), + [sym__concat] = ACTIONS(7032), + [sym_variable_name] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7721), + [anon_sym_PIPE_AMP] = ACTIONS(7032), + [anon_sym_AMP_AMP] = ACTIONS(7032), + [anon_sym_PIPE_PIPE] = ACTIONS(7032), + [anon_sym_LT] = ACTIONS(7721), + [anon_sym_GT] = ACTIONS(7721), + [anon_sym_GT_GT] = ACTIONS(7032), + [anon_sym_AMP_GT] = ACTIONS(7721), + [anon_sym_AMP_GT_GT] = ACTIONS(7032), + [anon_sym_LT_AMP] = ACTIONS(7032), + [anon_sym_GT_AMP] = ACTIONS(7032), + [sym__special_characters] = ACTIONS(7721), + [anon_sym_DQUOTE] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7721), + [sym_raw_string] = ACTIONS(7032), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7032), + [anon_sym_BQUOTE] = ACTIONS(7032), + [anon_sym_LT_LPAREN] = ACTIONS(7032), + [anon_sym_GT_LPAREN] = ACTIONS(7032), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7721), + }, + [4196] = { + [sym_file_descriptor] = ACTIONS(7036), + [sym__concat] = ACTIONS(7036), + [sym_variable_name] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_PIPE_AMP] = ACTIONS(7036), + [anon_sym_AMP_AMP] = ACTIONS(7036), + [anon_sym_PIPE_PIPE] = ACTIONS(7036), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7036), + [anon_sym_AMP_GT] = ACTIONS(7723), + [anon_sym_AMP_GT_GT] = ACTIONS(7036), + [anon_sym_LT_AMP] = ACTIONS(7036), + [anon_sym_GT_AMP] = ACTIONS(7036), + [sym__special_characters] = ACTIONS(7723), + [anon_sym_DQUOTE] = ACTIONS(7036), + [anon_sym_DOLLAR] = ACTIONS(7723), + [sym_raw_string] = ACTIONS(7036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7036), + [anon_sym_BQUOTE] = ACTIONS(7036), + [anon_sym_LT_LPAREN] = ACTIONS(7036), + [anon_sym_GT_LPAREN] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7723), + }, + [4197] = { + [sym_file_descriptor] = ACTIONS(7040), + [sym__concat] = ACTIONS(7040), + [sym_variable_name] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7725), + [anon_sym_PIPE_AMP] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7040), + [anon_sym_PIPE_PIPE] = ACTIONS(7040), + [anon_sym_LT] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7725), + [anon_sym_GT_GT] = ACTIONS(7040), + [anon_sym_AMP_GT] = ACTIONS(7725), + [anon_sym_AMP_GT_GT] = ACTIONS(7040), + [anon_sym_LT_AMP] = ACTIONS(7040), + [anon_sym_GT_AMP] = ACTIONS(7040), + [sym__special_characters] = ACTIONS(7725), + [anon_sym_DQUOTE] = ACTIONS(7040), + [anon_sym_DOLLAR] = ACTIONS(7725), + [sym_raw_string] = ACTIONS(7040), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7040), + [anon_sym_BQUOTE] = ACTIONS(7040), + [anon_sym_LT_LPAREN] = ACTIONS(7040), + [anon_sym_GT_LPAREN] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(7725), + }, + [4198] = { + [sym__concat] = ACTIONS(4802), + [anon_sym_PIPE] = ACTIONS(5860), + [anon_sym_PIPE_AMP] = ACTIONS(4802), + [anon_sym_AMP_AMP] = ACTIONS(4802), + [anon_sym_PIPE_PIPE] = ACTIONS(4802), + [anon_sym_BQUOTE] = ACTIONS(4802), + [sym_comment] = ACTIONS(56), + }, + [4199] = { + [sym__concat] = ACTIONS(4808), + [anon_sym_PIPE] = ACTIONS(5862), + [anon_sym_PIPE_AMP] = ACTIONS(4808), + [anon_sym_AMP_AMP] = ACTIONS(4808), + [anon_sym_PIPE_PIPE] = ACTIONS(4808), + [anon_sym_BQUOTE] = ACTIONS(4808), + [sym_comment] = ACTIONS(56), + }, + [4200] = { + [sym__concat] = ACTIONS(4871), + [anon_sym_PIPE] = ACTIONS(5864), + [anon_sym_PIPE_AMP] = ACTIONS(4871), + [anon_sym_AMP_AMP] = ACTIONS(4871), + [anon_sym_PIPE_PIPE] = ACTIONS(4871), + [anon_sym_BQUOTE] = ACTIONS(4871), + [sym_comment] = ACTIONS(56), + }, + [4201] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8679), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4202] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8681), + [sym_comment] = ACTIONS(56), + }, + [4203] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8683), + [sym_comment] = ACTIONS(56), + }, + [4204] = { + [anon_sym_RBRACE] = ACTIONS(8683), + [sym_comment] = ACTIONS(56), + }, + [4205] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4363), + [anon_sym_RBRACE] = ACTIONS(8685), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4206] = { + [sym__concat] = ACTIONS(4883), + [anon_sym_PIPE] = ACTIONS(5874), + [anon_sym_PIPE_AMP] = ACTIONS(4883), + [anon_sym_AMP_AMP] = ACTIONS(4883), + [anon_sym_PIPE_PIPE] = ACTIONS(4883), + [anon_sym_BQUOTE] = ACTIONS(4883), + [sym_comment] = ACTIONS(56), + }, + [4207] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4365), + [anon_sym_RBRACE] = ACTIONS(8687), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4208] = { + [sym__concat] = ACTIONS(4889), + [anon_sym_PIPE] = ACTIONS(5878), + [anon_sym_PIPE_AMP] = ACTIONS(4889), + [anon_sym_AMP_AMP] = ACTIONS(4889), + [anon_sym_PIPE_PIPE] = ACTIONS(4889), + [anon_sym_BQUOTE] = ACTIONS(4889), + [sym_comment] = ACTIONS(56), + }, + [4209] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4367), + [anon_sym_RBRACE] = ACTIONS(8689), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4210] = { + [sym__concat] = ACTIONS(4895), + [anon_sym_PIPE] = ACTIONS(5882), + [anon_sym_PIPE_AMP] = ACTIONS(4895), + [anon_sym_AMP_AMP] = ACTIONS(4895), + [anon_sym_PIPE_PIPE] = ACTIONS(4895), + [anon_sym_BQUOTE] = ACTIONS(4895), + [sym_comment] = ACTIONS(56), + }, + [4211] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8691), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4212] = { + [sym__concat] = ACTIONS(4901), + [anon_sym_PIPE] = ACTIONS(5886), + [anon_sym_PIPE_AMP] = ACTIONS(4901), + [anon_sym_AMP_AMP] = ACTIONS(4901), + [anon_sym_PIPE_PIPE] = ACTIONS(4901), + [anon_sym_BQUOTE] = ACTIONS(4901), + [sym_comment] = ACTIONS(56), + }, + [4213] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8693), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4214] = { + [sym_file_descriptor] = ACTIONS(7032), + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7721), + [anon_sym_PIPE_AMP] = ACTIONS(7032), + [anon_sym_AMP_AMP] = ACTIONS(7032), + [anon_sym_PIPE_PIPE] = ACTIONS(7032), + [anon_sym_LT] = ACTIONS(7721), + [anon_sym_GT] = ACTIONS(7721), + [anon_sym_GT_GT] = ACTIONS(7032), + [anon_sym_AMP_GT] = ACTIONS(7721), + [anon_sym_AMP_GT_GT] = ACTIONS(7032), + [anon_sym_LT_AMP] = ACTIONS(7032), + [anon_sym_GT_AMP] = ACTIONS(7032), + [anon_sym_LT_LT] = ACTIONS(7721), + [anon_sym_LT_LT_DASH] = ACTIONS(7032), + [anon_sym_LT_LT_LT] = ACTIONS(7032), + [anon_sym_BQUOTE] = ACTIONS(7032), + [sym_comment] = ACTIONS(56), + }, + [4215] = { + [sym_file_descriptor] = ACTIONS(7036), + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_PIPE_AMP] = ACTIONS(7036), + [anon_sym_AMP_AMP] = ACTIONS(7036), + [anon_sym_PIPE_PIPE] = ACTIONS(7036), + [anon_sym_LT] = ACTIONS(7723), + [anon_sym_GT] = ACTIONS(7723), + [anon_sym_GT_GT] = ACTIONS(7036), + [anon_sym_AMP_GT] = ACTIONS(7723), + [anon_sym_AMP_GT_GT] = ACTIONS(7036), + [anon_sym_LT_AMP] = ACTIONS(7036), + [anon_sym_GT_AMP] = ACTIONS(7036), + [anon_sym_LT_LT] = ACTIONS(7723), + [anon_sym_LT_LT_DASH] = ACTIONS(7036), + [anon_sym_LT_LT_LT] = ACTIONS(7036), + [anon_sym_BQUOTE] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), + }, + [4216] = { + [sym_file_descriptor] = ACTIONS(7040), + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7725), + [anon_sym_PIPE_AMP] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7040), + [anon_sym_PIPE_PIPE] = ACTIONS(7040), + [anon_sym_LT] = ACTIONS(7725), + [anon_sym_GT] = ACTIONS(7725), + [anon_sym_GT_GT] = ACTIONS(7040), + [anon_sym_AMP_GT] = ACTIONS(7725), + [anon_sym_AMP_GT_GT] = ACTIONS(7040), + [anon_sym_LT_AMP] = ACTIONS(7040), + [anon_sym_GT_AMP] = ACTIONS(7040), + [anon_sym_LT_LT] = ACTIONS(7725), + [anon_sym_LT_LT_DASH] = ACTIONS(7040), + [anon_sym_LT_LT_LT] = ACTIONS(7040), + [anon_sym_BQUOTE] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), + }, + [4217] = { + [sym__heredoc_middle] = ACTIONS(7032), + [sym__heredoc_end] = ACTIONS(7032), + [anon_sym_DOLLAR] = ACTIONS(7721), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7032), + [sym_comment] = ACTIONS(56), + }, + [4218] = { + [sym__heredoc_middle] = ACTIONS(7036), + [sym__heredoc_end] = ACTIONS(7036), + [anon_sym_DOLLAR] = ACTIONS(7723), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), + }, + [4219] = { + [sym__heredoc_middle] = ACTIONS(7040), + [sym__heredoc_end] = ACTIONS(7040), + [anon_sym_DOLLAR] = ACTIONS(7725), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), + }, + [4220] = { + [sym_file_descriptor] = ACTIONS(4181), + [sym_variable_name] = ACTIONS(4181), + [anon_sym_esac] = ACTIONS(4183), + [anon_sym_PIPE] = ACTIONS(4183), + [anon_sym_SEMI_SEMI] = ACTIONS(4183), + [anon_sym_PIPE_AMP] = ACTIONS(4183), + [anon_sym_AMP_AMP] = ACTIONS(4183), + [anon_sym_PIPE_PIPE] = ACTIONS(4183), + [anon_sym_LT] = ACTIONS(4183), + [anon_sym_GT] = ACTIONS(4183), + [anon_sym_GT_GT] = ACTIONS(4183), + [anon_sym_AMP_GT] = ACTIONS(4183), + [anon_sym_AMP_GT_GT] = ACTIONS(4183), + [anon_sym_LT_AMP] = ACTIONS(4183), + [anon_sym_GT_AMP] = ACTIONS(4183), + [sym__special_characters] = ACTIONS(4183), + [anon_sym_DQUOTE] = ACTIONS(4183), + [anon_sym_DOLLAR] = ACTIONS(4183), + [sym_raw_string] = ACTIONS(4183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4183), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4183), + [anon_sym_BQUOTE] = ACTIONS(4183), + [anon_sym_LT_LPAREN] = ACTIONS(4183), + [anon_sym_GT_LPAREN] = ACTIONS(4183), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4183), + [anon_sym_LF] = ACTIONS(4183), + [anon_sym_AMP] = ACTIONS(4183), + }, + [4221] = { + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [4222] = { + [aux_sym_concatenation_repeat1] = STATE(4222), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(8695), + [sym_variable_name] = ACTIONS(1890), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [sym__special_characters] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1892), + [anon_sym_DOLLAR] = ACTIONS(1892), + [sym_raw_string] = ACTIONS(1892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1892), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1892), + [anon_sym_BQUOTE] = ACTIONS(1892), + [anon_sym_LT_LPAREN] = ACTIONS(1892), + [anon_sym_GT_LPAREN] = ACTIONS(1892), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + }, + [4223] = { + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [sym_variable_name] = ACTIONS(1927), + [anon_sym_esac] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1929), + [anon_sym_AMP_GT] = ACTIONS(1929), + [anon_sym_AMP_GT_GT] = ACTIONS(1929), + [anon_sym_LT_AMP] = ACTIONS(1929), + [anon_sym_GT_AMP] = ACTIONS(1929), + [sym__special_characters] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(1929), + [anon_sym_DOLLAR] = ACTIONS(1929), + [sym_raw_string] = ACTIONS(1929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1929), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1929), + [anon_sym_BQUOTE] = ACTIONS(1929), + [anon_sym_LT_LPAREN] = ACTIONS(1929), + [anon_sym_GT_LPAREN] = ACTIONS(1929), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1929), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), + }, + [4224] = { + [sym_concatenation] = STATE(4373), + [sym_string] = STATE(4372), + [sym_simple_expansion] = STATE(4372), + [sym_string_expansion] = STATE(4372), + [sym_expansion] = STATE(4372), + [sym_command_substitution] = STATE(4372), + [sym_process_substitution] = STATE(4372), + [anon_sym_RBRACE] = ACTIONS(8698), + [sym__special_characters] = ACTIONS(8700), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(8702), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8704), + }, + [4225] = { + [sym_file_descriptor] = ACTIONS(1972), + [sym__concat] = ACTIONS(1972), + [sym_variable_name] = ACTIONS(1972), + [anon_sym_esac] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_GT] = ACTIONS(1974), + [anon_sym_GT_GT] = ACTIONS(1974), + [anon_sym_AMP_GT] = ACTIONS(1974), + [anon_sym_AMP_GT_GT] = ACTIONS(1974), + [anon_sym_LT_AMP] = ACTIONS(1974), + [anon_sym_GT_AMP] = ACTIONS(1974), + [sym__special_characters] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_DOLLAR] = ACTIONS(1974), + [sym_raw_string] = ACTIONS(1974), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1974), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1974), + [anon_sym_BQUOTE] = ACTIONS(1974), + [anon_sym_LT_LPAREN] = ACTIONS(1974), + [anon_sym_GT_LPAREN] = ACTIONS(1974), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + }, + [4226] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8706), + }, + [4227] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8708), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4228] = { + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(8710), + [sym_comment] = ACTIONS(56), + }, + [4229] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4379), + [anon_sym_RBRACE] = ACTIONS(8712), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8714), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4230] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4382), + [anon_sym_RBRACE] = ACTIONS(8716), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8718), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4231] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4384), + [anon_sym_RBRACE] = ACTIONS(8698), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8720), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4232] = { + [sym_file_descriptor] = ACTIONS(2026), + [sym__concat] = ACTIONS(2026), + [sym_variable_name] = ACTIONS(2026), + [anon_sym_esac] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_GT_GT] = ACTIONS(2028), + [anon_sym_AMP_GT] = ACTIONS(2028), + [anon_sym_AMP_GT_GT] = ACTIONS(2028), + [anon_sym_LT_AMP] = ACTIONS(2028), + [anon_sym_GT_AMP] = ACTIONS(2028), + [sym__special_characters] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [sym_raw_string] = ACTIONS(2028), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2028), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2028), + [anon_sym_BQUOTE] = ACTIONS(2028), + [anon_sym_LT_LPAREN] = ACTIONS(2028), + [anon_sym_GT_LPAREN] = ACTIONS(2028), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + }, + [4233] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8722), + }, + [4234] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8724), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4235] = { + [sym_file_descriptor] = ACTIONS(2034), + [sym__concat] = ACTIONS(2034), + [sym_variable_name] = ACTIONS(2034), + [anon_sym_esac] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_GT] = ACTIONS(2036), + [anon_sym_GT_GT] = ACTIONS(2036), + [anon_sym_AMP_GT] = ACTIONS(2036), + [anon_sym_AMP_GT_GT] = ACTIONS(2036), + [anon_sym_LT_AMP] = ACTIONS(2036), + [anon_sym_GT_AMP] = ACTIONS(2036), + [sym__special_characters] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_DOLLAR] = ACTIONS(2036), + [sym_raw_string] = ACTIONS(2036), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2036), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2036), + [anon_sym_BQUOTE] = ACTIONS(2036), + [anon_sym_LT_LPAREN] = ACTIONS(2036), + [anon_sym_GT_LPAREN] = ACTIONS(2036), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + }, + [4236] = { + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8726), + }, + [4237] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8698), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4238] = { + [sym_file_descriptor] = ACTIONS(2196), + [sym__concat] = ACTIONS(2196), + [sym_variable_name] = ACTIONS(2196), + [anon_sym_esac] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_GT] = ACTIONS(2198), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_AMP_GT] = ACTIONS(2198), + [anon_sym_AMP_GT_GT] = ACTIONS(2198), + [anon_sym_LT_AMP] = ACTIONS(2198), + [anon_sym_GT_AMP] = ACTIONS(2198), + [sym__special_characters] = ACTIONS(2198), + [anon_sym_DQUOTE] = ACTIONS(2198), + [anon_sym_DOLLAR] = ACTIONS(2198), + [sym_raw_string] = ACTIONS(2198), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2198), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2198), + [anon_sym_BQUOTE] = ACTIONS(2198), + [anon_sym_LT_LPAREN] = ACTIONS(2198), + [anon_sym_GT_LPAREN] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2198), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), + }, + [4239] = { + [sym_file_descriptor] = ACTIONS(2402), + [sym__concat] = ACTIONS(2402), + [sym_variable_name] = ACTIONS(2402), + [anon_sym_esac] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_AMP_GT] = ACTIONS(2404), + [anon_sym_AMP_GT_GT] = ACTIONS(2404), + [anon_sym_LT_AMP] = ACTIONS(2404), + [anon_sym_GT_AMP] = ACTIONS(2404), + [sym__special_characters] = ACTIONS(2404), + [anon_sym_DQUOTE] = ACTIONS(2404), + [anon_sym_DOLLAR] = ACTIONS(2404), + [sym_raw_string] = ACTIONS(2404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2404), + [anon_sym_BQUOTE] = ACTIONS(2404), + [anon_sym_LT_LPAREN] = ACTIONS(2404), + [anon_sym_GT_LPAREN] = ACTIONS(2404), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(2404), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), + }, + [4240] = { + [sym_file_redirect] = STATE(2042), + [sym_file_descriptor] = ACTIONS(7979), + [anon_sym_esac] = ACTIONS(4400), + [anon_sym_PIPE] = ACTIONS(4400), + [anon_sym_SEMI_SEMI] = ACTIONS(4400), + [anon_sym_PIPE_AMP] = ACTIONS(4400), + [anon_sym_AMP_AMP] = ACTIONS(4400), + [anon_sym_PIPE_PIPE] = ACTIONS(4400), + [anon_sym_LT] = ACTIONS(7981), + [anon_sym_GT] = ACTIONS(7981), + [anon_sym_GT_GT] = ACTIONS(7981), + [anon_sym_AMP_GT] = ACTIONS(7981), + [anon_sym_AMP_GT_GT] = ACTIONS(7981), + [anon_sym_LT_AMP] = ACTIONS(7981), + [anon_sym_GT_AMP] = ACTIONS(7981), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4400), + [anon_sym_LF] = ACTIONS(4400), + [anon_sym_AMP] = ACTIONS(4400), + }, + [4241] = { + [sym_concatenation] = STATE(2045), + [sym_string] = STATE(4389), + [sym_simple_expansion] = STATE(4389), + [sym_string_expansion] = STATE(4389), + [sym_expansion] = STATE(4389), + [sym_command_substitution] = STATE(4389), + [sym_process_substitution] = STATE(4389), + [sym__special_characters] = ACTIONS(8728), + [anon_sym_DQUOTE] = ACTIONS(8469), + [anon_sym_DOLLAR] = ACTIONS(8471), + [sym_raw_string] = ACTIONS(8730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8477), + [anon_sym_BQUOTE] = ACTIONS(8479), + [anon_sym_LT_LPAREN] = ACTIONS(8481), + [anon_sym_GT_LPAREN] = ACTIONS(8481), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8732), + }, + [4242] = { + [aux_sym_concatenation_repeat1] = STATE(4391), + [sym__concat] = ACTIONS(8734), + [anon_sym_esac] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_SEMI_SEMI] = ACTIONS(2418), + [anon_sym_PIPE_AMP] = ACTIONS(2418), + [anon_sym_AMP_AMP] = ACTIONS(2418), + [anon_sym_PIPE_PIPE] = ACTIONS(2418), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_LF] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + }, + [4243] = { + [sym_simple_expansion] = STATE(134), + [sym_expansion] = STATE(134), + [sym_command_substitution] = STATE(134), + [aux_sym_string_repeat1] = STATE(4393), + [anon_sym_DQUOTE] = ACTIONS(8736), + [anon_sym_DOLLAR] = ACTIONS(232), + [sym__string_content] = ACTIONS(234), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(238), + [anon_sym_BQUOTE] = ACTIONS(240), + [sym_comment] = ACTIONS(182), + }, + [4244] = { + [sym_string] = STATE(4395), + [anon_sym_DQUOTE] = ACTIONS(8469), + [anon_sym_DOLLAR] = ACTIONS(8738), + [sym_raw_string] = ACTIONS(8740), + [anon_sym_POUND] = ACTIONS(8738), + [anon_sym_DASH] = ACTIONS(8738), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8742), + [anon_sym_STAR] = ACTIONS(8738), + [anon_sym_AT] = ACTIONS(8738), + [anon_sym_QMARK] = ACTIONS(8738), + [anon_sym_0] = ACTIONS(8744), + [anon_sym__] = ACTIONS(8744), + }, [4245] = { + [aux_sym_concatenation_repeat1] = STATE(4391), + [sym__concat] = ACTIONS(8734), + [anon_sym_esac] = ACTIONS(2430), + [anon_sym_PIPE] = ACTIONS(2430), + [anon_sym_SEMI_SEMI] = ACTIONS(2430), + [anon_sym_PIPE_AMP] = ACTIONS(2430), + [anon_sym_AMP_AMP] = ACTIONS(2430), + [anon_sym_PIPE_PIPE] = ACTIONS(2430), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_LF] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + }, + [4246] = { + [sym_subscript] = STATE(4401), + [sym_variable_name] = ACTIONS(8746), + [anon_sym_DOLLAR] = ACTIONS(8748), + [anon_sym_POUND] = ACTIONS(8750), + [anon_sym_DASH] = ACTIONS(8748), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8752), + [anon_sym_STAR] = ACTIONS(8748), + [anon_sym_AT] = ACTIONS(8748), + [anon_sym_QMARK] = ACTIONS(8748), + [anon_sym_0] = ACTIONS(8754), + [anon_sym__] = ACTIONS(8754), + }, + [4247] = { [sym_for_statement] = STATE(4402), [sym_while_statement] = STATE(4402), [sym_if_statement] = STATE(4402), @@ -104075,926 +103997,938 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(56), [sym_word] = ACTIONS(302), }, - [4246] = { - [sym_variable_name] = ACTIONS(2557), - [anon_sym_esac] = ACTIONS(2559), - [anon_sym_PIPE] = ACTIONS(2559), - [anon_sym_SEMI_SEMI] = ACTIONS(2559), - [anon_sym_PIPE_AMP] = ACTIONS(2559), - [anon_sym_AMP_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2559), - [sym__special_characters] = ACTIONS(2559), - [anon_sym_DQUOTE] = ACTIONS(2559), - [anon_sym_DOLLAR] = ACTIONS(2559), - [sym_raw_string] = ACTIONS(2559), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2559), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2559), - [anon_sym_BQUOTE] = ACTIONS(2559), - [anon_sym_LT_LPAREN] = ACTIONS(2559), - [anon_sym_GT_LPAREN] = ACTIONS(2559), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2559), - [sym_word] = ACTIONS(2559), - [anon_sym_SEMI] = ACTIONS(2559), - [anon_sym_LF] = ACTIONS(2559), - [anon_sym_AMP] = ACTIONS(2559), - }, - [4247] = { - [sym_concatenation] = STATE(660), - [sym_string] = STATE(655), - [sym_simple_expansion] = STATE(655), - [sym_string_expansion] = STATE(655), - [sym_expansion] = STATE(655), - [sym_command_substitution] = STATE(655), - [sym_process_substitution] = STATE(655), - [aux_sym_for_statement_repeat1] = STATE(1269), - [anon_sym_RPAREN] = ACTIONS(8746), - [sym__special_characters] = ACTIONS(1283), - [anon_sym_DQUOTE] = ACTIONS(1285), - [anon_sym_DOLLAR] = ACTIONS(1287), - [sym_raw_string] = ACTIONS(1289), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1291), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1293), - [anon_sym_BQUOTE] = ACTIONS(1295), - [anon_sym_LT_LPAREN] = ACTIONS(1297), - [anon_sym_GT_LPAREN] = ACTIONS(1297), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(1299), - }, [4248] = { - [sym__concat] = ACTIONS(3283), - [sym_variable_name] = ACTIONS(3283), - [anon_sym_esac] = ACTIONS(3285), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [sym__special_characters] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_DOLLAR] = ACTIONS(3285), - [sym_raw_string] = ACTIONS(3285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), - [anon_sym_BQUOTE] = ACTIONS(3285), - [anon_sym_LT_LPAREN] = ACTIONS(3285), - [anon_sym_GT_LPAREN] = ACTIONS(3285), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3285), - [sym_word] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), + [sym_for_statement] = STATE(4404), + [sym_while_statement] = STATE(4404), + [sym_if_statement] = STATE(4404), + [sym_case_statement] = STATE(4404), + [sym_function_definition] = STATE(4404), + [sym_subshell] = STATE(4404), + [sym_pipeline] = STATE(4404), + [sym_list] = STATE(4404), + [sym_command] = STATE(4404), + [sym_command_name] = STATE(190), + [sym_bracket_command] = STATE(4404), + [sym_variable_assignment] = STATE(4405), + [sym_declaration_command] = STATE(4404), + [sym_unset_command] = STATE(4404), + [sym_subscript] = STATE(192), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(183), + [sym_simple_expansion] = STATE(183), + [sym_string_expansion] = STATE(183), + [sym_expansion] = STATE(183), + [sym_command_substitution] = STATE(183), + [sym_process_substitution] = STATE(183), + [aux_sym_command_repeat1] = STATE(193), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(304), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(306), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(308), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(310), + [anon_sym_LBRACK_LBRACK] = ACTIONS(312), + [anon_sym_declare] = ACTIONS(314), + [anon_sym_typeset] = ACTIONS(314), + [anon_sym_export] = ACTIONS(314), + [anon_sym_readonly] = ACTIONS(314), + [anon_sym_local] = ACTIONS(314), + [anon_sym_unset] = ACTIONS(316), + [anon_sym_unsetenv] = ACTIONS(316), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(318), + [anon_sym_DQUOTE] = ACTIONS(320), + [anon_sym_DOLLAR] = ACTIONS(322), + [sym_raw_string] = ACTIONS(324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(328), + [anon_sym_BQUOTE] = ACTIONS(330), + [anon_sym_LT_LPAREN] = ACTIONS(332), + [anon_sym_GT_LPAREN] = ACTIONS(332), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(334), }, [4249] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8748), + [sym_for_statement] = STATE(4406), + [sym_while_statement] = STATE(4406), + [sym_if_statement] = STATE(4406), + [sym_case_statement] = STATE(4406), + [sym_function_definition] = STATE(4406), + [sym_subshell] = STATE(4406), + [sym_pipeline] = STATE(4406), + [sym_list] = STATE(4406), + [sym_command] = STATE(4406), + [sym_command_name] = STATE(168), + [sym_bracket_command] = STATE(4406), + [sym_variable_assignment] = STATE(4407), + [sym_declaration_command] = STATE(4406), + [sym_unset_command] = STATE(4406), + [sym_subscript] = STATE(170), + [sym_file_redirect] = STATE(30), + [sym_concatenation] = STATE(171), + [sym_string] = STATE(161), + [sym_simple_expansion] = STATE(161), + [sym_string_expansion] = STATE(161), + [sym_expansion] = STATE(161), + [sym_command_substitution] = STATE(161), + [sym_process_substitution] = STATE(161), + [aux_sym_command_repeat1] = STATE(172), + [sym_file_descriptor] = ACTIONS(10), + [sym_variable_name] = ACTIONS(264), + [anon_sym_for] = ACTIONS(266), + [anon_sym_while] = ACTIONS(268), + [anon_sym_if] = ACTIONS(270), + [anon_sym_case] = ACTIONS(272), + [anon_sym_function] = ACTIONS(274), + [anon_sym_LPAREN] = ACTIONS(276), + [anon_sym_LBRACK] = ACTIONS(278), + [anon_sym_LBRACK_LBRACK] = ACTIONS(280), + [anon_sym_declare] = ACTIONS(282), + [anon_sym_typeset] = ACTIONS(282), + [anon_sym_export] = ACTIONS(282), + [anon_sym_readonly] = ACTIONS(282), + [anon_sym_local] = ACTIONS(282), + [anon_sym_unset] = ACTIONS(284), + [anon_sym_unsetenv] = ACTIONS(284), + [anon_sym_LT] = ACTIONS(36), + [anon_sym_GT] = ACTIONS(36), + [anon_sym_GT_GT] = ACTIONS(38), + [anon_sym_AMP_GT] = ACTIONS(36), + [anon_sym_AMP_GT_GT] = ACTIONS(38), + [anon_sym_LT_AMP] = ACTIONS(38), + [anon_sym_GT_AMP] = ACTIONS(38), + [sym__special_characters] = ACTIONS(286), + [anon_sym_DQUOTE] = ACTIONS(288), + [anon_sym_DOLLAR] = ACTIONS(290), + [sym_raw_string] = ACTIONS(292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(296), + [anon_sym_BQUOTE] = ACTIONS(298), + [anon_sym_LT_LPAREN] = ACTIONS(300), + [anon_sym_GT_LPAREN] = ACTIONS(300), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(302), }, [4250] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8750), - [sym_comment] = ACTIONS(56), + [sym_variable_name] = ACTIONS(2563), + [anon_sym_esac] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2565), + [anon_sym_SEMI_SEMI] = ACTIONS(2565), + [anon_sym_PIPE_AMP] = ACTIONS(2565), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE_PIPE] = ACTIONS(2565), + [sym__special_characters] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2565), + [anon_sym_DOLLAR] = ACTIONS(2565), + [sym_raw_string] = ACTIONS(2565), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2565), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2565), + [anon_sym_BQUOTE] = ACTIONS(2565), + [anon_sym_LT_LPAREN] = ACTIONS(2565), + [anon_sym_GT_LPAREN] = ACTIONS(2565), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2565), + [sym_word] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2565), + [anon_sym_LF] = ACTIONS(2565), + [anon_sym_AMP] = ACTIONS(2565), }, [4251] = { - [anon_sym_RBRACE] = ACTIONS(8750), + [sym_concatenation] = STATE(661), + [sym_string] = STATE(656), + [sym_simple_expansion] = STATE(656), + [sym_string_expansion] = STATE(656), + [sym_expansion] = STATE(656), + [sym_command_substitution] = STATE(656), + [sym_process_substitution] = STATE(656), + [aux_sym_for_statement_repeat1] = STATE(1273), + [anon_sym_RPAREN] = ACTIONS(8756), + [sym__special_characters] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1287), + [anon_sym_DOLLAR] = ACTIONS(1289), + [sym_raw_string] = ACTIONS(1291), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1293), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1295), + [anon_sym_BQUOTE] = ACTIONS(1297), + [anon_sym_LT_LPAREN] = ACTIONS(1299), + [anon_sym_GT_LPAREN] = ACTIONS(1299), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(1301), }, [4252] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4408), - [anon_sym_RBRACE] = ACTIONS(8752), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3293), + [sym_variable_name] = ACTIONS(3293), + [anon_sym_esac] = ACTIONS(3295), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), + [anon_sym_BQUOTE] = ACTIONS(3295), + [anon_sym_LT_LPAREN] = ACTIONS(3295), + [anon_sym_GT_LPAREN] = ACTIONS(3295), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3295), + [sym_word] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), }, [4253] = { - [sym__concat] = ACTIONS(3347), - [sym_variable_name] = ACTIONS(3347), - [anon_sym_esac] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [sym__special_characters] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3349), - [sym_raw_string] = ACTIONS(3349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), - [anon_sym_BQUOTE] = ACTIONS(3349), - [anon_sym_LT_LPAREN] = ACTIONS(3349), - [anon_sym_GT_LPAREN] = ACTIONS(3349), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3349), - [sym_word] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8758), + [sym_comment] = ACTIONS(56), }, [4254] = { - [sym_concatenation] = STATE(4411), - [sym_string] = STATE(4410), - [sym_simple_expansion] = STATE(4410), - [sym_string_expansion] = STATE(4410), - [sym_expansion] = STATE(4410), - [sym_command_substitution] = STATE(4410), - [sym_process_substitution] = STATE(4410), - [anon_sym_RBRACE] = ACTIONS(8750), - [sym__special_characters] = ACTIONS(8754), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(8756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8760), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8758), }, [4255] = { - [sym__concat] = ACTIONS(3392), - [sym_variable_name] = ACTIONS(3392), - [anon_sym_esac] = ACTIONS(3394), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [sym__special_characters] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_DOLLAR] = ACTIONS(3394), - [sym_raw_string] = ACTIONS(3394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), - [anon_sym_BQUOTE] = ACTIONS(3394), - [anon_sym_LT_LPAREN] = ACTIONS(3394), - [anon_sym_GT_LPAREN] = ACTIONS(3394), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3394), - [sym_word] = ACTIONS(3394), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), + [anon_sym_RBRACE] = ACTIONS(8760), + [sym_comment] = ACTIONS(56), }, [4256] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4412), + [anon_sym_RBRACE] = ACTIONS(8762), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8760), + [sym_word] = ACTIONS(866), }, [4257] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8762), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3357), + [sym_variable_name] = ACTIONS(3357), + [anon_sym_esac] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3359), + [sym_word] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), }, [4258] = { - [sym__concat] = ACTIONS(3400), - [sym_variable_name] = ACTIONS(3400), - [anon_sym_esac] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(3402), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3402), - [sym_word] = ACTIONS(3402), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), + [sym_concatenation] = STATE(4415), + [sym_string] = STATE(4414), + [sym_simple_expansion] = STATE(4414), + [sym_string_expansion] = STATE(4414), + [sym_expansion] = STATE(4414), + [sym_command_substitution] = STATE(4414), + [sym_process_substitution] = STATE(4414), + [anon_sym_RBRACE] = ACTIONS(8760), + [sym__special_characters] = ACTIONS(8764), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(8766), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8768), }, [4259] = { + [sym__concat] = ACTIONS(3402), + [sym_variable_name] = ACTIONS(3402), + [anon_sym_esac] = ACTIONS(3404), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [sym__special_characters] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_DOLLAR] = ACTIONS(3404), + [sym_raw_string] = ACTIONS(3404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), + [anon_sym_BQUOTE] = ACTIONS(3404), + [anon_sym_LT_LPAREN] = ACTIONS(3404), + [anon_sym_GT_LPAREN] = ACTIONS(3404), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8764), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3404), + [sym_word] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), }, [4260] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8766), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(8770), }, [4261] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8772), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8768), + [sym_word] = ACTIONS(866), }, [4262] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8750), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3410), + [sym_variable_name] = ACTIONS(3410), + [anon_sym_esac] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(3412), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3412), + [sym_word] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), }, [4263] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4418), - [anon_sym_RBRACE] = ACTIONS(8770), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(8774), }, [4264] = { - [sym__concat] = ACTIONS(3412), - [sym_variable_name] = ACTIONS(3412), - [anon_sym_esac] = ACTIONS(3414), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_DOLLAR] = ACTIONS(3414), - [sym_raw_string] = ACTIONS(3414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), - [anon_sym_BQUOTE] = ACTIONS(3414), - [anon_sym_LT_LPAREN] = ACTIONS(3414), - [anon_sym_GT_LPAREN] = ACTIONS(3414), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8776), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3414), - [sym_word] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), + [sym_word] = ACTIONS(866), }, [4265] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4420), - [anon_sym_RBRACE] = ACTIONS(8772), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(8778), }, [4266] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_esac] = ACTIONS(3285), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [sym__special_characters] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_DOLLAR] = ACTIONS(3285), - [sym_raw_string] = ACTIONS(3285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), - [anon_sym_BQUOTE] = ACTIONS(3285), - [anon_sym_LT_LPAREN] = ACTIONS(3285), - [anon_sym_GT_LPAREN] = ACTIONS(3285), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8760), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3285), - [sym_word] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), + [sym_word] = ACTIONS(866), }, [4267] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8774), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4422), + [anon_sym_RBRACE] = ACTIONS(8780), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4268] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8776), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(3422), + [sym_variable_name] = ACTIONS(3422), + [anon_sym_esac] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(3424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), + [anon_sym_BQUOTE] = ACTIONS(3424), + [anon_sym_LT_LPAREN] = ACTIONS(3424), + [anon_sym_GT_LPAREN] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3424), + [sym_word] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), }, [4269] = { - [anon_sym_RBRACE] = ACTIONS(8776), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4424), + [anon_sym_RBRACE] = ACTIONS(8782), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4270] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4424), - [anon_sym_RBRACE] = ACTIONS(8778), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3293), + [anon_sym_esac] = ACTIONS(3295), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), + [anon_sym_BQUOTE] = ACTIONS(3295), + [anon_sym_LT_LPAREN] = ACTIONS(3295), + [anon_sym_GT_LPAREN] = ACTIONS(3295), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3295), + [sym_word] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), }, [4271] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_esac] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [sym__special_characters] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3349), - [sym_raw_string] = ACTIONS(3349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), - [anon_sym_BQUOTE] = ACTIONS(3349), - [anon_sym_LT_LPAREN] = ACTIONS(3349), - [anon_sym_GT_LPAREN] = ACTIONS(3349), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3349), - [sym_word] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8784), + [sym_comment] = ACTIONS(56), }, [4272] = { - [sym_concatenation] = STATE(4427), - [sym_string] = STATE(4426), - [sym_simple_expansion] = STATE(4426), - [sym_string_expansion] = STATE(4426), - [sym_expansion] = STATE(4426), - [sym_command_substitution] = STATE(4426), - [sym_process_substitution] = STATE(4426), - [anon_sym_RBRACE] = ACTIONS(8776), - [sym__special_characters] = ACTIONS(8780), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(8782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8786), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8784), }, [4273] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_esac] = ACTIONS(3394), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [sym__special_characters] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_DOLLAR] = ACTIONS(3394), - [sym_raw_string] = ACTIONS(3394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), - [anon_sym_BQUOTE] = ACTIONS(3394), - [anon_sym_LT_LPAREN] = ACTIONS(3394), - [anon_sym_GT_LPAREN] = ACTIONS(3394), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3394), - [sym_word] = ACTIONS(3394), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), + [anon_sym_RBRACE] = ACTIONS(8786), + [sym_comment] = ACTIONS(56), }, [4274] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4428), + [anon_sym_RBRACE] = ACTIONS(8788), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8786), + [sym_word] = ACTIONS(866), }, [4275] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8788), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3357), + [anon_sym_esac] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3359), + [sym_word] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), }, [4276] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_esac] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(3402), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3402), - [sym_word] = ACTIONS(3402), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), + [sym_concatenation] = STATE(4431), + [sym_string] = STATE(4430), + [sym_simple_expansion] = STATE(4430), + [sym_string_expansion] = STATE(4430), + [sym_expansion] = STATE(4430), + [sym_command_substitution] = STATE(4430), + [sym_process_substitution] = STATE(4430), + [anon_sym_RBRACE] = ACTIONS(8786), + [sym__special_characters] = ACTIONS(8790), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(8792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8794), }, [4277] = { + [sym__concat] = ACTIONS(3402), + [anon_sym_esac] = ACTIONS(3404), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [sym__special_characters] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_DOLLAR] = ACTIONS(3404), + [sym_raw_string] = ACTIONS(3404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), + [anon_sym_BQUOTE] = ACTIONS(3404), + [anon_sym_LT_LPAREN] = ACTIONS(3404), + [anon_sym_GT_LPAREN] = ACTIONS(3404), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8790), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3404), + [sym_word] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), }, [4278] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8792), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(8796), }, [4279] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8798), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8794), + [sym_word] = ACTIONS(866), }, [4280] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8776), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3410), + [anon_sym_esac] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(3412), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3412), + [sym_word] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), }, [4281] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4434), - [anon_sym_RBRACE] = ACTIONS(8796), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(8800), }, [4282] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_esac] = ACTIONS(3414), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_DOLLAR] = ACTIONS(3414), - [sym_raw_string] = ACTIONS(3414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), - [anon_sym_BQUOTE] = ACTIONS(3414), - [anon_sym_LT_LPAREN] = ACTIONS(3414), - [anon_sym_GT_LPAREN] = ACTIONS(3414), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8802), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3414), - [sym_word] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), + [sym_word] = ACTIONS(866), }, [4283] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4436), - [anon_sym_RBRACE] = ACTIONS(8798), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(8804), }, [4284] = { - [sym_file_descriptor] = ACTIONS(4790), - [sym__concat] = ACTIONS(4790), - [anon_sym_esac] = ACTIONS(4792), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_EQ_TILDE] = ACTIONS(4792), - [anon_sym_EQ_EQ] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_AMP_GT] = ACTIONS(4792), - [anon_sym_AMP_GT_GT] = ACTIONS(4792), - [anon_sym_LT_AMP] = ACTIONS(4792), - [anon_sym_GT_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4792), - [anon_sym_LT_LT_DASH] = ACTIONS(4792), - [anon_sym_LT_LT_LT] = ACTIONS(4792), - [sym__special_characters] = ACTIONS(4792), - [anon_sym_DQUOTE] = ACTIONS(4792), - [anon_sym_DOLLAR] = ACTIONS(4792), - [sym_raw_string] = ACTIONS(4792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), - [anon_sym_BQUOTE] = ACTIONS(4792), - [anon_sym_LT_LPAREN] = ACTIONS(4792), - [anon_sym_GT_LPAREN] = ACTIONS(4792), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8786), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4792), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), + [sym_word] = ACTIONS(866), }, [4285] = { - [sym_file_descriptor] = ACTIONS(4796), - [sym__concat] = ACTIONS(4796), - [anon_sym_esac] = ACTIONS(4798), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [anon_sym_EQ_TILDE] = ACTIONS(4798), - [anon_sym_EQ_EQ] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4798), - [anon_sym_GT] = ACTIONS(4798), - [anon_sym_GT_GT] = ACTIONS(4798), - [anon_sym_AMP_GT] = ACTIONS(4798), - [anon_sym_AMP_GT_GT] = ACTIONS(4798), - [anon_sym_LT_AMP] = ACTIONS(4798), - [anon_sym_GT_AMP] = ACTIONS(4798), - [anon_sym_LT_LT] = ACTIONS(4798), - [anon_sym_LT_LT_DASH] = ACTIONS(4798), - [anon_sym_LT_LT_LT] = ACTIONS(4798), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4798), - [anon_sym_DOLLAR] = ACTIONS(4798), - [sym_raw_string] = ACTIONS(4798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), - [anon_sym_BQUOTE] = ACTIONS(4798), - [anon_sym_LT_LPAREN] = ACTIONS(4798), - [anon_sym_GT_LPAREN] = ACTIONS(4798), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4438), + [anon_sym_RBRACE] = ACTIONS(8806), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4798), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), + [sym_word] = ACTIONS(866), }, [4286] = { - [sym_file_descriptor] = ACTIONS(4859), - [sym__concat] = ACTIONS(4859), - [anon_sym_esac] = ACTIONS(4861), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_EQ_TILDE] = ACTIONS(4861), - [anon_sym_EQ_EQ] = ACTIONS(4861), - [anon_sym_LT] = ACTIONS(4861), - [anon_sym_GT] = ACTIONS(4861), - [anon_sym_GT_GT] = ACTIONS(4861), - [anon_sym_AMP_GT] = ACTIONS(4861), - [anon_sym_AMP_GT_GT] = ACTIONS(4861), - [anon_sym_LT_AMP] = ACTIONS(4861), - [anon_sym_GT_AMP] = ACTIONS(4861), - [anon_sym_LT_LT] = ACTIONS(4861), - [anon_sym_LT_LT_DASH] = ACTIONS(4861), - [anon_sym_LT_LT_LT] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4861), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), + [sym__concat] = ACTIONS(3422), + [anon_sym_esac] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(3424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), + [anon_sym_BQUOTE] = ACTIONS(3424), + [anon_sym_LT_LPAREN] = ACTIONS(3424), + [anon_sym_GT_LPAREN] = ACTIONS(3424), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3424), + [sym_word] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), }, [4287] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8800), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4440), + [anon_sym_RBRACE] = ACTIONS(8808), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4288] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8802), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(4802), + [sym__concat] = ACTIONS(4802), + [anon_sym_esac] = ACTIONS(4804), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_EQ_TILDE] = ACTIONS(4804), + [anon_sym_EQ_EQ] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_GT_GT] = ACTIONS(4804), + [anon_sym_AMP_GT] = ACTIONS(4804), + [anon_sym_AMP_GT_GT] = ACTIONS(4804), + [anon_sym_LT_AMP] = ACTIONS(4804), + [anon_sym_GT_AMP] = ACTIONS(4804), + [anon_sym_LT_LT] = ACTIONS(4804), + [anon_sym_LT_LT_DASH] = ACTIONS(4804), + [anon_sym_LT_LT_LT] = ACTIONS(4804), + [sym__special_characters] = ACTIONS(4804), + [anon_sym_DQUOTE] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4804), + [sym_raw_string] = ACTIONS(4804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), + [anon_sym_BQUOTE] = ACTIONS(4804), + [anon_sym_LT_LPAREN] = ACTIONS(4804), + [anon_sym_GT_LPAREN] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), }, [4289] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8804), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(4808), + [sym__concat] = ACTIONS(4808), + [anon_sym_esac] = ACTIONS(4810), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [anon_sym_EQ_TILDE] = ACTIONS(4810), + [anon_sym_EQ_EQ] = ACTIONS(4810), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_GT_GT] = ACTIONS(4810), + [anon_sym_AMP_GT] = ACTIONS(4810), + [anon_sym_AMP_GT_GT] = ACTIONS(4810), + [anon_sym_LT_AMP] = ACTIONS(4810), + [anon_sym_GT_AMP] = ACTIONS(4810), + [anon_sym_LT_LT] = ACTIONS(4810), + [anon_sym_LT_LT_DASH] = ACTIONS(4810), + [anon_sym_LT_LT_LT] = ACTIONS(4810), + [sym__special_characters] = ACTIONS(4810), + [anon_sym_DQUOTE] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4810), + [sym_raw_string] = ACTIONS(4810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), + [anon_sym_BQUOTE] = ACTIONS(4810), + [anon_sym_LT_LPAREN] = ACTIONS(4810), + [anon_sym_GT_LPAREN] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), }, [4290] = { - [anon_sym_RBRACE] = ACTIONS(8804), - [sym_comment] = ACTIONS(56), - }, - [4291] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4441), - [anon_sym_RBRACE] = ACTIONS(8806), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4292] = { [sym_file_descriptor] = ACTIONS(4871), [sym__concat] = ACTIONS(4871), [anon_sym_esac] = ACTIONS(4873), @@ -105030,99 +104964,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4873), [anon_sym_AMP] = ACTIONS(4873), }, - [4293] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4443), - [anon_sym_RBRACE] = ACTIONS(8808), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [4291] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8810), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), + }, + [4292] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8812), + [sym_comment] = ACTIONS(56), + }, + [4293] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8814), + [sym_comment] = ACTIONS(56), }, [4294] = { - [sym_file_descriptor] = ACTIONS(4877), - [sym__concat] = ACTIONS(4877), - [anon_sym_esac] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_EQ_TILDE] = ACTIONS(4879), - [anon_sym_EQ_EQ] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_GT_GT] = ACTIONS(4879), - [anon_sym_AMP_GT] = ACTIONS(4879), - [anon_sym_AMP_GT_GT] = ACTIONS(4879), - [anon_sym_LT_AMP] = ACTIONS(4879), - [anon_sym_GT_AMP] = ACTIONS(4879), - [anon_sym_LT_LT] = ACTIONS(4879), - [anon_sym_LT_LT_DASH] = ACTIONS(4879), - [anon_sym_LT_LT_LT] = ACTIONS(4879), - [sym__special_characters] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4879), - [sym_raw_string] = ACTIONS(4879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), - [anon_sym_BQUOTE] = ACTIONS(4879), - [anon_sym_LT_LPAREN] = ACTIONS(4879), - [anon_sym_GT_LPAREN] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(8814), + [sym_comment] = ACTIONS(56), }, [4295] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), [aux_sym_expansion_repeat1] = STATE(4445), - [anon_sym_RBRACE] = ACTIONS(8810), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(8816), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4296] = { [sym_file_descriptor] = ACTIONS(4883), @@ -105161,33 +105075,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4885), }, [4297] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8812), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4447), + [anon_sym_RBRACE] = ACTIONS(8818), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4298] = { [sym_file_descriptor] = ACTIONS(4889), @@ -105226,606 +105140,644 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4891), }, [4299] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8814), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4449), + [anon_sym_RBRACE] = ACTIONS(8820), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4300] = { - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(1886), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1888), - [anon_sym_LT_LT_LT] = ACTIONS(1888), + [sym_file_descriptor] = ACTIONS(4895), + [sym__concat] = ACTIONS(4895), + [anon_sym_esac] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [anon_sym_EQ_TILDE] = ACTIONS(4897), + [anon_sym_EQ_EQ] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_GT_GT] = ACTIONS(4897), + [anon_sym_AMP_GT] = ACTIONS(4897), + [anon_sym_AMP_GT_GT] = ACTIONS(4897), + [anon_sym_LT_AMP] = ACTIONS(4897), + [anon_sym_GT_AMP] = ACTIONS(4897), + [anon_sym_LT_LT] = ACTIONS(4897), + [anon_sym_LT_LT_DASH] = ACTIONS(4897), + [anon_sym_LT_LT_LT] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(4897), + [anon_sym_DQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR] = ACTIONS(4897), + [sym_raw_string] = ACTIONS(4897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), + [anon_sym_BQUOTE] = ACTIONS(4897), + [anon_sym_LT_LPAREN] = ACTIONS(4897), + [anon_sym_GT_LPAREN] = ACTIONS(4897), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), + [sym_word] = ACTIONS(4897), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), }, [4301] = { - [aux_sym_concatenation_repeat1] = STATE(4301), - [sym_file_descriptor] = ACTIONS(1886), - [sym__concat] = ACTIONS(8816), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_AMP_GT] = ACTIONS(1888), - [anon_sym_AMP_GT_GT] = ACTIONS(1888), - [anon_sym_LT_AMP] = ACTIONS(1888), - [anon_sym_GT_AMP] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1888), - [anon_sym_LT_LT_DASH] = ACTIONS(1888), - [anon_sym_LT_LT_LT] = ACTIONS(1888), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8822), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), + [sym_word] = ACTIONS(866), }, [4302] = { - [sym_file_descriptor] = ACTIONS(1923), - [sym__concat] = ACTIONS(1923), - [anon_sym_esac] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_GT] = ACTIONS(1925), - [anon_sym_GT_GT] = ACTIONS(1925), - [anon_sym_AMP_GT] = ACTIONS(1925), - [anon_sym_AMP_GT_GT] = ACTIONS(1925), - [anon_sym_LT_AMP] = ACTIONS(1925), - [anon_sym_GT_AMP] = ACTIONS(1925), - [anon_sym_LT_LT] = ACTIONS(1925), - [anon_sym_LT_LT_DASH] = ACTIONS(1925), - [anon_sym_LT_LT_LT] = ACTIONS(1925), + [sym_file_descriptor] = ACTIONS(4901), + [sym__concat] = ACTIONS(4901), + [anon_sym_esac] = ACTIONS(4903), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [anon_sym_EQ_TILDE] = ACTIONS(4903), + [anon_sym_EQ_EQ] = ACTIONS(4903), + [anon_sym_LT] = ACTIONS(4903), + [anon_sym_GT] = ACTIONS(4903), + [anon_sym_GT_GT] = ACTIONS(4903), + [anon_sym_AMP_GT] = ACTIONS(4903), + [anon_sym_AMP_GT_GT] = ACTIONS(4903), + [anon_sym_LT_AMP] = ACTIONS(4903), + [anon_sym_GT_AMP] = ACTIONS(4903), + [anon_sym_LT_LT] = ACTIONS(4903), + [anon_sym_LT_LT_DASH] = ACTIONS(4903), + [anon_sym_LT_LT_LT] = ACTIONS(4903), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4903), + [sym_raw_string] = ACTIONS(4903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), + [anon_sym_BQUOTE] = ACTIONS(4903), + [anon_sym_LT_LPAREN] = ACTIONS(4903), + [anon_sym_GT_LPAREN] = ACTIONS(4903), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), + [sym_word] = ACTIONS(4903), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), }, [4303] = { - [sym_concatenation] = STATE(4451), - [sym_string] = STATE(4450), - [sym_simple_expansion] = STATE(4450), - [sym_string_expansion] = STATE(4450), - [sym_expansion] = STATE(4450), - [sym_command_substitution] = STATE(4450), - [sym_process_substitution] = STATE(4450), - [anon_sym_RBRACE] = ACTIONS(8819), - [sym__special_characters] = ACTIONS(8821), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(8823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8825), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8824), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4304] = { - [sym_file_descriptor] = ACTIONS(1968), - [sym__concat] = ACTIONS(1968), - [anon_sym_esac] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1970), - [anon_sym_AMP_GT] = ACTIONS(1970), - [anon_sym_AMP_GT_GT] = ACTIONS(1970), - [anon_sym_LT_AMP] = ACTIONS(1970), - [anon_sym_GT_AMP] = ACTIONS(1970), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_LT_LT_DASH] = ACTIONS(1970), - [anon_sym_LT_LT_LT] = ACTIONS(1970), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(1890), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1892), + [anon_sym_LT_LT_LT] = ACTIONS(1892), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [4305] = { + [aux_sym_concatenation_repeat1] = STATE(4305), + [sym_file_descriptor] = ACTIONS(1890), + [sym__concat] = ACTIONS(8826), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(1892), + [anon_sym_GT_GT] = ACTIONS(1892), + [anon_sym_AMP_GT] = ACTIONS(1892), + [anon_sym_AMP_GT_GT] = ACTIONS(1892), + [anon_sym_LT_AMP] = ACTIONS(1892), + [anon_sym_GT_AMP] = ACTIONS(1892), + [anon_sym_LT_LT] = ACTIONS(1892), + [anon_sym_LT_LT_DASH] = ACTIONS(1892), + [anon_sym_LT_LT_LT] = ACTIONS(1892), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8827), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [4306] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8829), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(1927), + [sym__concat] = ACTIONS(1927), + [anon_sym_esac] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1929), + [anon_sym_AMP_GT] = ACTIONS(1929), + [anon_sym_AMP_GT_GT] = ACTIONS(1929), + [anon_sym_LT_AMP] = ACTIONS(1929), + [anon_sym_GT_AMP] = ACTIONS(1929), + [anon_sym_LT_LT] = ACTIONS(1929), + [anon_sym_LT_LT_DASH] = ACTIONS(1929), + [anon_sym_LT_LT_LT] = ACTIONS(1929), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), }, [4307] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(8831), + [sym_concatenation] = STATE(4455), + [sym_string] = STATE(4454), + [sym_simple_expansion] = STATE(4454), + [sym_string_expansion] = STATE(4454), + [sym_expansion] = STATE(4454), + [sym_command_substitution] = STATE(4454), + [sym_process_substitution] = STATE(4454), + [anon_sym_RBRACE] = ACTIONS(8829), + [sym__special_characters] = ACTIONS(8831), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(8833), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8835), }, [4308] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4457), - [anon_sym_RBRACE] = ACTIONS(8833), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8835), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(1972), + [sym__concat] = ACTIONS(1972), + [anon_sym_esac] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_GT] = ACTIONS(1974), + [anon_sym_GT_GT] = ACTIONS(1974), + [anon_sym_AMP_GT] = ACTIONS(1974), + [anon_sym_AMP_GT_GT] = ACTIONS(1974), + [anon_sym_LT_AMP] = ACTIONS(1974), + [anon_sym_GT_AMP] = ACTIONS(1974), + [anon_sym_LT_LT] = ACTIONS(1974), + [anon_sym_LT_LT_DASH] = ACTIONS(1974), + [anon_sym_LT_LT_LT] = ACTIONS(1974), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), }, [4309] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4460), - [anon_sym_RBRACE] = ACTIONS(8837), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8839), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(8837), }, [4310] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4462), - [anon_sym_RBRACE] = ACTIONS(8819), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8841), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8839), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4311] = { - [sym_file_descriptor] = ACTIONS(2022), - [sym__concat] = ACTIONS(2022), - [anon_sym_esac] = ACTIONS(2024), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym_AMP_GT] = ACTIONS(2024), - [anon_sym_AMP_GT_GT] = ACTIONS(2024), - [anon_sym_LT_AMP] = ACTIONS(2024), - [anon_sym_GT_AMP] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2024), - [anon_sym_LT_LT_DASH] = ACTIONS(2024), - [anon_sym_LT_LT_LT] = ACTIONS(2024), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(8841), + [sym_comment] = ACTIONS(56), }, [4312] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4461), + [anon_sym_RBRACE] = ACTIONS(8843), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8845), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8843), + [sym_word] = ACTIONS(866), }, [4313] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8845), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4464), + [anon_sym_RBRACE] = ACTIONS(8847), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8849), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4314] = { - [sym_file_descriptor] = ACTIONS(2030), - [sym__concat] = ACTIONS(2030), - [anon_sym_esac] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2032), - [anon_sym_GT] = ACTIONS(2032), - [anon_sym_GT_GT] = ACTIONS(2032), - [anon_sym_AMP_GT] = ACTIONS(2032), - [anon_sym_AMP_GT_GT] = ACTIONS(2032), - [anon_sym_LT_AMP] = ACTIONS(2032), - [anon_sym_GT_AMP] = ACTIONS(2032), - [anon_sym_LT_LT] = ACTIONS(2032), - [anon_sym_LT_LT_DASH] = ACTIONS(2032), - [anon_sym_LT_LT_LT] = ACTIONS(2032), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4466), + [anon_sym_RBRACE] = ACTIONS(8829), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8851), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), + [sym_word] = ACTIONS(866), }, [4315] = { + [sym_file_descriptor] = ACTIONS(2026), + [sym__concat] = ACTIONS(2026), + [anon_sym_esac] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_GT_GT] = ACTIONS(2028), + [anon_sym_AMP_GT] = ACTIONS(2028), + [anon_sym_AMP_GT_GT] = ACTIONS(2028), + [anon_sym_LT_AMP] = ACTIONS(2028), + [anon_sym_GT_AMP] = ACTIONS(2028), + [anon_sym_LT_LT] = ACTIONS(2028), + [anon_sym_LT_LT_DASH] = ACTIONS(2028), + [anon_sym_LT_LT_LT] = ACTIONS(2028), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8847), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), }, [4316] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8819), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(8853), }, [4317] = { - [sym_file_descriptor] = ACTIONS(2190), - [sym__concat] = ACTIONS(2190), - [anon_sym_esac] = ACTIONS(2192), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_GT] = ACTIONS(2192), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_AMP_GT] = ACTIONS(2192), - [anon_sym_AMP_GT_GT] = ACTIONS(2192), - [anon_sym_LT_AMP] = ACTIONS(2192), - [anon_sym_GT_AMP] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2192), - [anon_sym_LT_LT_DASH] = ACTIONS(2192), - [anon_sym_LT_LT_LT] = ACTIONS(2192), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8855), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), + [sym_word] = ACTIONS(866), }, [4318] = { - [sym_file_descriptor] = ACTIONS(2396), - [sym__concat] = ACTIONS(2396), - [anon_sym_esac] = ACTIONS(2398), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2398), - [anon_sym_GT] = ACTIONS(2398), - [anon_sym_GT_GT] = ACTIONS(2398), - [anon_sym_AMP_GT] = ACTIONS(2398), - [anon_sym_AMP_GT_GT] = ACTIONS(2398), - [anon_sym_LT_AMP] = ACTIONS(2398), - [anon_sym_GT_AMP] = ACTIONS(2398), - [anon_sym_LT_LT] = ACTIONS(2398), - [anon_sym_LT_LT_DASH] = ACTIONS(2398), - [anon_sym_LT_LT_LT] = ACTIONS(2398), + [sym_file_descriptor] = ACTIONS(2034), + [sym__concat] = ACTIONS(2034), + [anon_sym_esac] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_GT] = ACTIONS(2036), + [anon_sym_GT_GT] = ACTIONS(2036), + [anon_sym_AMP_GT] = ACTIONS(2036), + [anon_sym_AMP_GT_GT] = ACTIONS(2036), + [anon_sym_LT_AMP] = ACTIONS(2036), + [anon_sym_GT_AMP] = ACTIONS(2036), + [anon_sym_LT_LT] = ACTIONS(2036), + [anon_sym_LT_LT_DASH] = ACTIONS(2036), + [anon_sym_LT_LT_LT] = ACTIONS(2036), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), }, [4319] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7018), - [anon_sym_RPAREN] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), + [sym_comment] = ACTIONS(182), + [sym_regex_without_right_brace] = ACTIONS(8857), }, [4320] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7022), - [anon_sym_RPAREN] = ACTIONS(7022), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8829), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4321] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7026), - [anon_sym_RPAREN] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(2196), + [sym__concat] = ACTIONS(2196), + [anon_sym_esac] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), + [anon_sym_LT] = ACTIONS(2198), + [anon_sym_GT] = ACTIONS(2198), + [anon_sym_GT_GT] = ACTIONS(2198), + [anon_sym_AMP_GT] = ACTIONS(2198), + [anon_sym_AMP_GT_GT] = ACTIONS(2198), + [anon_sym_LT_AMP] = ACTIONS(2198), + [anon_sym_GT_AMP] = ACTIONS(2198), + [anon_sym_LT_LT] = ACTIONS(2198), + [anon_sym_LT_LT_DASH] = ACTIONS(2198), + [anon_sym_LT_LT_LT] = ACTIONS(2198), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), }, [4322] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_SEMI_SEMI] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(8223), - [anon_sym_DQUOTE] = ACTIONS(8225), - [anon_sym_DOLLAR] = ACTIONS(8227), - [sym_raw_string] = ACTIONS(8225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8225), - [anon_sym_BQUOTE] = ACTIONS(8225), - [anon_sym_LT_LPAREN] = ACTIONS(8225), - [anon_sym_GT_LPAREN] = ACTIONS(8225), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8223), + [sym_file_descriptor] = ACTIONS(2402), + [sym__concat] = ACTIONS(2402), + [anon_sym_esac] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), + [anon_sym_LT] = ACTIONS(2404), + [anon_sym_GT] = ACTIONS(2404), + [anon_sym_GT_GT] = ACTIONS(2404), + [anon_sym_AMP_GT] = ACTIONS(2404), + [anon_sym_AMP_GT_GT] = ACTIONS(2404), + [anon_sym_LT_AMP] = ACTIONS(2404), + [anon_sym_GT_AMP] = ACTIONS(2404), + [anon_sym_LT_LT] = ACTIONS(2404), + [anon_sym_LT_LT_DASH] = ACTIONS(2404), + [anon_sym_LT_LT_LT] = ACTIONS(2404), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), }, [4323] = { - [sym__special_characters] = ACTIONS(8227), - [anon_sym_DQUOTE] = ACTIONS(8225), - [anon_sym_DOLLAR] = ACTIONS(8227), - [sym_raw_string] = ACTIONS(8225), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8225), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8225), - [anon_sym_BQUOTE] = ACTIONS(8225), - [anon_sym_LT_LPAREN] = ACTIONS(8225), - [anon_sym_GT_LPAREN] = ACTIONS(8225), + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7032), + [anon_sym_RPAREN] = ACTIONS(7032), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8227), }, [4324] = { - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8849), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7036), + [anon_sym_RPAREN] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), }, [4325] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8849), - [anon_sym_PIPE_AMP] = ACTIONS(346), - [anon_sym_AMP_AMP] = ACTIONS(350), - [anon_sym_PIPE_PIPE] = ACTIONS(350), - [anon_sym_LT] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(382), - [anon_sym_GT_GT] = ACTIONS(382), - [anon_sym_AMP_GT] = ACTIONS(382), - [anon_sym_AMP_GT_GT] = ACTIONS(382), - [anon_sym_LT_AMP] = ACTIONS(382), - [anon_sym_GT_AMP] = ACTIONS(382), - [sym__special_characters] = ACTIONS(382), - [anon_sym_DQUOTE] = ACTIONS(382), - [anon_sym_DOLLAR] = ACTIONS(382), - [sym_raw_string] = ACTIONS(382), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), - [anon_sym_BQUOTE] = ACTIONS(382), - [anon_sym_LT_LPAREN] = ACTIONS(382), - [anon_sym_GT_LPAREN] = ACTIONS(382), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(382), - [anon_sym_SEMI] = ACTIONS(348), - [anon_sym_LF] = ACTIONS(348), - [anon_sym_AMP] = ACTIONS(348), + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7040), + [anon_sym_RPAREN] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), }, [4326] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_SEMI_SEMI] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(8235), - [anon_sym_DQUOTE] = ACTIONS(8237), - [anon_sym_DOLLAR] = ACTIONS(8239), - [sym_raw_string] = ACTIONS(8237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8237), - [anon_sym_BQUOTE] = ACTIONS(8237), - [anon_sym_LT_LPAREN] = ACTIONS(8237), - [anon_sym_GT_LPAREN] = ACTIONS(8237), + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_SEMI_SEMI] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(8233), + [anon_sym_DQUOTE] = ACTIONS(8235), + [anon_sym_DOLLAR] = ACTIONS(8237), + [sym_raw_string] = ACTIONS(8235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8235), + [anon_sym_BQUOTE] = ACTIONS(8235), + [anon_sym_LT_LPAREN] = ACTIONS(8235), + [anon_sym_GT_LPAREN] = ACTIONS(8235), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8235), + [sym_word] = ACTIONS(8233), }, [4327] = { - [sym__special_characters] = ACTIONS(8239), - [anon_sym_DQUOTE] = ACTIONS(8237), - [anon_sym_DOLLAR] = ACTIONS(8239), - [sym_raw_string] = ACTIONS(8237), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8237), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8237), - [anon_sym_BQUOTE] = ACTIONS(8237), - [anon_sym_LT_LPAREN] = ACTIONS(8237), - [anon_sym_GT_LPAREN] = ACTIONS(8237), + [sym__special_characters] = ACTIONS(8237), + [anon_sym_DQUOTE] = ACTIONS(8235), + [anon_sym_DOLLAR] = ACTIONS(8237), + [sym_raw_string] = ACTIONS(8235), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8235), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8235), + [anon_sym_BQUOTE] = ACTIONS(8235), + [anon_sym_LT_LPAREN] = ACTIONS(8235), + [anon_sym_GT_LPAREN] = ACTIONS(8235), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8239), + [sym_word] = ACTIONS(8237), }, [4328] = { [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8851), + [anon_sym_SEMI_SEMI] = ACTIONS(8859), [anon_sym_PIPE_AMP] = ACTIONS(346), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), @@ -105838,7 +105790,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), [anon_sym_PIPE] = ACTIONS(346), - [anon_sym_SEMI_SEMI] = ACTIONS(8851), + [anon_sym_SEMI_SEMI] = ACTIONS(8859), [anon_sym_PIPE_AMP] = ACTIONS(346), [anon_sym_AMP_AMP] = ACTIONS(350), [anon_sym_PIPE_PIPE] = ACTIONS(350), @@ -105865,165 +105817,160 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(348), }, [4330] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_SEMI_SEMI] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(8245), + [anon_sym_DQUOTE] = ACTIONS(8247), + [anon_sym_DOLLAR] = ACTIONS(8249), + [sym_raw_string] = ACTIONS(8247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8247), + [anon_sym_BQUOTE] = ACTIONS(8247), + [anon_sym_LT_LPAREN] = ACTIONS(8247), + [anon_sym_GT_LPAREN] = ACTIONS(8247), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8245), }, [4331] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), + [sym__special_characters] = ACTIONS(8249), + [anon_sym_DQUOTE] = ACTIONS(8247), + [anon_sym_DOLLAR] = ACTIONS(8249), + [sym_raw_string] = ACTIONS(8247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8247), + [anon_sym_BQUOTE] = ACTIONS(8247), + [anon_sym_LT_LPAREN] = ACTIONS(8247), + [anon_sym_GT_LPAREN] = ACTIONS(8247), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8249), }, [4332] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8861), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), }, [4333] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_RPAREN] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(346), + [anon_sym_SEMI_SEMI] = ACTIONS(8861), + [anon_sym_PIPE_AMP] = ACTIONS(346), + [anon_sym_AMP_AMP] = ACTIONS(350), + [anon_sym_PIPE_PIPE] = ACTIONS(350), + [anon_sym_LT] = ACTIONS(382), + [anon_sym_GT] = ACTIONS(382), + [anon_sym_GT_GT] = ACTIONS(382), + [anon_sym_AMP_GT] = ACTIONS(382), + [anon_sym_AMP_GT_GT] = ACTIONS(382), + [anon_sym_LT_AMP] = ACTIONS(382), + [anon_sym_GT_AMP] = ACTIONS(382), + [sym__special_characters] = ACTIONS(382), + [anon_sym_DQUOTE] = ACTIONS(382), + [anon_sym_DOLLAR] = ACTIONS(382), + [sym_raw_string] = ACTIONS(382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(382), + [anon_sym_BQUOTE] = ACTIONS(382), + [anon_sym_LT_LPAREN] = ACTIONS(382), + [anon_sym_GT_LPAREN] = ACTIONS(382), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), + [sym_word] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(348), + [anon_sym_LF] = ACTIONS(348), + [anon_sym_AMP] = ACTIONS(348), }, [4334] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_RPAREN] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), }, [4335] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_RPAREN] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), }, [4336] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_RPAREN] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), }, [4337] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8853), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_RPAREN] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), }, [4338] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_RPAREN] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_RPAREN] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), }, [4339] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8855), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4340] = { [sym__concat] = ACTIONS(6049), [anon_sym_PIPE] = ACTIONS(6051), [anon_sym_RPAREN] = ACTIONS(6051), @@ -106036,49 +105983,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6051), [anon_sym_AMP] = ACTIONS(6051), }, - [4341] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8857), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [4340] = { + [sym__concat] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_RPAREN] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), + }, + [4341] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8863), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4342] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_RPAREN] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), - }, - [4343] = { [sym__concat] = ACTIONS(6059), [anon_sym_PIPE] = ACTIONS(6061), [anon_sym_RPAREN] = ACTIONS(6061), @@ -106091,787 +106038,884 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6061), [anon_sym_AMP] = ACTIONS(6061), }, + [4343] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8865), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, [4344] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6916), - [anon_sym_RPAREN] = ACTIONS(6025), - [anon_sym_PIPE_AMP] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_RPAREN] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), }, [4345] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6918), - [anon_sym_RPAREN] = ACTIONS(6029), - [anon_sym_PIPE_AMP] = ACTIONS(6029), - [anon_sym_AMP_AMP] = ACTIONS(6029), - [anon_sym_PIPE_PIPE] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8867), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4346] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6920), - [anon_sym_RPAREN] = ACTIONS(6033), - [anon_sym_PIPE_AMP] = ACTIONS(6033), - [anon_sym_AMP_AMP] = ACTIONS(6033), - [anon_sym_PIPE_PIPE] = ACTIONS(6033), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_RPAREN] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), }, [4347] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6922), - [anon_sym_RPAREN] = ACTIONS(6037), - [anon_sym_PIPE_AMP] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(6037), - [anon_sym_PIPE_PIPE] = ACTIONS(6037), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_RPAREN] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), }, [4348] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8859), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_RPAREN] = ACTIONS(6041), + [anon_sym_PIPE_AMP] = ACTIONS(6041), + [anon_sym_AMP_AMP] = ACTIONS(6041), + [anon_sym_PIPE_PIPE] = ACTIONS(6041), + [sym_comment] = ACTIONS(56), }, [4349] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6926), - [anon_sym_RPAREN] = ACTIONS(6043), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6932), + [anon_sym_RPAREN] = ACTIONS(6045), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), [sym_comment] = ACTIONS(56), }, [4350] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8861), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4351] = { [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE] = ACTIONS(6934), [anon_sym_RPAREN] = ACTIONS(6049), [anon_sym_PIPE_AMP] = ACTIONS(6049), [anon_sym_AMP_AMP] = ACTIONS(6049), [anon_sym_PIPE_PIPE] = ACTIONS(6049), [sym_comment] = ACTIONS(56), }, - [4352] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8863), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4353] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_RPAREN] = ACTIONS(6055), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [4351] = { + [sym__concat] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_RPAREN] = ACTIONS(6053), + [anon_sym_PIPE_AMP] = ACTIONS(6053), + [anon_sym_AMP_AMP] = ACTIONS(6053), + [anon_sym_PIPE_PIPE] = ACTIONS(6053), [sym_comment] = ACTIONS(56), }, - [4354] = { + [4352] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8869), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4353] = { [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE] = ACTIONS(6940), [anon_sym_RPAREN] = ACTIONS(6059), [anon_sym_PIPE_AMP] = ACTIONS(6059), [anon_sym_AMP_AMP] = ACTIONS(6059), [anon_sym_PIPE_PIPE] = ACTIONS(6059), [sym_comment] = ACTIONS(56), }, + [4354] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8871), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, [4355] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_PIPE] = ACTIONS(6916), - [anon_sym_PIPE_AMP] = ACTIONS(6025), - [anon_sym_AMP_AMP] = ACTIONS(6025), - [anon_sym_PIPE_PIPE] = ACTIONS(6025), - [anon_sym_BQUOTE] = ACTIONS(6025), + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6944), + [anon_sym_RPAREN] = ACTIONS(6065), + [anon_sym_PIPE_AMP] = ACTIONS(6065), + [anon_sym_AMP_AMP] = ACTIONS(6065), + [anon_sym_PIPE_PIPE] = ACTIONS(6065), [sym_comment] = ACTIONS(56), }, [4356] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_PIPE] = ACTIONS(6918), - [anon_sym_PIPE_AMP] = ACTIONS(6029), - [anon_sym_AMP_AMP] = ACTIONS(6029), - [anon_sym_PIPE_PIPE] = ACTIONS(6029), - [anon_sym_BQUOTE] = ACTIONS(6029), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8873), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4357] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_PIPE] = ACTIONS(6920), - [anon_sym_PIPE_AMP] = ACTIONS(6033), - [anon_sym_AMP_AMP] = ACTIONS(6033), - [anon_sym_PIPE_PIPE] = ACTIONS(6033), - [anon_sym_BQUOTE] = ACTIONS(6033), + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6948), + [anon_sym_RPAREN] = ACTIONS(6071), + [anon_sym_PIPE_AMP] = ACTIONS(6071), + [anon_sym_AMP_AMP] = ACTIONS(6071), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), [sym_comment] = ACTIONS(56), }, [4358] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_PIPE] = ACTIONS(6922), - [anon_sym_PIPE_AMP] = ACTIONS(6037), - [anon_sym_AMP_AMP] = ACTIONS(6037), - [anon_sym_PIPE_PIPE] = ACTIONS(6037), - [anon_sym_BQUOTE] = ACTIONS(6037), + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_RPAREN] = ACTIONS(6075), + [anon_sym_PIPE_AMP] = ACTIONS(6075), + [anon_sym_AMP_AMP] = ACTIONS(6075), + [anon_sym_PIPE_PIPE] = ACTIONS(6075), [sym_comment] = ACTIONS(56), }, [4359] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8865), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(6041), + [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE_AMP] = ACTIONS(6041), + [anon_sym_AMP_AMP] = ACTIONS(6041), + [anon_sym_PIPE_PIPE] = ACTIONS(6041), + [anon_sym_BQUOTE] = ACTIONS(6041), + [sym_comment] = ACTIONS(56), }, [4360] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_PIPE] = ACTIONS(6926), - [anon_sym_PIPE_AMP] = ACTIONS(6043), - [anon_sym_AMP_AMP] = ACTIONS(6043), - [anon_sym_PIPE_PIPE] = ACTIONS(6043), - [anon_sym_BQUOTE] = ACTIONS(6043), + [sym__concat] = ACTIONS(6045), + [anon_sym_PIPE] = ACTIONS(6932), + [anon_sym_PIPE_AMP] = ACTIONS(6045), + [anon_sym_AMP_AMP] = ACTIONS(6045), + [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [anon_sym_BQUOTE] = ACTIONS(6045), [sym_comment] = ACTIONS(56), }, [4361] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8867), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4362] = { [sym__concat] = ACTIONS(6049), - [anon_sym_PIPE] = ACTIONS(6930), + [anon_sym_PIPE] = ACTIONS(6934), [anon_sym_PIPE_AMP] = ACTIONS(6049), [anon_sym_AMP_AMP] = ACTIONS(6049), [anon_sym_PIPE_PIPE] = ACTIONS(6049), [anon_sym_BQUOTE] = ACTIONS(6049), [sym_comment] = ACTIONS(56), }, - [4363] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8869), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4364] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_PIPE] = ACTIONS(6934), - [anon_sym_PIPE_AMP] = ACTIONS(6055), - [anon_sym_AMP_AMP] = ACTIONS(6055), - [anon_sym_PIPE_PIPE] = ACTIONS(6055), - [anon_sym_BQUOTE] = ACTIONS(6055), + [4362] = { + [sym__concat] = ACTIONS(6053), + [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE_AMP] = ACTIONS(6053), + [anon_sym_AMP_AMP] = ACTIONS(6053), + [anon_sym_PIPE_PIPE] = ACTIONS(6053), + [anon_sym_BQUOTE] = ACTIONS(6053), [sym_comment] = ACTIONS(56), }, - [4365] = { + [4363] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8875), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, + [4364] = { [sym__concat] = ACTIONS(6059), - [anon_sym_PIPE] = ACTIONS(6936), + [anon_sym_PIPE] = ACTIONS(6940), [anon_sym_PIPE_AMP] = ACTIONS(6059), [anon_sym_AMP_AMP] = ACTIONS(6059), [anon_sym_PIPE_PIPE] = ACTIONS(6059), [anon_sym_BQUOTE] = ACTIONS(6059), [sym_comment] = ACTIONS(56), }, - [4366] = { - [sym_file_descriptor] = ACTIONS(3283), - [sym__concat] = ACTIONS(3283), - [sym_variable_name] = ACTIONS(3283), - [anon_sym_esac] = ACTIONS(3285), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_GT] = ACTIONS(3285), - [anon_sym_GT_GT] = ACTIONS(3285), - [anon_sym_AMP_GT] = ACTIONS(3285), - [anon_sym_AMP_GT_GT] = ACTIONS(3285), - [anon_sym_LT_AMP] = ACTIONS(3285), - [anon_sym_GT_AMP] = ACTIONS(3285), - [sym__special_characters] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_DOLLAR] = ACTIONS(3285), - [sym_raw_string] = ACTIONS(3285), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3285), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3285), - [anon_sym_BQUOTE] = ACTIONS(3285), - [anon_sym_LT_LPAREN] = ACTIONS(3285), - [anon_sym_GT_LPAREN] = ACTIONS(3285), + [4365] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8877), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), + [sym_word] = ACTIONS(866), }, - [4367] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8871), + [4366] = { + [sym__concat] = ACTIONS(6065), + [anon_sym_PIPE] = ACTIONS(6944), + [anon_sym_PIPE_AMP] = ACTIONS(6065), + [anon_sym_AMP_AMP] = ACTIONS(6065), + [anon_sym_PIPE_PIPE] = ACTIONS(6065), + [anon_sym_BQUOTE] = ACTIONS(6065), [sym_comment] = ACTIONS(56), }, + [4367] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8879), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), + }, [4368] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8873), + [sym__concat] = ACTIONS(6071), + [anon_sym_PIPE] = ACTIONS(6948), + [anon_sym_PIPE_AMP] = ACTIONS(6071), + [anon_sym_AMP_AMP] = ACTIONS(6071), + [anon_sym_PIPE_PIPE] = ACTIONS(6071), + [anon_sym_BQUOTE] = ACTIONS(6071), [sym_comment] = ACTIONS(56), }, [4369] = { - [anon_sym_RBRACE] = ACTIONS(8873), + [sym__concat] = ACTIONS(6075), + [anon_sym_PIPE] = ACTIONS(6950), + [anon_sym_PIPE_AMP] = ACTIONS(6075), + [anon_sym_AMP_AMP] = ACTIONS(6075), + [anon_sym_PIPE_PIPE] = ACTIONS(6075), + [anon_sym_BQUOTE] = ACTIONS(6075), [sym_comment] = ACTIONS(56), }, [4370] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4480), - [anon_sym_RBRACE] = ACTIONS(8875), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(3293), + [sym__concat] = ACTIONS(3293), + [sym_variable_name] = ACTIONS(3293), + [anon_sym_esac] = ACTIONS(3295), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_GT] = ACTIONS(3295), + [anon_sym_GT_GT] = ACTIONS(3295), + [anon_sym_AMP_GT] = ACTIONS(3295), + [anon_sym_AMP_GT_GT] = ACTIONS(3295), + [anon_sym_LT_AMP] = ACTIONS(3295), + [anon_sym_GT_AMP] = ACTIONS(3295), + [sym__special_characters] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_DOLLAR] = ACTIONS(3295), + [sym_raw_string] = ACTIONS(3295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3295), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3295), + [anon_sym_BQUOTE] = ACTIONS(3295), + [anon_sym_LT_LPAREN] = ACTIONS(3295), + [anon_sym_GT_LPAREN] = ACTIONS(3295), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), }, [4371] = { - [sym_file_descriptor] = ACTIONS(3347), - [sym__concat] = ACTIONS(3347), - [sym_variable_name] = ACTIONS(3347), - [anon_sym_esac] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_GT] = ACTIONS(3349), - [anon_sym_GT_GT] = ACTIONS(3349), - [anon_sym_AMP_GT] = ACTIONS(3349), - [anon_sym_AMP_GT_GT] = ACTIONS(3349), - [anon_sym_LT_AMP] = ACTIONS(3349), - [anon_sym_GT_AMP] = ACTIONS(3349), - [sym__special_characters] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_DOLLAR] = ACTIONS(3349), - [sym_raw_string] = ACTIONS(3349), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3349), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3349), - [anon_sym_BQUOTE] = ACTIONS(3349), - [anon_sym_LT_LPAREN] = ACTIONS(3349), - [anon_sym_GT_LPAREN] = ACTIONS(3349), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8881), + [sym_comment] = ACTIONS(56), }, [4372] = { - [sym_concatenation] = STATE(4483), - [sym_string] = STATE(4482), - [sym_simple_expansion] = STATE(4482), - [sym_string_expansion] = STATE(4482), - [sym_expansion] = STATE(4482), - [sym_command_substitution] = STATE(4482), - [sym_process_substitution] = STATE(4482), - [anon_sym_RBRACE] = ACTIONS(8873), - [sym__special_characters] = ACTIONS(8877), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(8879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8883), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8881), }, [4373] = { - [sym_file_descriptor] = ACTIONS(3392), - [sym__concat] = ACTIONS(3392), - [sym_variable_name] = ACTIONS(3392), - [anon_sym_esac] = ACTIONS(3394), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [anon_sym_LT] = ACTIONS(3394), - [anon_sym_GT] = ACTIONS(3394), - [anon_sym_GT_GT] = ACTIONS(3394), - [anon_sym_AMP_GT] = ACTIONS(3394), - [anon_sym_AMP_GT_GT] = ACTIONS(3394), - [anon_sym_LT_AMP] = ACTIONS(3394), - [anon_sym_GT_AMP] = ACTIONS(3394), - [sym__special_characters] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_DOLLAR] = ACTIONS(3394), - [sym_raw_string] = ACTIONS(3394), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3394), - [anon_sym_BQUOTE] = ACTIONS(3394), - [anon_sym_LT_LPAREN] = ACTIONS(3394), - [anon_sym_GT_LPAREN] = ACTIONS(3394), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3394), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), + [anon_sym_RBRACE] = ACTIONS(8883), + [sym_comment] = ACTIONS(56), }, [4374] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4484), + [anon_sym_RBRACE] = ACTIONS(8885), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8883), + [sym_word] = ACTIONS(866), }, [4375] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8885), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(3357), + [sym__concat] = ACTIONS(3357), + [sym_variable_name] = ACTIONS(3357), + [anon_sym_esac] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_AMP_GT] = ACTIONS(3359), + [anon_sym_AMP_GT_GT] = ACTIONS(3359), + [anon_sym_LT_AMP] = ACTIONS(3359), + [anon_sym_GT_AMP] = ACTIONS(3359), + [sym__special_characters] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_DOLLAR] = ACTIONS(3359), + [sym_raw_string] = ACTIONS(3359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3359), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3359), + [anon_sym_LT_LPAREN] = ACTIONS(3359), + [anon_sym_GT_LPAREN] = ACTIONS(3359), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), }, [4376] = { - [sym_file_descriptor] = ACTIONS(3400), - [sym__concat] = ACTIONS(3400), - [sym_variable_name] = ACTIONS(3400), - [anon_sym_esac] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(3402), - [anon_sym_GT] = ACTIONS(3402), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_AMP_GT] = ACTIONS(3402), - [anon_sym_AMP_GT_GT] = ACTIONS(3402), - [anon_sym_LT_AMP] = ACTIONS(3402), - [anon_sym_GT_AMP] = ACTIONS(3402), - [sym__special_characters] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_DOLLAR] = ACTIONS(3402), - [sym_raw_string] = ACTIONS(3402), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3402), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3402), - [anon_sym_BQUOTE] = ACTIONS(3402), - [anon_sym_LT_LPAREN] = ACTIONS(3402), - [anon_sym_GT_LPAREN] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3402), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), + [sym_concatenation] = STATE(4487), + [sym_string] = STATE(4486), + [sym_simple_expansion] = STATE(4486), + [sym_string_expansion] = STATE(4486), + [sym_expansion] = STATE(4486), + [sym_command_substitution] = STATE(4486), + [sym_process_substitution] = STATE(4486), + [anon_sym_RBRACE] = ACTIONS(8883), + [sym__special_characters] = ACTIONS(8887), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(8889), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8891), }, [4377] = { + [sym_file_descriptor] = ACTIONS(3402), + [sym__concat] = ACTIONS(3402), + [sym_variable_name] = ACTIONS(3402), + [anon_sym_esac] = ACTIONS(3404), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_GT] = ACTIONS(3404), + [anon_sym_GT_GT] = ACTIONS(3404), + [anon_sym_AMP_GT] = ACTIONS(3404), + [anon_sym_AMP_GT_GT] = ACTIONS(3404), + [anon_sym_LT_AMP] = ACTIONS(3404), + [anon_sym_GT_AMP] = ACTIONS(3404), + [sym__special_characters] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_DOLLAR] = ACTIONS(3404), + [sym_raw_string] = ACTIONS(3404), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3404), + [anon_sym_BQUOTE] = ACTIONS(3404), + [anon_sym_LT_LPAREN] = ACTIONS(3404), + [anon_sym_GT_LPAREN] = ACTIONS(3404), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8887), + [sym_word] = ACTIONS(3404), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), }, [4378] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8889), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(8893), }, [4379] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8895), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8891), + [sym_word] = ACTIONS(866), }, [4380] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8873), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(3410), + [sym__concat] = ACTIONS(3410), + [sym_variable_name] = ACTIONS(3410), + [anon_sym_esac] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_GT] = ACTIONS(3412), + [anon_sym_AMP_GT_GT] = ACTIONS(3412), + [anon_sym_LT_AMP] = ACTIONS(3412), + [anon_sym_GT_AMP] = ACTIONS(3412), + [sym__special_characters] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_DOLLAR] = ACTIONS(3412), + [sym_raw_string] = ACTIONS(3412), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3412), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3412), + [anon_sym_BQUOTE] = ACTIONS(3412), + [anon_sym_LT_LPAREN] = ACTIONS(3412), + [anon_sym_GT_LPAREN] = ACTIONS(3412), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), }, [4381] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4490), - [anon_sym_RBRACE] = ACTIONS(8893), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(8897), }, [4382] = { - [sym_file_descriptor] = ACTIONS(3412), - [sym__concat] = ACTIONS(3412), - [sym_variable_name] = ACTIONS(3412), - [anon_sym_esac] = ACTIONS(3414), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [anon_sym_LT] = ACTIONS(3414), - [anon_sym_GT] = ACTIONS(3414), - [anon_sym_GT_GT] = ACTIONS(3414), - [anon_sym_AMP_GT] = ACTIONS(3414), - [anon_sym_AMP_GT_GT] = ACTIONS(3414), - [anon_sym_LT_AMP] = ACTIONS(3414), - [anon_sym_GT_AMP] = ACTIONS(3414), - [sym__special_characters] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_DOLLAR] = ACTIONS(3414), - [sym_raw_string] = ACTIONS(3414), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3414), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3414), - [anon_sym_BQUOTE] = ACTIONS(3414), - [anon_sym_LT_LPAREN] = ACTIONS(3414), - [anon_sym_GT_LPAREN] = ACTIONS(3414), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8899), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(3414), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), + [sym_word] = ACTIONS(866), }, [4383] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4492), - [anon_sym_RBRACE] = ACTIONS(8895), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(8901), }, [4384] = { - [aux_sym_concatenation_repeat1] = STATE(4387), - [sym__concat] = ACTIONS(8724), - [anon_sym_esac] = ACTIONS(4032), - [anon_sym_PIPE] = ACTIONS(4032), - [anon_sym_SEMI_SEMI] = ACTIONS(4032), - [anon_sym_PIPE_AMP] = ACTIONS(4032), - [anon_sym_AMP_AMP] = ACTIONS(4032), - [anon_sym_PIPE_PIPE] = ACTIONS(4032), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8883), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4032), - [anon_sym_LF] = ACTIONS(4032), - [anon_sym_AMP] = ACTIONS(4032), + [sym_word] = ACTIONS(866), }, [4385] = { - [aux_sym_concatenation_repeat1] = STATE(4387), - [sym__concat] = ACTIONS(8724), - [anon_sym_esac] = ACTIONS(4034), - [anon_sym_PIPE] = ACTIONS(4034), - [anon_sym_SEMI_SEMI] = ACTIONS(4034), - [anon_sym_PIPE_AMP] = ACTIONS(4034), - [anon_sym_AMP_AMP] = ACTIONS(4034), - [anon_sym_PIPE_PIPE] = ACTIONS(4034), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4494), + [anon_sym_RBRACE] = ACTIONS(8903), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4034), - [anon_sym_LF] = ACTIONS(4034), - [anon_sym_AMP] = ACTIONS(4034), + [sym_word] = ACTIONS(866), }, [4386] = { - [sym_string] = STATE(4493), - [sym_simple_expansion] = STATE(4493), - [sym_string_expansion] = STATE(4493), - [sym_expansion] = STATE(4493), - [sym_command_substitution] = STATE(4493), - [sym_process_substitution] = STATE(4493), - [sym__special_characters] = ACTIONS(8897), - [anon_sym_DQUOTE] = ACTIONS(8459), - [anon_sym_DOLLAR] = ACTIONS(8461), - [sym_raw_string] = ACTIONS(8899), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8465), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8467), - [anon_sym_BQUOTE] = ACTIONS(8469), - [anon_sym_LT_LPAREN] = ACTIONS(8471), - [anon_sym_GT_LPAREN] = ACTIONS(8471), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8897), + [sym_file_descriptor] = ACTIONS(3422), + [sym__concat] = ACTIONS(3422), + [sym_variable_name] = ACTIONS(3422), + [anon_sym_esac] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(3424), + [anon_sym_AMP_GT] = ACTIONS(3424), + [anon_sym_AMP_GT_GT] = ACTIONS(3424), + [anon_sym_LT_AMP] = ACTIONS(3424), + [anon_sym_GT_AMP] = ACTIONS(3424), + [sym__special_characters] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_DOLLAR] = ACTIONS(3424), + [sym_raw_string] = ACTIONS(3424), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3424), + [anon_sym_BQUOTE] = ACTIONS(3424), + [anon_sym_LT_LPAREN] = ACTIONS(3424), + [anon_sym_GT_LPAREN] = ACTIONS(3424), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(3424), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), }, [4387] = { - [aux_sym_concatenation_repeat1] = STATE(4494), - [sym__concat] = ACTIONS(8724), - [anon_sym_esac] = ACTIONS(790), - [anon_sym_PIPE] = ACTIONS(790), - [anon_sym_SEMI_SEMI] = ACTIONS(790), - [anon_sym_PIPE_AMP] = ACTIONS(790), - [anon_sym_AMP_AMP] = ACTIONS(790), - [anon_sym_PIPE_PIPE] = ACTIONS(790), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4496), + [anon_sym_RBRACE] = ACTIONS(8905), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(790), - [anon_sym_LF] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(790), + [sym_word] = ACTIONS(866), }, [4388] = { - [sym__concat] = ACTIONS(792), - [anon_sym_esac] = ACTIONS(794), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_SEMI_SEMI] = ACTIONS(794), - [anon_sym_PIPE_AMP] = ACTIONS(794), - [anon_sym_AMP_AMP] = ACTIONS(794), - [anon_sym_PIPE_PIPE] = ACTIONS(794), + [aux_sym_concatenation_repeat1] = STATE(4391), + [sym__concat] = ACTIONS(8734), + [anon_sym_esac] = ACTIONS(4044), + [anon_sym_PIPE] = ACTIONS(4044), + [anon_sym_SEMI_SEMI] = ACTIONS(4044), + [anon_sym_PIPE_AMP] = ACTIONS(4044), + [anon_sym_AMP_AMP] = ACTIONS(4044), + [anon_sym_PIPE_PIPE] = ACTIONS(4044), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(794), - [anon_sym_LF] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(794), + [anon_sym_SEMI] = ACTIONS(4044), + [anon_sym_LF] = ACTIONS(4044), + [anon_sym_AMP] = ACTIONS(4044), }, [4389] = { + [aux_sym_concatenation_repeat1] = STATE(4391), + [sym__concat] = ACTIONS(8734), + [anon_sym_esac] = ACTIONS(4046), + [anon_sym_PIPE] = ACTIONS(4046), + [anon_sym_SEMI_SEMI] = ACTIONS(4046), + [anon_sym_PIPE_AMP] = ACTIONS(4046), + [anon_sym_AMP_AMP] = ACTIONS(4046), + [anon_sym_PIPE_PIPE] = ACTIONS(4046), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4046), + [anon_sym_LF] = ACTIONS(4046), + [anon_sym_AMP] = ACTIONS(4046), + }, + [4390] = { + [sym_string] = STATE(4497), + [sym_simple_expansion] = STATE(4497), + [sym_string_expansion] = STATE(4497), + [sym_expansion] = STATE(4497), + [sym_command_substitution] = STATE(4497), + [sym_process_substitution] = STATE(4497), + [sym__special_characters] = ACTIONS(8907), + [anon_sym_DQUOTE] = ACTIONS(8469), + [anon_sym_DOLLAR] = ACTIONS(8471), + [sym_raw_string] = ACTIONS(8909), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8475), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8477), + [anon_sym_BQUOTE] = ACTIONS(8479), + [anon_sym_LT_LPAREN] = ACTIONS(8481), + [anon_sym_GT_LPAREN] = ACTIONS(8481), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8907), + }, + [4391] = { + [aux_sym_concatenation_repeat1] = STATE(4498), + [sym__concat] = ACTIONS(8734), + [anon_sym_esac] = ACTIONS(792), + [anon_sym_PIPE] = ACTIONS(792), + [anon_sym_SEMI_SEMI] = ACTIONS(792), + [anon_sym_PIPE_AMP] = ACTIONS(792), + [anon_sym_AMP_AMP] = ACTIONS(792), + [anon_sym_PIPE_PIPE] = ACTIONS(792), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(792), + [anon_sym_LF] = ACTIONS(792), + [anon_sym_AMP] = ACTIONS(792), + }, + [4392] = { + [sym__concat] = ACTIONS(794), + [anon_sym_esac] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_SEMI_SEMI] = ACTIONS(796), + [anon_sym_PIPE_AMP] = ACTIONS(796), + [anon_sym_AMP_AMP] = ACTIONS(796), + [anon_sym_PIPE_PIPE] = ACTIONS(796), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(796), + [anon_sym_LF] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + }, + [4393] = { [sym_simple_expansion] = STATE(134), [sym_expansion] = STATE(134), [sym_command_substitution] = STATE(134), - [aux_sym_string_repeat1] = STATE(447), - [anon_sym_DQUOTE] = ACTIONS(8901), + [aux_sym_string_repeat1] = STATE(448), + [anon_sym_DQUOTE] = ACTIONS(8911), [anon_sym_DOLLAR] = ACTIONS(232), [sym__string_content] = ACTIONS(234), [anon_sym_DOLLAR_LBRACE] = ACTIONS(236), @@ -106879,238 +106923,169 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(240), [sym_comment] = ACTIONS(182), }, - [4390] = { - [sym__concat] = ACTIONS(824), - [anon_sym_esac] = ACTIONS(826), - [anon_sym_PIPE] = ACTIONS(826), - [anon_sym_SEMI_SEMI] = ACTIONS(826), - [anon_sym_PIPE_AMP] = ACTIONS(826), - [anon_sym_AMP_AMP] = ACTIONS(826), - [anon_sym_PIPE_PIPE] = ACTIONS(826), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(826), - [anon_sym_LF] = ACTIONS(826), - [anon_sym_AMP] = ACTIONS(826), - }, - [4391] = { - [sym__concat] = ACTIONS(828), - [anon_sym_esac] = ACTIONS(830), - [anon_sym_PIPE] = 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(182), - [anon_sym_SEMI] = ACTIONS(830), - [anon_sym_LF] = ACTIONS(830), - [anon_sym_AMP] = ACTIONS(830), - }, - [4392] = { - [sym__concat] = ACTIONS(832), - [anon_sym_esac] = ACTIONS(834), - [anon_sym_PIPE] = ACTIONS(834), - [anon_sym_SEMI_SEMI] = ACTIONS(834), - [anon_sym_PIPE_AMP] = ACTIONS(834), - [anon_sym_AMP_AMP] = ACTIONS(834), - [anon_sym_PIPE_PIPE] = ACTIONS(834), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(834), - [anon_sym_LF] = ACTIONS(834), - [anon_sym_AMP] = ACTIONS(834), - }, - [4393] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(8903), - [sym_comment] = ACTIONS(56), - }, [4394] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4499), - [anon_sym_RBRACE] = ACTIONS(8905), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8907), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(826), + [anon_sym_esac] = ACTIONS(828), + [anon_sym_PIPE] = ACTIONS(828), + [anon_sym_SEMI_SEMI] = ACTIONS(828), + [anon_sym_PIPE_AMP] = ACTIONS(828), + [anon_sym_AMP_AMP] = ACTIONS(828), + [anon_sym_PIPE_PIPE] = ACTIONS(828), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LF] = ACTIONS(828), + [anon_sym_AMP] = ACTIONS(828), }, [4395] = { - [sym_subscript] = STATE(4503), - [sym_variable_name] = ACTIONS(8909), - [anon_sym_DOLLAR] = ACTIONS(8911), - [anon_sym_DASH] = ACTIONS(8911), - [sym_comment] = ACTIONS(56), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8913), - [anon_sym_STAR] = ACTIONS(8911), - [anon_sym_AT] = ACTIONS(8911), - [anon_sym_QMARK] = ACTIONS(8911), - [anon_sym_0] = ACTIONS(8915), - [anon_sym__] = ACTIONS(8915), + [sym__concat] = ACTIONS(830), + [anon_sym_esac] = ACTIONS(832), + [anon_sym_PIPE] = ACTIONS(832), + [anon_sym_SEMI_SEMI] = ACTIONS(832), + [anon_sym_PIPE_AMP] = ACTIONS(832), + [anon_sym_AMP_AMP] = ACTIONS(832), + [anon_sym_PIPE_PIPE] = ACTIONS(832), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(832), + [anon_sym_LF] = ACTIONS(832), + [anon_sym_AMP] = ACTIONS(832), }, [4396] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4506), - [anon_sym_RBRACE] = ACTIONS(8917), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8919), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(834), + [anon_sym_esac] = ACTIONS(836), + [anon_sym_PIPE] = ACTIONS(836), + [anon_sym_SEMI_SEMI] = ACTIONS(836), + [anon_sym_PIPE_AMP] = ACTIONS(836), + [anon_sym_AMP_AMP] = ACTIONS(836), + [anon_sym_PIPE_PIPE] = ACTIONS(836), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LF] = ACTIONS(836), + [anon_sym_AMP] = ACTIONS(836), }, [4397] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4509), - [anon_sym_RBRACE] = ACTIONS(8921), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(8923), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(8913), + [sym_comment] = ACTIONS(56), }, [4398] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8925), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4503), + [anon_sym_RBRACE] = ACTIONS(8915), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8917), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4399] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8925), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(380), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_subscript] = STATE(4507), + [sym_variable_name] = ACTIONS(8919), + [anon_sym_DOLLAR] = ACTIONS(8921), + [anon_sym_DASH] = ACTIONS(8921), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(8923), + [anon_sym_STAR] = ACTIONS(8921), + [anon_sym_AT] = ACTIONS(8921), + [anon_sym_QMARK] = ACTIONS(8921), + [anon_sym_0] = ACTIONS(8925), + [anon_sym__] = ACTIONS(8925), }, [4400] = { - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_BQUOTE] = ACTIONS(8925), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4510), + [anon_sym_RBRACE] = ACTIONS(8927), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8929), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4401] = { - [sym_file_descriptor] = ACTIONS(380), - [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(1070), - [anon_sym_PIPE_AMP] = ACTIONS(1072), - [anon_sym_AMP_AMP] = ACTIONS(1074), - [anon_sym_PIPE_PIPE] = ACTIONS(1074), - [anon_sym_LT] = ACTIONS(384), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_AMP_GT] = ACTIONS(384), - [anon_sym_AMP_GT_GT] = ACTIONS(380), - [anon_sym_LT_AMP] = ACTIONS(380), - [anon_sym_GT_AMP] = ACTIONS(380), - [sym__special_characters] = ACTIONS(384), - [anon_sym_DQUOTE] = ACTIONS(380), - [anon_sym_DOLLAR] = ACTIONS(384), - [sym_raw_string] = ACTIONS(380), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), - [anon_sym_BQUOTE] = ACTIONS(8925), - [anon_sym_LT_LPAREN] = ACTIONS(380), - [anon_sym_GT_LPAREN] = ACTIONS(380), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(384), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4513), + [anon_sym_RBRACE] = ACTIONS(8931), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(8933), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4402] = { - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8927), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8935), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [sym_comment] = ACTIONS(56), }, [4403] = { [sym_file_descriptor] = ACTIONS(380), [sym_variable_name] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_RPAREN] = ACTIONS(8927), - [anon_sym_PIPE_AMP] = ACTIONS(976), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8935), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), [anon_sym_LT] = ACTIONS(384), [anon_sym_GT] = ACTIONS(384), [anon_sym_GT_GT] = ACTIONS(380), @@ -107131,179 +107106,149 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(384), }, [4404] = { - [sym_variable_name] = ACTIONS(4169), - [anon_sym_esac] = ACTIONS(4171), - [anon_sym_PIPE] = ACTIONS(4171), - [anon_sym_SEMI_SEMI] = ACTIONS(4171), - [anon_sym_PIPE_AMP] = ACTIONS(4171), - [anon_sym_AMP_AMP] = ACTIONS(4171), - [anon_sym_PIPE_PIPE] = ACTIONS(4171), - [sym__special_characters] = ACTIONS(4171), - [anon_sym_DQUOTE] = ACTIONS(4171), - [anon_sym_DOLLAR] = ACTIONS(4171), - [sym_raw_string] = ACTIONS(4171), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4171), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4171), - [anon_sym_BQUOTE] = ACTIONS(4171), - [anon_sym_LT_LPAREN] = ACTIONS(4171), - [anon_sym_GT_LPAREN] = ACTIONS(4171), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4171), - [sym_word] = ACTIONS(4171), - [anon_sym_SEMI] = ACTIONS(4171), - [anon_sym_LF] = ACTIONS(4171), - [anon_sym_AMP] = ACTIONS(4171), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_BQUOTE] = ACTIONS(8935), + [sym_comment] = ACTIONS(56), }, [4405] = { - [sym__concat] = ACTIONS(4790), - [sym_variable_name] = ACTIONS(4790), - [anon_sym_esac] = ACTIONS(4792), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [sym__special_characters] = ACTIONS(4792), - [anon_sym_DQUOTE] = ACTIONS(4792), - [anon_sym_DOLLAR] = ACTIONS(4792), - [sym_raw_string] = ACTIONS(4792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), - [anon_sym_BQUOTE] = ACTIONS(4792), - [anon_sym_LT_LPAREN] = ACTIONS(4792), - [anon_sym_GT_LPAREN] = ACTIONS(4792), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4792), - [sym_word] = ACTIONS(4792), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(1072), + [anon_sym_PIPE_AMP] = ACTIONS(1074), + [anon_sym_AMP_AMP] = ACTIONS(1076), + [anon_sym_PIPE_PIPE] = ACTIONS(1076), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(8935), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [4406] = { - [sym__concat] = ACTIONS(4796), - [sym_variable_name] = ACTIONS(4796), - [anon_sym_esac] = ACTIONS(4798), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4798), - [anon_sym_DOLLAR] = ACTIONS(4798), - [sym_raw_string] = ACTIONS(4798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), - [anon_sym_BQUOTE] = ACTIONS(4798), - [anon_sym_LT_LPAREN] = ACTIONS(4798), - [anon_sym_GT_LPAREN] = ACTIONS(4798), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4798), - [sym_word] = ACTIONS(4798), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8937), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [sym_comment] = ACTIONS(56), }, [4407] = { - [sym__concat] = ACTIONS(4859), - [sym_variable_name] = ACTIONS(4859), - [anon_sym_esac] = ACTIONS(4861), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4861), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4861), - [sym_word] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), + [sym_file_descriptor] = ACTIONS(380), + [sym_variable_name] = ACTIONS(380), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(8937), + [anon_sym_PIPE_AMP] = ACTIONS(978), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_LT] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(384), + [anon_sym_GT_GT] = ACTIONS(380), + [anon_sym_AMP_GT] = ACTIONS(384), + [anon_sym_AMP_GT_GT] = ACTIONS(380), + [anon_sym_LT_AMP] = ACTIONS(380), + [anon_sym_GT_AMP] = ACTIONS(380), + [sym__special_characters] = ACTIONS(384), + [anon_sym_DQUOTE] = ACTIONS(380), + [anon_sym_DOLLAR] = ACTIONS(384), + [sym_raw_string] = ACTIONS(380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(380), + [anon_sym_BQUOTE] = ACTIONS(380), + [anon_sym_LT_LPAREN] = ACTIONS(380), + [anon_sym_GT_LPAREN] = ACTIONS(380), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(384), }, [4408] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8929), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_variable_name] = ACTIONS(4181), + [anon_sym_esac] = ACTIONS(4183), + [anon_sym_PIPE] = ACTIONS(4183), + [anon_sym_SEMI_SEMI] = ACTIONS(4183), + [anon_sym_PIPE_AMP] = ACTIONS(4183), + [anon_sym_AMP_AMP] = ACTIONS(4183), + [anon_sym_PIPE_PIPE] = ACTIONS(4183), + [sym__special_characters] = ACTIONS(4183), + [anon_sym_DQUOTE] = ACTIONS(4183), + [anon_sym_DOLLAR] = ACTIONS(4183), + [sym_raw_string] = ACTIONS(4183), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4183), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4183), + [anon_sym_BQUOTE] = ACTIONS(4183), + [anon_sym_LT_LPAREN] = ACTIONS(4183), + [anon_sym_GT_LPAREN] = ACTIONS(4183), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4183), + [sym_word] = ACTIONS(4183), + [anon_sym_SEMI] = ACTIONS(4183), + [anon_sym_LF] = ACTIONS(4183), + [anon_sym_AMP] = ACTIONS(4183), }, [4409] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8931), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(4802), + [sym_variable_name] = ACTIONS(4802), + [anon_sym_esac] = ACTIONS(4804), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [sym__special_characters] = ACTIONS(4804), + [anon_sym_DQUOTE] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4804), + [sym_raw_string] = ACTIONS(4804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), + [anon_sym_BQUOTE] = ACTIONS(4804), + [anon_sym_LT_LPAREN] = ACTIONS(4804), + [anon_sym_GT_LPAREN] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4804), + [sym_word] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), }, [4410] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8933), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(4808), + [sym_variable_name] = ACTIONS(4808), + [anon_sym_esac] = ACTIONS(4810), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [sym__special_characters] = ACTIONS(4810), + [anon_sym_DQUOTE] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4810), + [sym_raw_string] = ACTIONS(4810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), + [anon_sym_BQUOTE] = ACTIONS(4810), + [anon_sym_LT_LPAREN] = ACTIONS(4810), + [anon_sym_GT_LPAREN] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4810), + [sym_word] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), }, [4411] = { - [anon_sym_RBRACE] = ACTIONS(8933), - [sym_comment] = ACTIONS(56), - }, - [4412] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4516), - [anon_sym_RBRACE] = ACTIONS(8935), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4413] = { [sym__concat] = ACTIONS(4871), [sym_variable_name] = ACTIONS(4871), [anon_sym_esac] = ACTIONS(4873), @@ -107328,88 +107273,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4873), [anon_sym_AMP] = ACTIONS(4873), }, - [4414] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4518), - [anon_sym_RBRACE] = ACTIONS(8937), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [4412] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8939), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), + }, + [4413] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8941), + [sym_comment] = ACTIONS(56), + }, + [4414] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8943), + [sym_comment] = ACTIONS(56), }, [4415] = { - [sym__concat] = ACTIONS(4877), - [sym_variable_name] = ACTIONS(4877), - [anon_sym_esac] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [sym__special_characters] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4879), - [sym_raw_string] = ACTIONS(4879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), - [anon_sym_BQUOTE] = ACTIONS(4879), - [anon_sym_LT_LPAREN] = ACTIONS(4879), - [anon_sym_GT_LPAREN] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4879), - [sym_word] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(8943), + [sym_comment] = ACTIONS(56), }, [4416] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), [aux_sym_expansion_repeat1] = STATE(4520), - [anon_sym_RBRACE] = ACTIONS(8939), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(8945), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4417] = { [sym__concat] = ACTIONS(4883), @@ -107437,33 +107373,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4885), }, [4418] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8941), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4522), + [anon_sym_RBRACE] = ACTIONS(8947), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4419] = { [sym__concat] = ACTIONS(4889), @@ -107491,181 +107427,191 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4891), }, [4420] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8943), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4524), + [anon_sym_RBRACE] = ACTIONS(8949), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4421] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_esac] = ACTIONS(4792), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [sym__special_characters] = ACTIONS(4792), - [anon_sym_DQUOTE] = ACTIONS(4792), - [anon_sym_DOLLAR] = ACTIONS(4792), - [sym_raw_string] = ACTIONS(4792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), - [anon_sym_BQUOTE] = ACTIONS(4792), - [anon_sym_LT_LPAREN] = ACTIONS(4792), - [anon_sym_GT_LPAREN] = ACTIONS(4792), + [sym__concat] = ACTIONS(4895), + [sym_variable_name] = ACTIONS(4895), + [anon_sym_esac] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(4897), + [anon_sym_DQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR] = ACTIONS(4897), + [sym_raw_string] = ACTIONS(4897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), + [anon_sym_BQUOTE] = ACTIONS(4897), + [anon_sym_LT_LPAREN] = ACTIONS(4897), + [anon_sym_GT_LPAREN] = ACTIONS(4897), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4792), - [sym_word] = ACTIONS(4792), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4897), + [sym_word] = ACTIONS(4897), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), }, [4422] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_esac] = ACTIONS(4798), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4798), - [anon_sym_DOLLAR] = ACTIONS(4798), - [sym_raw_string] = ACTIONS(4798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), - [anon_sym_BQUOTE] = ACTIONS(4798), - [anon_sym_LT_LPAREN] = ACTIONS(4798), - [anon_sym_GT_LPAREN] = ACTIONS(4798), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8951), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4798), - [sym_word] = ACTIONS(4798), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), + [sym_word] = ACTIONS(866), }, [4423] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_esac] = ACTIONS(4861), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4861), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), + [sym__concat] = ACTIONS(4901), + [sym_variable_name] = ACTIONS(4901), + [anon_sym_esac] = ACTIONS(4903), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4903), + [sym_raw_string] = ACTIONS(4903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), + [anon_sym_BQUOTE] = ACTIONS(4903), + [anon_sym_LT_LPAREN] = ACTIONS(4903), + [anon_sym_GT_LPAREN] = ACTIONS(4903), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4861), - [sym_word] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4903), + [sym_word] = ACTIONS(4903), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), }, [4424] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8945), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8953), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4425] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8947), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(4802), + [anon_sym_esac] = ACTIONS(4804), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [sym__special_characters] = ACTIONS(4804), + [anon_sym_DQUOTE] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4804), + [sym_raw_string] = ACTIONS(4804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), + [anon_sym_BQUOTE] = ACTIONS(4804), + [anon_sym_LT_LPAREN] = ACTIONS(4804), + [anon_sym_GT_LPAREN] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4804), + [sym_word] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), }, [4426] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8949), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(4808), + [anon_sym_esac] = ACTIONS(4810), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [sym__special_characters] = ACTIONS(4810), + [anon_sym_DQUOTE] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4810), + [sym_raw_string] = ACTIONS(4810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), + [anon_sym_BQUOTE] = ACTIONS(4810), + [anon_sym_LT_LPAREN] = ACTIONS(4810), + [anon_sym_GT_LPAREN] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4810), + [sym_word] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), }, [4427] = { - [anon_sym_RBRACE] = ACTIONS(8949), - [sym_comment] = ACTIONS(56), - }, - [4428] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4527), - [anon_sym_RBRACE] = ACTIONS(8951), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4429] = { [sym__concat] = ACTIONS(4871), [anon_sym_esac] = ACTIONS(4873), [anon_sym_PIPE] = ACTIONS(4873), @@ -107689,87 +107635,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4873), [anon_sym_AMP] = ACTIONS(4873), }, - [4430] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4529), - [anon_sym_RBRACE] = ACTIONS(8953), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [4428] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8955), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), + }, + [4429] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8957), + [sym_comment] = ACTIONS(56), + }, + [4430] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8959), + [sym_comment] = ACTIONS(56), }, [4431] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_esac] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [sym__special_characters] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4879), - [sym_raw_string] = ACTIONS(4879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), - [anon_sym_BQUOTE] = ACTIONS(4879), - [anon_sym_LT_LPAREN] = ACTIONS(4879), - [anon_sym_GT_LPAREN] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4879), - [sym_word] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(8959), + [sym_comment] = ACTIONS(56), }, [4432] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), [aux_sym_expansion_repeat1] = STATE(4531), - [anon_sym_RBRACE] = ACTIONS(8955), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(8961), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4433] = { [sym__concat] = ACTIONS(4883), @@ -107796,33 +107734,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4885), }, [4434] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8957), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4533), + [anon_sym_RBRACE] = ACTIONS(8963), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4435] = { [sym__concat] = ACTIONS(4889), @@ -107849,273 +107787,213 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4891), }, [4436] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8959), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4535), + [anon_sym_RBRACE] = ACTIONS(8965), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4437] = { - [sym_file_descriptor] = ACTIONS(6025), - [sym__concat] = ACTIONS(6025), - [anon_sym_esac] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [anon_sym_EQ_TILDE] = ACTIONS(6027), - [anon_sym_EQ_EQ] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6027), - [anon_sym_GT] = ACTIONS(6027), - [anon_sym_GT_GT] = ACTIONS(6027), - [anon_sym_AMP_GT] = ACTIONS(6027), - [anon_sym_AMP_GT_GT] = ACTIONS(6027), - [anon_sym_LT_AMP] = ACTIONS(6027), - [anon_sym_GT_AMP] = ACTIONS(6027), - [anon_sym_LT_LT] = ACTIONS(6027), - [anon_sym_LT_LT_DASH] = ACTIONS(6027), - [anon_sym_LT_LT_LT] = ACTIONS(6027), - [sym__special_characters] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6027), - [sym_raw_string] = ACTIONS(6027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), - [anon_sym_BQUOTE] = ACTIONS(6027), - [anon_sym_LT_LPAREN] = ACTIONS(6027), - [anon_sym_GT_LPAREN] = ACTIONS(6027), + [sym__concat] = ACTIONS(4895), + [anon_sym_esac] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(4897), + [anon_sym_DQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR] = ACTIONS(4897), + [sym_raw_string] = ACTIONS(4897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), + [anon_sym_BQUOTE] = ACTIONS(4897), + [anon_sym_LT_LPAREN] = ACTIONS(4897), + [anon_sym_GT_LPAREN] = ACTIONS(4897), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6027), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4897), + [sym_word] = ACTIONS(4897), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), }, [4438] = { - [sym_file_descriptor] = ACTIONS(6029), - [sym__concat] = ACTIONS(6029), - [anon_sym_esac] = ACTIONS(6031), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [anon_sym_EQ_TILDE] = ACTIONS(6031), - [anon_sym_EQ_EQ] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6031), - [anon_sym_GT] = ACTIONS(6031), - [anon_sym_GT_GT] = ACTIONS(6031), - [anon_sym_AMP_GT] = ACTIONS(6031), - [anon_sym_AMP_GT_GT] = ACTIONS(6031), - [anon_sym_LT_AMP] = ACTIONS(6031), - [anon_sym_GT_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6031), - [anon_sym_LT_LT_DASH] = ACTIONS(6031), - [anon_sym_LT_LT_LT] = ACTIONS(6031), - [sym__special_characters] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6031), - [sym_raw_string] = ACTIONS(6031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), - [anon_sym_BQUOTE] = ACTIONS(6031), - [anon_sym_LT_LPAREN] = ACTIONS(6031), - [anon_sym_GT_LPAREN] = ACTIONS(6031), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8967), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6031), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), + [sym_word] = ACTIONS(866), }, [4439] = { - [sym_file_descriptor] = ACTIONS(6033), - [sym__concat] = ACTIONS(6033), - [anon_sym_esac] = ACTIONS(6035), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), - [anon_sym_EQ_TILDE] = ACTIONS(6035), - [anon_sym_EQ_EQ] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6035), - [anon_sym_GT] = ACTIONS(6035), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_AMP_GT] = ACTIONS(6035), - [anon_sym_AMP_GT_GT] = ACTIONS(6035), - [anon_sym_LT_AMP] = ACTIONS(6035), - [anon_sym_GT_AMP] = ACTIONS(6035), - [anon_sym_LT_LT] = ACTIONS(6035), - [anon_sym_LT_LT_DASH] = ACTIONS(6035), - [anon_sym_LT_LT_LT] = ACTIONS(6035), - [sym__special_characters] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6035), - [sym_raw_string] = ACTIONS(6035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), - [anon_sym_BQUOTE] = ACTIONS(6035), - [anon_sym_LT_LPAREN] = ACTIONS(6035), - [anon_sym_GT_LPAREN] = ACTIONS(6035), + [sym__concat] = ACTIONS(4901), + [anon_sym_esac] = ACTIONS(4903), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4903), + [sym_raw_string] = ACTIONS(4903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), + [anon_sym_BQUOTE] = ACTIONS(4903), + [anon_sym_LT_LPAREN] = ACTIONS(4903), + [anon_sym_GT_LPAREN] = ACTIONS(4903), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6035), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4903), + [sym_word] = ACTIONS(4903), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), }, [4440] = { - [sym_file_descriptor] = ACTIONS(6037), - [sym__concat] = ACTIONS(6037), - [anon_sym_esac] = ACTIONS(6039), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), - [anon_sym_EQ_TILDE] = ACTIONS(6039), - [anon_sym_EQ_EQ] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6039), - [anon_sym_GT] = ACTIONS(6039), - [anon_sym_GT_GT] = ACTIONS(6039), - [anon_sym_AMP_GT] = ACTIONS(6039), - [anon_sym_AMP_GT_GT] = ACTIONS(6039), - [anon_sym_LT_AMP] = ACTIONS(6039), - [anon_sym_GT_AMP] = ACTIONS(6039), - [anon_sym_LT_LT] = ACTIONS(6039), - [anon_sym_LT_LT_DASH] = ACTIONS(6039), - [anon_sym_LT_LT_LT] = ACTIONS(6039), - [sym__special_characters] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6039), - [sym_raw_string] = ACTIONS(6039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), - [anon_sym_BQUOTE] = ACTIONS(6039), - [anon_sym_LT_LPAREN] = ACTIONS(6039), - [anon_sym_GT_LPAREN] = ACTIONS(6039), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8969), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6039), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), + [sym_word] = ACTIONS(866), }, [4441] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8961), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(6041), + [sym__concat] = ACTIONS(6041), + [anon_sym_esac] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_EQ_TILDE] = ACTIONS(6043), + [anon_sym_EQ_EQ] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_GT_GT] = ACTIONS(6043), + [anon_sym_AMP_GT] = ACTIONS(6043), + [anon_sym_AMP_GT_GT] = ACTIONS(6043), + [anon_sym_LT_AMP] = ACTIONS(6043), + [anon_sym_GT_AMP] = ACTIONS(6043), + [anon_sym_LT_LT] = ACTIONS(6043), + [anon_sym_LT_LT_DASH] = ACTIONS(6043), + [anon_sym_LT_LT_LT] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6043), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6043), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(6043), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), }, [4442] = { - [sym_file_descriptor] = ACTIONS(6043), - [sym__concat] = ACTIONS(6043), - [anon_sym_esac] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_EQ_TILDE] = ACTIONS(6045), - [anon_sym_EQ_EQ] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_AMP_GT] = ACTIONS(6045), - [anon_sym_AMP_GT_GT] = ACTIONS(6045), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_AMP] = ACTIONS(6045), - [anon_sym_LT_LT] = ACTIONS(6045), - [anon_sym_LT_LT_DASH] = ACTIONS(6045), - [anon_sym_LT_LT_LT] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6045), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_file_descriptor] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [anon_sym_esac] = ACTIONS(6047), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [anon_sym_EQ_TILDE] = ACTIONS(6047), + [anon_sym_EQ_EQ] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_GT_GT] = ACTIONS(6047), + [anon_sym_AMP_GT] = ACTIONS(6047), + [anon_sym_AMP_GT_GT] = ACTIONS(6047), + [anon_sym_LT_AMP] = ACTIONS(6047), + [anon_sym_GT_AMP] = ACTIONS(6047), + [anon_sym_LT_LT] = ACTIONS(6047), + [anon_sym_LT_LT_DASH] = ACTIONS(6047), + [anon_sym_LT_LT_LT] = ACTIONS(6047), + [sym__special_characters] = ACTIONS(6047), + [anon_sym_DQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR] = ACTIONS(6047), + [sym_raw_string] = ACTIONS(6047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), + [anon_sym_BQUOTE] = ACTIONS(6047), + [anon_sym_LT_LPAREN] = ACTIONS(6047), + [anon_sym_GT_LPAREN] = ACTIONS(6047), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6045), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), + [sym_word] = ACTIONS(6047), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), }, [4443] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8963), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4444] = { [sym_file_descriptor] = ACTIONS(6049), [sym__concat] = ACTIONS(6049), [anon_sym_esac] = ACTIONS(6051), @@ -108151,72 +108029,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6051), [anon_sym_AMP] = ACTIONS(6051), }, - [4445] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8965), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [4444] = { + [sym_file_descriptor] = ACTIONS(6053), + [sym__concat] = ACTIONS(6053), + [anon_sym_esac] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [anon_sym_EQ_TILDE] = ACTIONS(6055), + [anon_sym_EQ_EQ] = ACTIONS(6055), + [anon_sym_LT] = ACTIONS(6055), + [anon_sym_GT] = ACTIONS(6055), + [anon_sym_GT_GT] = ACTIONS(6055), + [anon_sym_AMP_GT] = ACTIONS(6055), + [anon_sym_AMP_GT_GT] = ACTIONS(6055), + [anon_sym_LT_AMP] = ACTIONS(6055), + [anon_sym_GT_AMP] = ACTIONS(6055), + [anon_sym_LT_LT] = ACTIONS(6055), + [anon_sym_LT_LT_DASH] = ACTIONS(6055), + [anon_sym_LT_LT_LT] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6055), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(6055), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), + }, + [4445] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8971), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4446] = { - [sym_file_descriptor] = ACTIONS(6055), - [sym__concat] = ACTIONS(6055), - [anon_sym_esac] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [anon_sym_EQ_TILDE] = ACTIONS(6057), - [anon_sym_EQ_EQ] = ACTIONS(6057), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_GT_GT] = ACTIONS(6057), - [anon_sym_AMP_GT] = ACTIONS(6057), - [anon_sym_AMP_GT_GT] = ACTIONS(6057), - [anon_sym_LT_AMP] = ACTIONS(6057), - [anon_sym_GT_AMP] = ACTIONS(6057), - [anon_sym_LT_LT] = ACTIONS(6057), - [anon_sym_LT_LT_DASH] = ACTIONS(6057), - [anon_sym_LT_LT_LT] = ACTIONS(6057), - [sym__special_characters] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(6057), - [anon_sym_DOLLAR] = ACTIONS(6057), - [sym_raw_string] = ACTIONS(6057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), - [anon_sym_BQUOTE] = ACTIONS(6057), - [anon_sym_LT_LPAREN] = ACTIONS(6057), - [anon_sym_GT_LPAREN] = ACTIONS(6057), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6057), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), - }, - [4447] = { [sym_file_descriptor] = ACTIONS(6059), [sym__concat] = ACTIONS(6059), [anon_sym_esac] = ACTIONS(6061), @@ -108252,689 +108130,749 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6061), [anon_sym_AMP] = ACTIONS(6061), }, - [4448] = { - [sym_file_descriptor] = ACTIONS(3283), - [sym__concat] = ACTIONS(3283), - [anon_sym_esac] = ACTIONS(3285), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_GT] = ACTIONS(3285), - [anon_sym_GT_GT] = ACTIONS(3285), - [anon_sym_AMP_GT] = ACTIONS(3285), - [anon_sym_AMP_GT_GT] = ACTIONS(3285), - [anon_sym_LT_AMP] = ACTIONS(3285), - [anon_sym_GT_AMP] = ACTIONS(3285), - [anon_sym_LT_LT] = ACTIONS(3285), - [anon_sym_LT_LT_DASH] = ACTIONS(3285), - [anon_sym_LT_LT_LT] = ACTIONS(3285), + [4447] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8973), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), + [sym_word] = ACTIONS(866), + }, + [4448] = { + [sym_file_descriptor] = ACTIONS(6065), + [sym__concat] = ACTIONS(6065), + [anon_sym_esac] = ACTIONS(6067), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [anon_sym_EQ_TILDE] = ACTIONS(6067), + [anon_sym_EQ_EQ] = ACTIONS(6067), + [anon_sym_LT] = ACTIONS(6067), + [anon_sym_GT] = ACTIONS(6067), + [anon_sym_GT_GT] = ACTIONS(6067), + [anon_sym_AMP_GT] = ACTIONS(6067), + [anon_sym_AMP_GT_GT] = ACTIONS(6067), + [anon_sym_LT_AMP] = ACTIONS(6067), + [anon_sym_GT_AMP] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_LT_LT_DASH] = ACTIONS(6067), + [anon_sym_LT_LT_LT] = ACTIONS(6067), + [sym__special_characters] = ACTIONS(6067), + [anon_sym_DQUOTE] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6067), + [sym_raw_string] = ACTIONS(6067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), + [anon_sym_BQUOTE] = ACTIONS(6067), + [anon_sym_LT_LPAREN] = ACTIONS(6067), + [anon_sym_GT_LPAREN] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6067), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), }, [4449] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8967), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8975), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4450] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8969), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(6071), + [sym__concat] = ACTIONS(6071), + [anon_sym_esac] = ACTIONS(6073), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [anon_sym_EQ_TILDE] = ACTIONS(6073), + [anon_sym_EQ_EQ] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_GT_GT] = ACTIONS(6073), + [anon_sym_AMP_GT] = ACTIONS(6073), + [anon_sym_AMP_GT_GT] = ACTIONS(6073), + [anon_sym_LT_AMP] = ACTIONS(6073), + [anon_sym_GT_AMP] = ACTIONS(6073), + [anon_sym_LT_LT] = ACTIONS(6073), + [anon_sym_LT_LT_DASH] = ACTIONS(6073), + [anon_sym_LT_LT_LT] = ACTIONS(6073), + [sym__special_characters] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR] = ACTIONS(6073), + [sym_raw_string] = ACTIONS(6073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), + [anon_sym_BQUOTE] = ACTIONS(6073), + [anon_sym_LT_LPAREN] = ACTIONS(6073), + [anon_sym_GT_LPAREN] = ACTIONS(6073), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6073), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), }, [4451] = { - [anon_sym_RBRACE] = ACTIONS(8969), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(6075), + [sym__concat] = ACTIONS(6075), + [anon_sym_esac] = ACTIONS(6077), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [anon_sym_EQ_TILDE] = ACTIONS(6077), + [anon_sym_EQ_EQ] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_AMP_GT] = ACTIONS(6077), + [anon_sym_AMP_GT_GT] = ACTIONS(6077), + [anon_sym_LT_AMP] = ACTIONS(6077), + [anon_sym_GT_AMP] = ACTIONS(6077), + [anon_sym_LT_LT] = ACTIONS(6077), + [anon_sym_LT_LT_DASH] = ACTIONS(6077), + [anon_sym_LT_LT_LT] = ACTIONS(6077), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), + [anon_sym_BQUOTE] = ACTIONS(6077), + [anon_sym_LT_LPAREN] = ACTIONS(6077), + [anon_sym_GT_LPAREN] = ACTIONS(6077), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6077), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), }, [4452] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4540), - [anon_sym_RBRACE] = ACTIONS(8971), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(3293), + [sym__concat] = ACTIONS(3293), + [anon_sym_esac] = ACTIONS(3295), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_GT] = ACTIONS(3295), + [anon_sym_GT_GT] = ACTIONS(3295), + [anon_sym_AMP_GT] = ACTIONS(3295), + [anon_sym_AMP_GT_GT] = ACTIONS(3295), + [anon_sym_LT_AMP] = ACTIONS(3295), + [anon_sym_GT_AMP] = ACTIONS(3295), + [anon_sym_LT_LT] = ACTIONS(3295), + [anon_sym_LT_LT_DASH] = ACTIONS(3295), + [anon_sym_LT_LT_LT] = ACTIONS(3295), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), }, [4453] = { - [sym_file_descriptor] = ACTIONS(3347), - [sym__concat] = ACTIONS(3347), - [anon_sym_esac] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_GT] = ACTIONS(3349), - [anon_sym_GT_GT] = ACTIONS(3349), - [anon_sym_AMP_GT] = ACTIONS(3349), - [anon_sym_AMP_GT_GT] = ACTIONS(3349), - [anon_sym_LT_AMP] = ACTIONS(3349), - [anon_sym_GT_AMP] = ACTIONS(3349), - [anon_sym_LT_LT] = ACTIONS(3349), - [anon_sym_LT_LT_DASH] = ACTIONS(3349), - [anon_sym_LT_LT_LT] = ACTIONS(3349), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8977), + [sym_comment] = ACTIONS(56), }, [4454] = { - [sym_concatenation] = STATE(4543), - [sym_string] = STATE(4542), - [sym_simple_expansion] = STATE(4542), - [sym_string_expansion] = STATE(4542), - [sym_expansion] = STATE(4542), - [sym_command_substitution] = STATE(4542), - [sym_process_substitution] = STATE(4542), - [anon_sym_RBRACE] = ACTIONS(8969), - [sym__special_characters] = ACTIONS(8973), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(8975), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(8979), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8977), }, [4455] = { - [sym_file_descriptor] = ACTIONS(3392), - [sym__concat] = ACTIONS(3392), - [anon_sym_esac] = ACTIONS(3394), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [anon_sym_LT] = ACTIONS(3394), - [anon_sym_GT] = ACTIONS(3394), - [anon_sym_GT_GT] = ACTIONS(3394), - [anon_sym_AMP_GT] = ACTIONS(3394), - [anon_sym_AMP_GT_GT] = ACTIONS(3394), - [anon_sym_LT_AMP] = ACTIONS(3394), - [anon_sym_GT_AMP] = ACTIONS(3394), - [anon_sym_LT_LT] = ACTIONS(3394), - [anon_sym_LT_LT_DASH] = ACTIONS(3394), - [anon_sym_LT_LT_LT] = ACTIONS(3394), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), + [anon_sym_RBRACE] = ACTIONS(8979), + [sym_comment] = ACTIONS(56), }, [4456] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4544), + [anon_sym_RBRACE] = ACTIONS(8981), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8979), + [sym_word] = ACTIONS(866), }, [4457] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8981), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(3357), + [sym__concat] = ACTIONS(3357), + [anon_sym_esac] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_AMP_GT] = ACTIONS(3359), + [anon_sym_AMP_GT_GT] = ACTIONS(3359), + [anon_sym_LT_AMP] = ACTIONS(3359), + [anon_sym_GT_AMP] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(3359), + [anon_sym_LT_LT_DASH] = ACTIONS(3359), + [anon_sym_LT_LT_LT] = ACTIONS(3359), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), }, [4458] = { - [sym_file_descriptor] = ACTIONS(3400), - [sym__concat] = ACTIONS(3400), - [anon_sym_esac] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(3402), - [anon_sym_GT] = ACTIONS(3402), - [anon_sym_GT_GT] = ACTIONS(3402), - [anon_sym_AMP_GT] = ACTIONS(3402), - [anon_sym_AMP_GT_GT] = ACTIONS(3402), - [anon_sym_LT_AMP] = ACTIONS(3402), - [anon_sym_GT_AMP] = ACTIONS(3402), - [anon_sym_LT_LT] = ACTIONS(3402), - [anon_sym_LT_LT_DASH] = ACTIONS(3402), - [anon_sym_LT_LT_LT] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), + [sym_concatenation] = STATE(4547), + [sym_string] = STATE(4546), + [sym_simple_expansion] = STATE(4546), + [sym_string_expansion] = STATE(4546), + [sym_expansion] = STATE(4546), + [sym_command_substitution] = STATE(4546), + [sym_process_substitution] = STATE(4546), + [anon_sym_RBRACE] = ACTIONS(8979), + [sym__special_characters] = ACTIONS(8983), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(8985), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8987), }, [4459] = { + [sym_file_descriptor] = ACTIONS(3402), + [sym__concat] = ACTIONS(3402), + [anon_sym_esac] = ACTIONS(3404), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_GT] = ACTIONS(3404), + [anon_sym_GT_GT] = ACTIONS(3404), + [anon_sym_AMP_GT] = ACTIONS(3404), + [anon_sym_AMP_GT_GT] = ACTIONS(3404), + [anon_sym_LT_AMP] = ACTIONS(3404), + [anon_sym_GT_AMP] = ACTIONS(3404), + [anon_sym_LT_LT] = ACTIONS(3404), + [anon_sym_LT_LT_DASH] = ACTIONS(3404), + [anon_sym_LT_LT_LT] = ACTIONS(3404), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8983), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), }, [4460] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8985), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(8989), }, [4461] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8991), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(8987), + [sym_word] = ACTIONS(866), }, [4462] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8969), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(3410), + [sym__concat] = ACTIONS(3410), + [anon_sym_esac] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_GT] = ACTIONS(3412), + [anon_sym_AMP_GT_GT] = ACTIONS(3412), + [anon_sym_LT_AMP] = ACTIONS(3412), + [anon_sym_GT_AMP] = ACTIONS(3412), + [anon_sym_LT_LT] = ACTIONS(3412), + [anon_sym_LT_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT_LT] = ACTIONS(3412), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), }, [4463] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4550), - [anon_sym_RBRACE] = ACTIONS(8989), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(8993), }, [4464] = { - [sym_file_descriptor] = ACTIONS(3412), - [sym__concat] = ACTIONS(3412), - [anon_sym_esac] = ACTIONS(3414), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), - [anon_sym_LT] = ACTIONS(3414), - [anon_sym_GT] = ACTIONS(3414), - [anon_sym_GT_GT] = ACTIONS(3414), - [anon_sym_AMP_GT] = ACTIONS(3414), - [anon_sym_AMP_GT_GT] = ACTIONS(3414), - [anon_sym_LT_AMP] = ACTIONS(3414), - [anon_sym_GT_AMP] = ACTIONS(3414), - [anon_sym_LT_LT] = ACTIONS(3414), - [anon_sym_LT_LT_DASH] = ACTIONS(3414), - [anon_sym_LT_LT_LT] = ACTIONS(3414), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8995), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), + [sym_word] = ACTIONS(866), }, [4465] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4552), - [anon_sym_RBRACE] = ACTIONS(8991), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(8997), }, [4466] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_SEMI_SEMI] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(8603), - [anon_sym_DQUOTE] = ACTIONS(8605), - [anon_sym_DOLLAR] = ACTIONS(8607), - [sym_raw_string] = ACTIONS(8605), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8605), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8605), - [anon_sym_BQUOTE] = ACTIONS(8605), - [anon_sym_LT_LPAREN] = ACTIONS(8605), - [anon_sym_GT_LPAREN] = ACTIONS(8605), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8603), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(8979), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4467] = { - [sym_file_descriptor] = ACTIONS(1100), - [sym_variable_name] = ACTIONS(1100), - [anon_sym_for] = ACTIONS(1102), - [anon_sym_while] = ACTIONS(1102), - [anon_sym_if] = ACTIONS(1102), - [anon_sym_case] = ACTIONS(1102), - [anon_sym_SEMI_SEMI] = ACTIONS(1100), - [anon_sym_function] = ACTIONS(1102), - [anon_sym_LPAREN] = ACTIONS(1100), - [anon_sym_LBRACK] = ACTIONS(1102), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1100), - [anon_sym_declare] = ACTIONS(1102), - [anon_sym_typeset] = ACTIONS(1102), - [anon_sym_export] = ACTIONS(1102), - [anon_sym_readonly] = ACTIONS(1102), - [anon_sym_local] = ACTIONS(1102), - [anon_sym_unset] = ACTIONS(1102), - [anon_sym_unsetenv] = ACTIONS(1102), - [anon_sym_LT] = ACTIONS(1102), - [anon_sym_GT] = ACTIONS(1102), - [anon_sym_GT_GT] = ACTIONS(1100), - [anon_sym_AMP_GT] = ACTIONS(1102), - [anon_sym_AMP_GT_GT] = ACTIONS(1100), - [anon_sym_LT_AMP] = ACTIONS(1100), - [anon_sym_GT_AMP] = ACTIONS(1100), - [sym__special_characters] = ACTIONS(8611), - [anon_sym_DQUOTE] = ACTIONS(8613), - [anon_sym_DOLLAR] = ACTIONS(8615), - [sym_raw_string] = ACTIONS(8613), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(8613), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(8613), - [anon_sym_BQUOTE] = ACTIONS(8613), - [anon_sym_LT_LPAREN] = ACTIONS(8613), - [anon_sym_GT_LPAREN] = ACTIONS(8613), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(8611), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4554), + [anon_sym_RBRACE] = ACTIONS(8999), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4468] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_RPAREN] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [sym_file_descriptor] = ACTIONS(3422), + [sym__concat] = ACTIONS(3422), + [anon_sym_esac] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(3424), + [anon_sym_AMP_GT] = ACTIONS(3424), + [anon_sym_AMP_GT_GT] = ACTIONS(3424), + [anon_sym_LT_AMP] = ACTIONS(3424), + [anon_sym_GT_AMP] = ACTIONS(3424), + [anon_sym_LT_LT] = ACTIONS(3424), + [anon_sym_LT_LT_DASH] = ACTIONS(3424), + [anon_sym_LT_LT_LT] = ACTIONS(3424), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), }, [4469] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_RPAREN] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4556), + [anon_sym_RBRACE] = ACTIONS(9001), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), + [sym_word] = ACTIONS(866), }, [4470] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_RPAREN] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_SEMI_SEMI] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(8613), + [anon_sym_DQUOTE] = ACTIONS(8615), + [anon_sym_DOLLAR] = ACTIONS(8617), + [sym_raw_string] = ACTIONS(8615), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8615), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8615), + [anon_sym_BQUOTE] = ACTIONS(8615), + [anon_sym_LT_LPAREN] = ACTIONS(8615), + [anon_sym_GT_LPAREN] = ACTIONS(8615), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8613), }, [4471] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7709), - [anon_sym_RPAREN] = ACTIONS(7018), - [anon_sym_PIPE_AMP] = ACTIONS(7018), - [anon_sym_AMP_AMP] = ACTIONS(7018), - [anon_sym_PIPE_PIPE] = ACTIONS(7018), + [sym_file_descriptor] = ACTIONS(1102), + [sym_variable_name] = ACTIONS(1102), + [anon_sym_for] = ACTIONS(1104), + [anon_sym_while] = ACTIONS(1104), + [anon_sym_if] = ACTIONS(1104), + [anon_sym_case] = ACTIONS(1104), + [anon_sym_SEMI_SEMI] = ACTIONS(1102), + [anon_sym_function] = ACTIONS(1104), + [anon_sym_LPAREN] = ACTIONS(1102), + [anon_sym_LBRACK] = ACTIONS(1104), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1102), + [anon_sym_declare] = ACTIONS(1104), + [anon_sym_typeset] = ACTIONS(1104), + [anon_sym_export] = ACTIONS(1104), + [anon_sym_readonly] = ACTIONS(1104), + [anon_sym_local] = ACTIONS(1104), + [anon_sym_unset] = ACTIONS(1104), + [anon_sym_unsetenv] = ACTIONS(1104), + [anon_sym_LT] = ACTIONS(1104), + [anon_sym_GT] = ACTIONS(1104), + [anon_sym_GT_GT] = ACTIONS(1102), + [anon_sym_AMP_GT] = ACTIONS(1104), + [anon_sym_AMP_GT_GT] = ACTIONS(1102), + [anon_sym_LT_AMP] = ACTIONS(1102), + [anon_sym_GT_AMP] = ACTIONS(1102), + [sym__special_characters] = ACTIONS(8621), + [anon_sym_DQUOTE] = ACTIONS(8623), + [anon_sym_DOLLAR] = ACTIONS(8625), + [sym_raw_string] = ACTIONS(8623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(8623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(8623), + [anon_sym_BQUOTE] = ACTIONS(8623), + [anon_sym_LT_LPAREN] = ACTIONS(8623), + [anon_sym_GT_LPAREN] = ACTIONS(8623), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(8621), }, [4472] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7711), - [anon_sym_RPAREN] = ACTIONS(7022), - [anon_sym_PIPE_AMP] = ACTIONS(7022), - [anon_sym_AMP_AMP] = ACTIONS(7022), - [anon_sym_PIPE_PIPE] = ACTIONS(7022), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_RPAREN] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), }, [4473] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_RPAREN] = ACTIONS(7026), - [anon_sym_PIPE_AMP] = ACTIONS(7026), - [anon_sym_AMP_AMP] = ACTIONS(7026), - [anon_sym_PIPE_PIPE] = ACTIONS(7026), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_RPAREN] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), }, [4474] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_PIPE] = ACTIONS(7709), - [anon_sym_PIPE_AMP] = ACTIONS(7018), - [anon_sym_AMP_AMP] = ACTIONS(7018), - [anon_sym_PIPE_PIPE] = ACTIONS(7018), - [anon_sym_BQUOTE] = ACTIONS(7018), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_RPAREN] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), }, [4475] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_PIPE] = ACTIONS(7711), - [anon_sym_PIPE_AMP] = ACTIONS(7022), - [anon_sym_AMP_AMP] = ACTIONS(7022), - [anon_sym_PIPE_PIPE] = ACTIONS(7022), - [anon_sym_BQUOTE] = ACTIONS(7022), + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7721), + [anon_sym_RPAREN] = ACTIONS(7032), + [anon_sym_PIPE_AMP] = ACTIONS(7032), + [anon_sym_AMP_AMP] = ACTIONS(7032), + [anon_sym_PIPE_PIPE] = ACTIONS(7032), [sym_comment] = ACTIONS(56), }, [4476] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_PIPE] = ACTIONS(7713), - [anon_sym_PIPE_AMP] = ACTIONS(7026), - [anon_sym_AMP_AMP] = ACTIONS(7026), - [anon_sym_PIPE_PIPE] = ACTIONS(7026), - [anon_sym_BQUOTE] = ACTIONS(7026), + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_RPAREN] = ACTIONS(7036), + [anon_sym_PIPE_AMP] = ACTIONS(7036), + [anon_sym_AMP_AMP] = ACTIONS(7036), + [anon_sym_PIPE_PIPE] = ACTIONS(7036), [sym_comment] = ACTIONS(56), }, [4477] = { - [sym_file_descriptor] = ACTIONS(4790), - [sym__concat] = ACTIONS(4790), - [sym_variable_name] = ACTIONS(4790), - [anon_sym_esac] = ACTIONS(4792), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_AMP_GT] = ACTIONS(4792), - [anon_sym_AMP_GT_GT] = ACTIONS(4792), - [anon_sym_LT_AMP] = ACTIONS(4792), - [anon_sym_GT_AMP] = ACTIONS(4792), - [sym__special_characters] = ACTIONS(4792), - [anon_sym_DQUOTE] = ACTIONS(4792), - [anon_sym_DOLLAR] = ACTIONS(4792), - [sym_raw_string] = ACTIONS(4792), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4792), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4792), - [anon_sym_BQUOTE] = ACTIONS(4792), - [anon_sym_LT_LPAREN] = ACTIONS(4792), - [anon_sym_GT_LPAREN] = ACTIONS(4792), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4792), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7725), + [anon_sym_RPAREN] = ACTIONS(7040), + [anon_sym_PIPE_AMP] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7040), + [anon_sym_PIPE_PIPE] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), }, [4478] = { - [sym_file_descriptor] = ACTIONS(4796), - [sym__concat] = ACTIONS(4796), - [sym_variable_name] = ACTIONS(4796), - [anon_sym_esac] = ACTIONS(4798), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4798), - [anon_sym_GT] = ACTIONS(4798), - [anon_sym_GT_GT] = ACTIONS(4798), - [anon_sym_AMP_GT] = ACTIONS(4798), - [anon_sym_AMP_GT_GT] = ACTIONS(4798), - [anon_sym_LT_AMP] = ACTIONS(4798), - [anon_sym_GT_AMP] = ACTIONS(4798), - [sym__special_characters] = ACTIONS(4798), - [anon_sym_DQUOTE] = ACTIONS(4798), - [anon_sym_DOLLAR] = ACTIONS(4798), - [sym_raw_string] = ACTIONS(4798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4798), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4798), - [anon_sym_BQUOTE] = ACTIONS(4798), - [anon_sym_LT_LPAREN] = ACTIONS(4798), - [anon_sym_GT_LPAREN] = ACTIONS(4798), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4798), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), + [sym__concat] = ACTIONS(7032), + [anon_sym_PIPE] = ACTIONS(7721), + [anon_sym_PIPE_AMP] = ACTIONS(7032), + [anon_sym_AMP_AMP] = ACTIONS(7032), + [anon_sym_PIPE_PIPE] = ACTIONS(7032), + [anon_sym_BQUOTE] = ACTIONS(7032), + [sym_comment] = ACTIONS(56), }, [4479] = { - [sym_file_descriptor] = ACTIONS(4859), - [sym__concat] = ACTIONS(4859), - [sym_variable_name] = ACTIONS(4859), - [anon_sym_esac] = ACTIONS(4861), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_LT] = ACTIONS(4861), - [anon_sym_GT] = ACTIONS(4861), - [anon_sym_GT_GT] = ACTIONS(4861), - [anon_sym_AMP_GT] = ACTIONS(4861), - [anon_sym_AMP_GT_GT] = ACTIONS(4861), - [anon_sym_LT_AMP] = ACTIONS(4861), - [anon_sym_GT_AMP] = ACTIONS(4861), - [sym__special_characters] = ACTIONS(4861), - [anon_sym_DQUOTE] = ACTIONS(4861), - [anon_sym_DOLLAR] = ACTIONS(4861), - [sym_raw_string] = ACTIONS(4861), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4861), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4861), - [anon_sym_BQUOTE] = ACTIONS(4861), - [anon_sym_LT_LPAREN] = ACTIONS(4861), - [anon_sym_GT_LPAREN] = ACTIONS(4861), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4861), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), + [sym__concat] = ACTIONS(7036), + [anon_sym_PIPE] = ACTIONS(7723), + [anon_sym_PIPE_AMP] = ACTIONS(7036), + [anon_sym_AMP_AMP] = ACTIONS(7036), + [anon_sym_PIPE_PIPE] = ACTIONS(7036), + [anon_sym_BQUOTE] = ACTIONS(7036), + [sym_comment] = ACTIONS(56), }, [4480] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(8993), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym__concat] = ACTIONS(7040), + [anon_sym_PIPE] = ACTIONS(7725), + [anon_sym_PIPE_AMP] = ACTIONS(7040), + [anon_sym_AMP_AMP] = ACTIONS(7040), + [anon_sym_PIPE_PIPE] = ACTIONS(7040), + [anon_sym_BQUOTE] = ACTIONS(7040), + [sym_comment] = ACTIONS(56), }, [4481] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8995), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(4802), + [sym__concat] = ACTIONS(4802), + [sym_variable_name] = ACTIONS(4802), + [anon_sym_esac] = ACTIONS(4804), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_GT_GT] = ACTIONS(4804), + [anon_sym_AMP_GT] = ACTIONS(4804), + [anon_sym_AMP_GT_GT] = ACTIONS(4804), + [anon_sym_LT_AMP] = ACTIONS(4804), + [anon_sym_GT_AMP] = ACTIONS(4804), + [sym__special_characters] = ACTIONS(4804), + [anon_sym_DQUOTE] = ACTIONS(4804), + [anon_sym_DOLLAR] = ACTIONS(4804), + [sym_raw_string] = ACTIONS(4804), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4804), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4804), + [anon_sym_BQUOTE] = ACTIONS(4804), + [anon_sym_LT_LPAREN] = ACTIONS(4804), + [anon_sym_GT_LPAREN] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4804), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), }, [4482] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(8997), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(4808), + [sym__concat] = ACTIONS(4808), + [sym_variable_name] = ACTIONS(4808), + [anon_sym_esac] = ACTIONS(4810), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_GT_GT] = ACTIONS(4810), + [anon_sym_AMP_GT] = ACTIONS(4810), + [anon_sym_AMP_GT_GT] = ACTIONS(4810), + [anon_sym_LT_AMP] = ACTIONS(4810), + [anon_sym_GT_AMP] = ACTIONS(4810), + [sym__special_characters] = ACTIONS(4810), + [anon_sym_DQUOTE] = ACTIONS(4810), + [anon_sym_DOLLAR] = ACTIONS(4810), + [sym_raw_string] = ACTIONS(4810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4810), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4810), + [anon_sym_BQUOTE] = ACTIONS(4810), + [anon_sym_LT_LPAREN] = ACTIONS(4810), + [anon_sym_GT_LPAREN] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(4810), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), }, [4483] = { - [anon_sym_RBRACE] = ACTIONS(8997), - [sym_comment] = ACTIONS(56), - }, - [4484] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4557), - [anon_sym_RBRACE] = ACTIONS(8999), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4485] = { [sym_file_descriptor] = ACTIONS(4871), [sym__concat] = ACTIONS(4871), [sym_variable_name] = ACTIONS(4871), @@ -108966,95 +108904,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4873), [anon_sym_AMP] = ACTIONS(4873), }, - [4486] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4559), - [anon_sym_RBRACE] = ACTIONS(9001), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [4484] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9003), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), + }, + [4485] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(9005), + [sym_comment] = ACTIONS(56), + }, + [4486] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(9007), + [sym_comment] = ACTIONS(56), }, [4487] = { - [sym_file_descriptor] = ACTIONS(4877), - [sym__concat] = ACTIONS(4877), - [sym_variable_name] = ACTIONS(4877), - [anon_sym_esac] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_GT_GT] = ACTIONS(4879), - [anon_sym_AMP_GT] = ACTIONS(4879), - [anon_sym_AMP_GT_GT] = ACTIONS(4879), - [anon_sym_LT_AMP] = ACTIONS(4879), - [anon_sym_GT_AMP] = ACTIONS(4879), - [sym__special_characters] = ACTIONS(4879), - [anon_sym_DQUOTE] = ACTIONS(4879), - [anon_sym_DOLLAR] = ACTIONS(4879), - [sym_raw_string] = ACTIONS(4879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4879), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4879), - [anon_sym_BQUOTE] = ACTIONS(4879), - [anon_sym_LT_LPAREN] = ACTIONS(4879), - [anon_sym_GT_LPAREN] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(4879), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(9007), + [sym_comment] = ACTIONS(56), }, [4488] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), [aux_sym_expansion_repeat1] = STATE(4561), - [anon_sym_RBRACE] = ACTIONS(9003), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(9009), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4489] = { [sym_file_descriptor] = ACTIONS(4883), @@ -109089,33 +109011,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4885), }, [4490] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9005), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4563), + [anon_sym_RBRACE] = ACTIONS(9011), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4491] = { [sym_file_descriptor] = ACTIONS(4889), @@ -109150,538 +109072,527 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4891), }, [4492] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9007), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4565), + [anon_sym_RBRACE] = ACTIONS(9013), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4493] = { - [sym__concat] = ACTIONS(1886), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym_file_descriptor] = ACTIONS(4895), + [sym__concat] = ACTIONS(4895), + [sym_variable_name] = ACTIONS(4895), + [anon_sym_esac] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_GT_GT] = ACTIONS(4897), + [anon_sym_AMP_GT] = ACTIONS(4897), + [anon_sym_AMP_GT_GT] = ACTIONS(4897), + [anon_sym_LT_AMP] = ACTIONS(4897), + [anon_sym_GT_AMP] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(4897), + [anon_sym_DQUOTE] = ACTIONS(4897), + [anon_sym_DOLLAR] = ACTIONS(4897), + [sym_raw_string] = ACTIONS(4897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4897), + [anon_sym_BQUOTE] = ACTIONS(4897), + [anon_sym_LT_LPAREN] = ACTIONS(4897), + [anon_sym_GT_LPAREN] = ACTIONS(4897), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), + [sym_word] = ACTIONS(4897), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), }, [4494] = { - [aux_sym_concatenation_repeat1] = STATE(4494), - [sym__concat] = ACTIONS(9009), - [anon_sym_esac] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_SEMI_SEMI] = ACTIONS(1888), - [anon_sym_PIPE_AMP] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1888), - [anon_sym_PIPE_PIPE] = ACTIONS(1888), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9015), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1888), - [anon_sym_LF] = ACTIONS(1888), - [anon_sym_AMP] = ACTIONS(1888), + [sym_word] = ACTIONS(866), }, [4495] = { - [sym__concat] = ACTIONS(1923), - [anon_sym_esac] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_SEMI_SEMI] = ACTIONS(1925), - [anon_sym_PIPE_AMP] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1925), - [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [sym_file_descriptor] = ACTIONS(4901), + [sym__concat] = ACTIONS(4901), + [sym_variable_name] = ACTIONS(4901), + [anon_sym_esac] = ACTIONS(4903), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [anon_sym_LT] = ACTIONS(4903), + [anon_sym_GT] = ACTIONS(4903), + [anon_sym_GT_GT] = ACTIONS(4903), + [anon_sym_AMP_GT] = ACTIONS(4903), + [anon_sym_AMP_GT_GT] = ACTIONS(4903), + [anon_sym_LT_AMP] = ACTIONS(4903), + [anon_sym_GT_AMP] = ACTIONS(4903), + [sym__special_characters] = ACTIONS(4903), + [anon_sym_DQUOTE] = ACTIONS(4903), + [anon_sym_DOLLAR] = ACTIONS(4903), + [sym_raw_string] = ACTIONS(4903), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4903), + [anon_sym_BQUOTE] = ACTIONS(4903), + [anon_sym_LT_LPAREN] = ACTIONS(4903), + [anon_sym_GT_LPAREN] = ACTIONS(4903), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_LF] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), + [sym_word] = ACTIONS(4903), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), }, [4496] = { - [sym_concatenation] = STATE(4567), - [sym_string] = STATE(4566), - [sym_simple_expansion] = STATE(4566), - [sym_string_expansion] = STATE(4566), - [sym_expansion] = STATE(4566), - [sym_command_substitution] = STATE(4566), - [sym_process_substitution] = STATE(4566), - [anon_sym_RBRACE] = ACTIONS(9012), - [sym__special_characters] = ACTIONS(9014), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(9016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), - [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(9018), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9017), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4497] = { - [sym__concat] = ACTIONS(1968), - [anon_sym_esac] = ACTIONS(1970), - [anon_sym_PIPE] = ACTIONS(1970), - [anon_sym_SEMI_SEMI] = ACTIONS(1970), - [anon_sym_PIPE_AMP] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), + [sym__concat] = ACTIONS(1890), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_LF] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [4498] = { + [aux_sym_concatenation_repeat1] = STATE(4498), + [sym__concat] = ACTIONS(9019), + [anon_sym_esac] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SEMI_SEMI] = ACTIONS(1892), + [anon_sym_PIPE_AMP] = ACTIONS(1892), + [anon_sym_AMP_AMP] = ACTIONS(1892), + [anon_sym_PIPE_PIPE] = ACTIONS(1892), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(9020), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_LF] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), }, [4499] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9022), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(1927), + [anon_sym_esac] = ACTIONS(1929), + [anon_sym_PIPE] = ACTIONS(1929), + [anon_sym_SEMI_SEMI] = ACTIONS(1929), + [anon_sym_PIPE_AMP] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(1929), + [anon_sym_LF] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1929), }, [4500] = { - [anon_sym_LBRACK] = ACTIONS(836), - [anon_sym_EQ] = ACTIONS(9024), + [sym_concatenation] = STATE(4571), + [sym_string] = STATE(4570), + [sym_simple_expansion] = STATE(4570), + [sym_string_expansion] = STATE(4570), + [sym_expansion] = STATE(4570), + [sym_command_substitution] = STATE(4570), + [sym_process_substitution] = STATE(4570), + [anon_sym_RBRACE] = ACTIONS(9022), + [sym__special_characters] = ACTIONS(9024), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(9026), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(9028), }, [4501] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4573), - [anon_sym_RBRACE] = ACTIONS(9026), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(9028), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(1972), + [anon_sym_esac] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_SEMI_SEMI] = ACTIONS(1974), + [anon_sym_PIPE_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_LF] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), }, [4502] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4576), - [anon_sym_RBRACE] = ACTIONS(9030), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(9032), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(9030), }, [4503] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4578), - [anon_sym_RBRACE] = ACTIONS(9012), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [aux_sym_SLASH] = ACTIONS(9034), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9032), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4504] = { - [sym__concat] = ACTIONS(2022), - [anon_sym_esac] = ACTIONS(2024), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_SEMI_SEMI] = ACTIONS(2024), - [anon_sym_PIPE_AMP] = ACTIONS(2024), - [anon_sym_AMP_AMP] = ACTIONS(2024), - [anon_sym_PIPE_PIPE] = ACTIONS(2024), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2024), - [anon_sym_LF] = ACTIONS(2024), - [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(838), + [anon_sym_EQ] = ACTIONS(9034), + [sym_comment] = ACTIONS(56), }, [4505] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4577), + [anon_sym_RBRACE] = ACTIONS(9036), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(9038), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(9036), + [sym_word] = ACTIONS(866), }, [4506] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9038), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4580), + [anon_sym_RBRACE] = ACTIONS(9040), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(9042), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4507] = { - [sym__concat] = ACTIONS(2030), - [anon_sym_esac] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_SEMI_SEMI] = ACTIONS(2032), - [anon_sym_PIPE_AMP] = ACTIONS(2032), - [anon_sym_AMP_AMP] = ACTIONS(2032), - [anon_sym_PIPE_PIPE] = ACTIONS(2032), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4582), + [anon_sym_RBRACE] = ACTIONS(9022), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [aux_sym_SLASH] = ACTIONS(9044), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_LF] = ACTIONS(2032), - [anon_sym_AMP] = ACTIONS(2032), + [sym_word] = ACTIONS(866), }, [4508] = { + [sym__concat] = ACTIONS(2026), + [anon_sym_esac] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_SEMI_SEMI] = ACTIONS(2028), + [anon_sym_PIPE_AMP] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2028), + [anon_sym_PIPE_PIPE] = ACTIONS(2028), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(9040), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_LF] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), }, [4509] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9012), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(9046), }, [4510] = { - [sym__concat] = ACTIONS(2190), - [anon_sym_esac] = ACTIONS(2192), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_SEMI_SEMI] = ACTIONS(2192), - [anon_sym_PIPE_AMP] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2192), - [anon_sym_PIPE_PIPE] = ACTIONS(2192), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9048), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_LF] = ACTIONS(2192), - [anon_sym_AMP] = ACTIONS(2192), + [sym_word] = ACTIONS(866), }, [4511] = { - [sym__concat] = ACTIONS(2396), - [anon_sym_esac] = ACTIONS(2398), - [anon_sym_PIPE] = ACTIONS(2398), - [anon_sym_SEMI_SEMI] = ACTIONS(2398), - [anon_sym_PIPE_AMP] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), + [sym__concat] = ACTIONS(2034), + [anon_sym_esac] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_SEMI_SEMI] = ACTIONS(2036), + [anon_sym_PIPE_AMP] = ACTIONS(2036), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_PIPE_PIPE] = ACTIONS(2036), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LF] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_LF] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), }, [4512] = { - [sym__concat] = ACTIONS(6025), - [sym_variable_name] = ACTIONS(6025), - [anon_sym_esac] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [sym__special_characters] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6027), - [sym_raw_string] = ACTIONS(6027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), - [anon_sym_BQUOTE] = ACTIONS(6027), - [anon_sym_LT_LPAREN] = ACTIONS(6027), - [anon_sym_GT_LPAREN] = ACTIONS(6027), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6027), - [sym_word] = ACTIONS(6027), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), + [sym_regex_without_right_brace] = ACTIONS(9050), }, [4513] = { - [sym__concat] = ACTIONS(6029), - [sym_variable_name] = ACTIONS(6029), - [anon_sym_esac] = ACTIONS(6031), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [sym__special_characters] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6031), - [sym_raw_string] = ACTIONS(6031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), - [anon_sym_BQUOTE] = ACTIONS(6031), - [anon_sym_LT_LPAREN] = ACTIONS(6031), - [anon_sym_GT_LPAREN] = ACTIONS(6031), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9022), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6031), - [sym_word] = ACTIONS(6031), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), + [sym_word] = ACTIONS(866), }, [4514] = { - [sym__concat] = ACTIONS(6033), - [sym_variable_name] = ACTIONS(6033), - [anon_sym_esac] = ACTIONS(6035), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), - [sym__special_characters] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6035), - [sym_raw_string] = ACTIONS(6035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), - [anon_sym_BQUOTE] = ACTIONS(6035), - [anon_sym_LT_LPAREN] = ACTIONS(6035), - [anon_sym_GT_LPAREN] = ACTIONS(6035), + [sym__concat] = ACTIONS(2196), + [anon_sym_esac] = ACTIONS(2198), + [anon_sym_PIPE] = ACTIONS(2198), + [anon_sym_SEMI_SEMI] = ACTIONS(2198), + [anon_sym_PIPE_AMP] = ACTIONS(2198), + [anon_sym_AMP_AMP] = ACTIONS(2198), + [anon_sym_PIPE_PIPE] = ACTIONS(2198), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6035), - [sym_word] = ACTIONS(6035), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(2198), + [anon_sym_LF] = ACTIONS(2198), + [anon_sym_AMP] = ACTIONS(2198), }, [4515] = { - [sym__concat] = ACTIONS(6037), - [sym_variable_name] = ACTIONS(6037), - [anon_sym_esac] = ACTIONS(6039), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), - [sym__special_characters] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6039), - [sym_raw_string] = ACTIONS(6039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), - [anon_sym_BQUOTE] = ACTIONS(6039), - [anon_sym_LT_LPAREN] = ACTIONS(6039), - [anon_sym_GT_LPAREN] = ACTIONS(6039), + [sym__concat] = ACTIONS(2402), + [anon_sym_esac] = ACTIONS(2404), + [anon_sym_PIPE] = ACTIONS(2404), + [anon_sym_SEMI_SEMI] = ACTIONS(2404), + [anon_sym_PIPE_AMP] = ACTIONS(2404), + [anon_sym_AMP_AMP] = ACTIONS(2404), + [anon_sym_PIPE_PIPE] = ACTIONS(2404), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6039), - [sym_word] = ACTIONS(6039), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(2404), + [anon_sym_LF] = ACTIONS(2404), + [anon_sym_AMP] = ACTIONS(2404), }, [4516] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9042), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(6041), + [sym_variable_name] = ACTIONS(6041), + [anon_sym_esac] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6043), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6043), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6043), + [sym_word] = ACTIONS(6043), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), }, [4517] = { - [sym__concat] = ACTIONS(6043), - [sym_variable_name] = ACTIONS(6043), - [anon_sym_esac] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6045), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [sym_variable_name] = ACTIONS(6045), + [anon_sym_esac] = ACTIONS(6047), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [sym__special_characters] = ACTIONS(6047), + [anon_sym_DQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR] = ACTIONS(6047), + [sym_raw_string] = ACTIONS(6047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), + [anon_sym_BQUOTE] = ACTIONS(6047), + [anon_sym_LT_LPAREN] = ACTIONS(6047), + [anon_sym_GT_LPAREN] = ACTIONS(6047), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6045), - [sym_word] = ACTIONS(6045), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6047), + [sym_word] = ACTIONS(6047), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), }, [4518] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9044), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4519] = { [sym__concat] = ACTIONS(6049), [sym_variable_name] = ACTIONS(6049), [anon_sym_esac] = ACTIONS(6051), @@ -109706,61 +109617,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6051), [anon_sym_AMP] = ACTIONS(6051), }, - [4520] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9046), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [4519] = { + [sym__concat] = ACTIONS(6053), + [sym_variable_name] = ACTIONS(6053), + [anon_sym_esac] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6055), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6055), + [sym_word] = ACTIONS(6055), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), + }, + [4520] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9052), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4521] = { - [sym__concat] = ACTIONS(6055), - [sym_variable_name] = ACTIONS(6055), - [anon_sym_esac] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [sym__special_characters] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(6057), - [anon_sym_DOLLAR] = ACTIONS(6057), - [sym_raw_string] = ACTIONS(6057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), - [anon_sym_BQUOTE] = ACTIONS(6057), - [anon_sym_LT_LPAREN] = ACTIONS(6057), - [anon_sym_GT_LPAREN] = ACTIONS(6057), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6057), - [sym_word] = ACTIONS(6057), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), - }, - [4522] = { [sym__concat] = ACTIONS(6059), [sym_variable_name] = ACTIONS(6059), [anon_sym_esac] = ACTIONS(6061), @@ -109785,185 +109696,188 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6061), [anon_sym_AMP] = ACTIONS(6061), }, - [4523] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_esac] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [sym__special_characters] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6027), - [sym_raw_string] = ACTIONS(6027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), - [anon_sym_BQUOTE] = ACTIONS(6027), - [anon_sym_LT_LPAREN] = ACTIONS(6027), - [anon_sym_GT_LPAREN] = ACTIONS(6027), + [4522] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9054), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6027), - [sym_word] = ACTIONS(6027), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), + [sym_word] = ACTIONS(866), + }, + [4523] = { + [sym__concat] = ACTIONS(6065), + [sym_variable_name] = ACTIONS(6065), + [anon_sym_esac] = ACTIONS(6067), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [sym__special_characters] = ACTIONS(6067), + [anon_sym_DQUOTE] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6067), + [sym_raw_string] = ACTIONS(6067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), + [anon_sym_BQUOTE] = ACTIONS(6067), + [anon_sym_LT_LPAREN] = ACTIONS(6067), + [anon_sym_GT_LPAREN] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6067), + [sym_word] = ACTIONS(6067), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), }, [4524] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_esac] = ACTIONS(6031), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [sym__special_characters] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6031), - [sym_raw_string] = ACTIONS(6031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), - [anon_sym_BQUOTE] = ACTIONS(6031), - [anon_sym_LT_LPAREN] = ACTIONS(6031), - [anon_sym_GT_LPAREN] = ACTIONS(6031), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9056), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6031), - [sym_word] = ACTIONS(6031), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), + [sym_word] = ACTIONS(866), }, [4525] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_esac] = ACTIONS(6035), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), - [sym__special_characters] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6035), - [sym_raw_string] = ACTIONS(6035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), - [anon_sym_BQUOTE] = ACTIONS(6035), - [anon_sym_LT_LPAREN] = ACTIONS(6035), - [anon_sym_GT_LPAREN] = ACTIONS(6035), + [sym__concat] = ACTIONS(6071), + [sym_variable_name] = ACTIONS(6071), + [anon_sym_esac] = ACTIONS(6073), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [sym__special_characters] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR] = ACTIONS(6073), + [sym_raw_string] = ACTIONS(6073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), + [anon_sym_BQUOTE] = ACTIONS(6073), + [anon_sym_LT_LPAREN] = ACTIONS(6073), + [anon_sym_GT_LPAREN] = ACTIONS(6073), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6035), - [sym_word] = ACTIONS(6035), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6073), + [sym_word] = ACTIONS(6073), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), }, [4526] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_esac] = ACTIONS(6039), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), - [sym__special_characters] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6039), - [sym_raw_string] = ACTIONS(6039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), - [anon_sym_BQUOTE] = ACTIONS(6039), - [anon_sym_LT_LPAREN] = ACTIONS(6039), - [anon_sym_GT_LPAREN] = ACTIONS(6039), + [sym__concat] = ACTIONS(6075), + [sym_variable_name] = ACTIONS(6075), + [anon_sym_esac] = ACTIONS(6077), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), + [anon_sym_BQUOTE] = ACTIONS(6077), + [anon_sym_LT_LPAREN] = ACTIONS(6077), + [anon_sym_GT_LPAREN] = ACTIONS(6077), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6039), - [sym_word] = ACTIONS(6039), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6077), + [sym_word] = ACTIONS(6077), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), }, [4527] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9048), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(6041), + [anon_sym_esac] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6043), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6043), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6043), + [sym_word] = ACTIONS(6043), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), }, [4528] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_esac] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6045), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [anon_sym_esac] = ACTIONS(6047), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [sym__special_characters] = ACTIONS(6047), + [anon_sym_DQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR] = ACTIONS(6047), + [sym_raw_string] = ACTIONS(6047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), + [anon_sym_BQUOTE] = ACTIONS(6047), + [anon_sym_LT_LPAREN] = ACTIONS(6047), + [anon_sym_GT_LPAREN] = ACTIONS(6047), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6045), - [sym_word] = ACTIONS(6045), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6047), + [sym_word] = ACTIONS(6047), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), }, [4529] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9050), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4530] = { [sym__concat] = ACTIONS(6049), [anon_sym_esac] = ACTIONS(6051), [anon_sym_PIPE] = ACTIONS(6051), @@ -109987,60 +109901,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6051), [anon_sym_AMP] = ACTIONS(6051), }, - [4531] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9052), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [4530] = { + [sym__concat] = ACTIONS(6053), + [anon_sym_esac] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6055), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6055), + [sym_word] = ACTIONS(6055), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), + }, + [4531] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9058), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4532] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_esac] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [sym__special_characters] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(6057), - [anon_sym_DOLLAR] = ACTIONS(6057), - [sym_raw_string] = ACTIONS(6057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), - [anon_sym_BQUOTE] = ACTIONS(6057), - [anon_sym_LT_LPAREN] = ACTIONS(6057), - [anon_sym_GT_LPAREN] = ACTIONS(6057), - [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6057), - [sym_word] = ACTIONS(6057), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), - }, - [4533] = { [sym__concat] = ACTIONS(6059), [anon_sym_esac] = ACTIONS(6061), [anon_sym_PIPE] = ACTIONS(6061), @@ -110064,261 +109978,293 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6061), [anon_sym_AMP] = ACTIONS(6061), }, - [4534] = { - [sym_file_descriptor] = ACTIONS(7018), - [sym__concat] = ACTIONS(7018), - [anon_sym_esac] = ACTIONS(7020), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [anon_sym_EQ_TILDE] = ACTIONS(7020), - [anon_sym_EQ_EQ] = ACTIONS(7020), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_GT] = ACTIONS(7020), - [anon_sym_AMP_GT] = ACTIONS(7020), - [anon_sym_AMP_GT_GT] = ACTIONS(7020), - [anon_sym_LT_AMP] = ACTIONS(7020), - [anon_sym_GT_AMP] = ACTIONS(7020), - [anon_sym_LT_LT] = ACTIONS(7020), - [anon_sym_LT_LT_DASH] = ACTIONS(7020), - [anon_sym_LT_LT_LT] = ACTIONS(7020), - [sym__special_characters] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7020), - [anon_sym_DOLLAR] = ACTIONS(7020), - [sym_raw_string] = ACTIONS(7020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), - [anon_sym_BQUOTE] = ACTIONS(7020), - [anon_sym_LT_LPAREN] = ACTIONS(7020), - [anon_sym_GT_LPAREN] = ACTIONS(7020), + [4533] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9060), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7020), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), + [sym_word] = ACTIONS(866), + }, + [4534] = { + [sym__concat] = ACTIONS(6065), + [anon_sym_esac] = ACTIONS(6067), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [sym__special_characters] = ACTIONS(6067), + [anon_sym_DQUOTE] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6067), + [sym_raw_string] = ACTIONS(6067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), + [anon_sym_BQUOTE] = ACTIONS(6067), + [anon_sym_LT_LPAREN] = ACTIONS(6067), + [anon_sym_GT_LPAREN] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6067), + [sym_word] = ACTIONS(6067), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), }, [4535] = { - [sym_file_descriptor] = ACTIONS(7022), - [sym__concat] = ACTIONS(7022), - [anon_sym_esac] = ACTIONS(7024), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), - [anon_sym_EQ_TILDE] = ACTIONS(7024), - [anon_sym_EQ_EQ] = ACTIONS(7024), - [anon_sym_LT] = ACTIONS(7024), - [anon_sym_GT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_AMP_GT] = ACTIONS(7024), - [anon_sym_AMP_GT_GT] = ACTIONS(7024), - [anon_sym_LT_AMP] = ACTIONS(7024), - [anon_sym_GT_AMP] = ACTIONS(7024), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_LT_LT_DASH] = ACTIONS(7024), - [anon_sym_LT_LT_LT] = ACTIONS(7024), - [sym__special_characters] = ACTIONS(7024), - [anon_sym_DQUOTE] = ACTIONS(7024), - [anon_sym_DOLLAR] = ACTIONS(7024), - [sym_raw_string] = ACTIONS(7024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), - [anon_sym_BQUOTE] = ACTIONS(7024), - [anon_sym_LT_LPAREN] = ACTIONS(7024), - [anon_sym_GT_LPAREN] = ACTIONS(7024), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9062), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), + [sym_word] = ACTIONS(866), }, [4536] = { - [sym_file_descriptor] = ACTIONS(7026), - [sym__concat] = ACTIONS(7026), - [anon_sym_esac] = ACTIONS(7028), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), - [anon_sym_EQ_TILDE] = ACTIONS(7028), - [anon_sym_EQ_EQ] = ACTIONS(7028), - [anon_sym_LT] = ACTIONS(7028), - [anon_sym_GT] = ACTIONS(7028), - [anon_sym_GT_GT] = ACTIONS(7028), - [anon_sym_AMP_GT] = ACTIONS(7028), - [anon_sym_AMP_GT_GT] = ACTIONS(7028), - [anon_sym_LT_AMP] = ACTIONS(7028), - [anon_sym_GT_AMP] = ACTIONS(7028), - [anon_sym_LT_LT] = ACTIONS(7028), - [anon_sym_LT_LT_DASH] = ACTIONS(7028), - [anon_sym_LT_LT_LT] = ACTIONS(7028), - [sym__special_characters] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7028), - [anon_sym_DOLLAR] = ACTIONS(7028), - [sym_raw_string] = ACTIONS(7028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), - [anon_sym_BQUOTE] = ACTIONS(7028), - [anon_sym_LT_LPAREN] = ACTIONS(7028), - [anon_sym_GT_LPAREN] = ACTIONS(7028), + [sym__concat] = ACTIONS(6071), + [anon_sym_esac] = ACTIONS(6073), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [sym__special_characters] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR] = ACTIONS(6073), + [sym_raw_string] = ACTIONS(6073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), + [anon_sym_BQUOTE] = ACTIONS(6073), + [anon_sym_LT_LPAREN] = ACTIONS(6073), + [anon_sym_GT_LPAREN] = ACTIONS(6073), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7028), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6073), + [sym_word] = ACTIONS(6073), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), }, [4537] = { - [sym_file_descriptor] = ACTIONS(4790), - [sym__concat] = ACTIONS(4790), - [anon_sym_esac] = ACTIONS(4792), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), - [anon_sym_LT] = ACTIONS(4792), - [anon_sym_GT] = ACTIONS(4792), - [anon_sym_GT_GT] = ACTIONS(4792), - [anon_sym_AMP_GT] = ACTIONS(4792), - [anon_sym_AMP_GT_GT] = ACTIONS(4792), - [anon_sym_LT_AMP] = ACTIONS(4792), - [anon_sym_GT_AMP] = ACTIONS(4792), - [anon_sym_LT_LT] = ACTIONS(4792), - [anon_sym_LT_LT_DASH] = ACTIONS(4792), - [anon_sym_LT_LT_LT] = ACTIONS(4792), + [sym__concat] = ACTIONS(6075), + [anon_sym_esac] = ACTIONS(6077), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), + [anon_sym_BQUOTE] = ACTIONS(6077), + [anon_sym_LT_LPAREN] = ACTIONS(6077), + [anon_sym_GT_LPAREN] = ACTIONS(6077), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(6077), + [sym_word] = ACTIONS(6077), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), }, [4538] = { - [sym_file_descriptor] = ACTIONS(4796), - [sym__concat] = ACTIONS(4796), - [anon_sym_esac] = ACTIONS(4798), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), - [anon_sym_LT] = ACTIONS(4798), - [anon_sym_GT] = ACTIONS(4798), - [anon_sym_GT_GT] = ACTIONS(4798), - [anon_sym_AMP_GT] = ACTIONS(4798), - [anon_sym_AMP_GT_GT] = ACTIONS(4798), - [anon_sym_LT_AMP] = ACTIONS(4798), - [anon_sym_GT_AMP] = ACTIONS(4798), - [anon_sym_LT_LT] = ACTIONS(4798), - [anon_sym_LT_LT_DASH] = ACTIONS(4798), - [anon_sym_LT_LT_LT] = ACTIONS(4798), + [sym_file_descriptor] = ACTIONS(7032), + [sym__concat] = ACTIONS(7032), + [anon_sym_esac] = ACTIONS(7034), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [anon_sym_EQ_TILDE] = ACTIONS(7034), + [anon_sym_EQ_EQ] = ACTIONS(7034), + [anon_sym_LT] = ACTIONS(7034), + [anon_sym_GT] = ACTIONS(7034), + [anon_sym_GT_GT] = ACTIONS(7034), + [anon_sym_AMP_GT] = ACTIONS(7034), + [anon_sym_AMP_GT_GT] = ACTIONS(7034), + [anon_sym_LT_AMP] = ACTIONS(7034), + [anon_sym_GT_AMP] = ACTIONS(7034), + [anon_sym_LT_LT] = ACTIONS(7034), + [anon_sym_LT_LT_DASH] = ACTIONS(7034), + [anon_sym_LT_LT_LT] = ACTIONS(7034), + [sym__special_characters] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [anon_sym_DOLLAR] = ACTIONS(7034), + [sym_raw_string] = ACTIONS(7034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), + [anon_sym_BQUOTE] = ACTIONS(7034), + [anon_sym_LT_LPAREN] = ACTIONS(7034), + [anon_sym_GT_LPAREN] = ACTIONS(7034), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), + [sym_word] = ACTIONS(7034), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), }, [4539] = { - [sym_file_descriptor] = ACTIONS(4859), - [sym__concat] = ACTIONS(4859), - [anon_sym_esac] = ACTIONS(4861), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), - [anon_sym_LT] = ACTIONS(4861), - [anon_sym_GT] = ACTIONS(4861), - [anon_sym_GT_GT] = ACTIONS(4861), - [anon_sym_AMP_GT] = ACTIONS(4861), - [anon_sym_AMP_GT_GT] = ACTIONS(4861), - [anon_sym_LT_AMP] = ACTIONS(4861), - [anon_sym_GT_AMP] = ACTIONS(4861), - [anon_sym_LT_LT] = ACTIONS(4861), - [anon_sym_LT_LT_DASH] = ACTIONS(4861), - [anon_sym_LT_LT_LT] = ACTIONS(4861), + [sym_file_descriptor] = ACTIONS(7036), + [sym__concat] = ACTIONS(7036), + [anon_sym_esac] = ACTIONS(7038), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [anon_sym_EQ_TILDE] = ACTIONS(7038), + [anon_sym_EQ_EQ] = ACTIONS(7038), + [anon_sym_LT] = ACTIONS(7038), + [anon_sym_GT] = ACTIONS(7038), + [anon_sym_GT_GT] = ACTIONS(7038), + [anon_sym_AMP_GT] = ACTIONS(7038), + [anon_sym_AMP_GT_GT] = ACTIONS(7038), + [anon_sym_LT_AMP] = ACTIONS(7038), + [anon_sym_GT_AMP] = ACTIONS(7038), + [anon_sym_LT_LT] = ACTIONS(7038), + [anon_sym_LT_LT_DASH] = ACTIONS(7038), + [anon_sym_LT_LT_LT] = ACTIONS(7038), + [sym__special_characters] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7038), + [anon_sym_DOLLAR] = ACTIONS(7038), + [sym_raw_string] = ACTIONS(7038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), + [anon_sym_BQUOTE] = ACTIONS(7038), + [anon_sym_LT_LPAREN] = ACTIONS(7038), + [anon_sym_GT_LPAREN] = ACTIONS(7038), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), + [sym_word] = ACTIONS(7038), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), }, [4540] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9054), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(7040), + [sym__concat] = ACTIONS(7040), + [anon_sym_esac] = ACTIONS(7042), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [anon_sym_EQ_TILDE] = ACTIONS(7042), + [anon_sym_EQ_EQ] = ACTIONS(7042), + [anon_sym_LT] = ACTIONS(7042), + [anon_sym_GT] = ACTIONS(7042), + [anon_sym_GT_GT] = ACTIONS(7042), + [anon_sym_AMP_GT] = ACTIONS(7042), + [anon_sym_AMP_GT_GT] = ACTIONS(7042), + [anon_sym_LT_AMP] = ACTIONS(7042), + [anon_sym_GT_AMP] = ACTIONS(7042), + [anon_sym_LT_LT] = ACTIONS(7042), + [anon_sym_LT_LT_DASH] = ACTIONS(7042), + [anon_sym_LT_LT_LT] = ACTIONS(7042), + [sym__special_characters] = ACTIONS(7042), + [anon_sym_DQUOTE] = ACTIONS(7042), + [anon_sym_DOLLAR] = ACTIONS(7042), + [sym_raw_string] = ACTIONS(7042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), + [anon_sym_BQUOTE] = ACTIONS(7042), + [anon_sym_LT_LPAREN] = ACTIONS(7042), + [anon_sym_GT_LPAREN] = ACTIONS(7042), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(7042), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), }, [4541] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(9056), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(4802), + [sym__concat] = ACTIONS(4802), + [anon_sym_esac] = ACTIONS(4804), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [anon_sym_LT] = ACTIONS(4804), + [anon_sym_GT] = ACTIONS(4804), + [anon_sym_GT_GT] = ACTIONS(4804), + [anon_sym_AMP_GT] = ACTIONS(4804), + [anon_sym_AMP_GT_GT] = ACTIONS(4804), + [anon_sym_LT_AMP] = ACTIONS(4804), + [anon_sym_GT_AMP] = ACTIONS(4804), + [anon_sym_LT_LT] = ACTIONS(4804), + [anon_sym_LT_LT_DASH] = ACTIONS(4804), + [anon_sym_LT_LT_LT] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), }, [4542] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(9058), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(4808), + [sym__concat] = ACTIONS(4808), + [anon_sym_esac] = ACTIONS(4810), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [anon_sym_LT] = ACTIONS(4810), + [anon_sym_GT] = ACTIONS(4810), + [anon_sym_GT_GT] = ACTIONS(4810), + [anon_sym_AMP_GT] = ACTIONS(4810), + [anon_sym_AMP_GT_GT] = ACTIONS(4810), + [anon_sym_LT_AMP] = ACTIONS(4810), + [anon_sym_GT_AMP] = ACTIONS(4810), + [anon_sym_LT_LT] = ACTIONS(4810), + [anon_sym_LT_LT_DASH] = ACTIONS(4810), + [anon_sym_LT_LT_LT] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), }, [4543] = { - [anon_sym_RBRACE] = ACTIONS(9058), - [sym_comment] = ACTIONS(56), - }, - [4544] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4592), - [anon_sym_RBRACE] = ACTIONS(9060), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4545] = { [sym_file_descriptor] = ACTIONS(4871), [sym__concat] = ACTIONS(4871), [anon_sym_esac] = ACTIONS(4873), @@ -110342,87 +110288,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4873), [anon_sym_AMP] = ACTIONS(4873), }, - [4546] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4594), - [anon_sym_RBRACE] = ACTIONS(9062), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [4544] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9064), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), + }, + [4545] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(9066), + [sym_comment] = ACTIONS(56), + }, + [4546] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(9068), + [sym_comment] = ACTIONS(56), }, [4547] = { - [sym_file_descriptor] = ACTIONS(4877), - [sym__concat] = ACTIONS(4877), - [anon_sym_esac] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [anon_sym_LT] = ACTIONS(4879), - [anon_sym_GT] = ACTIONS(4879), - [anon_sym_GT_GT] = ACTIONS(4879), - [anon_sym_AMP_GT] = ACTIONS(4879), - [anon_sym_AMP_GT_GT] = ACTIONS(4879), - [anon_sym_LT_AMP] = ACTIONS(4879), - [anon_sym_GT_AMP] = ACTIONS(4879), - [anon_sym_LT_LT] = ACTIONS(4879), - [anon_sym_LT_LT_DASH] = ACTIONS(4879), - [anon_sym_LT_LT_LT] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(9068), + [sym_comment] = ACTIONS(56), }, [4548] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), [aux_sym_expansion_repeat1] = STATE(4596), - [anon_sym_RBRACE] = ACTIONS(9064), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(9070), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4549] = { [sym_file_descriptor] = ACTIONS(4883), @@ -110449,33 +110387,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4885), }, [4550] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9066), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4598), + [anon_sym_RBRACE] = ACTIONS(9072), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4551] = { [sym_file_descriptor] = ACTIONS(4889), @@ -110502,253 +110440,205 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4891), }, [4552] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9068), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4600), + [anon_sym_RBRACE] = ACTIONS(9074), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4553] = { - [sym_file_descriptor] = ACTIONS(6025), - [sym__concat] = ACTIONS(6025), - [sym_variable_name] = ACTIONS(6025), - [anon_sym_esac] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6027), - [anon_sym_GT] = ACTIONS(6027), - [anon_sym_GT_GT] = ACTIONS(6027), - [anon_sym_AMP_GT] = ACTIONS(6027), - [anon_sym_AMP_GT_GT] = ACTIONS(6027), - [anon_sym_LT_AMP] = ACTIONS(6027), - [anon_sym_GT_AMP] = ACTIONS(6027), - [sym__special_characters] = ACTIONS(6027), - [anon_sym_DQUOTE] = ACTIONS(6027), - [anon_sym_DOLLAR] = ACTIONS(6027), - [sym_raw_string] = ACTIONS(6027), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6027), - [anon_sym_BQUOTE] = ACTIONS(6027), - [anon_sym_LT_LPAREN] = ACTIONS(6027), - [anon_sym_GT_LPAREN] = ACTIONS(6027), + [sym_file_descriptor] = ACTIONS(4895), + [sym__concat] = ACTIONS(4895), + [anon_sym_esac] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), + [anon_sym_LT] = ACTIONS(4897), + [anon_sym_GT] = ACTIONS(4897), + [anon_sym_GT_GT] = ACTIONS(4897), + [anon_sym_AMP_GT] = ACTIONS(4897), + [anon_sym_AMP_GT_GT] = ACTIONS(4897), + [anon_sym_LT_AMP] = ACTIONS(4897), + [anon_sym_GT_AMP] = ACTIONS(4897), + [anon_sym_LT_LT] = ACTIONS(4897), + [anon_sym_LT_LT_DASH] = ACTIONS(4897), + [anon_sym_LT_LT_LT] = ACTIONS(4897), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6027), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), }, [4554] = { - [sym_file_descriptor] = ACTIONS(6029), - [sym__concat] = ACTIONS(6029), - [sym_variable_name] = ACTIONS(6029), - [anon_sym_esac] = ACTIONS(6031), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6031), - [anon_sym_GT] = ACTIONS(6031), - [anon_sym_GT_GT] = ACTIONS(6031), - [anon_sym_AMP_GT] = ACTIONS(6031), - [anon_sym_AMP_GT_GT] = ACTIONS(6031), - [anon_sym_LT_AMP] = ACTIONS(6031), - [anon_sym_GT_AMP] = ACTIONS(6031), - [sym__special_characters] = ACTIONS(6031), - [anon_sym_DQUOTE] = ACTIONS(6031), - [anon_sym_DOLLAR] = ACTIONS(6031), - [sym_raw_string] = ACTIONS(6031), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6031), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6031), - [anon_sym_BQUOTE] = ACTIONS(6031), - [anon_sym_LT_LPAREN] = ACTIONS(6031), - [anon_sym_GT_LPAREN] = ACTIONS(6031), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9076), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6031), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), + [sym_word] = ACTIONS(866), }, [4555] = { - [sym_file_descriptor] = ACTIONS(6033), - [sym__concat] = ACTIONS(6033), - [sym_variable_name] = ACTIONS(6033), - [anon_sym_esac] = ACTIONS(6035), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6035), - [anon_sym_GT] = ACTIONS(6035), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_AMP_GT] = ACTIONS(6035), - [anon_sym_AMP_GT_GT] = ACTIONS(6035), - [anon_sym_LT_AMP] = ACTIONS(6035), - [anon_sym_GT_AMP] = ACTIONS(6035), - [sym__special_characters] = ACTIONS(6035), - [anon_sym_DQUOTE] = ACTIONS(6035), - [anon_sym_DOLLAR] = ACTIONS(6035), - [sym_raw_string] = ACTIONS(6035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6035), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6035), - [anon_sym_BQUOTE] = ACTIONS(6035), - [anon_sym_LT_LPAREN] = ACTIONS(6035), - [anon_sym_GT_LPAREN] = ACTIONS(6035), + [sym_file_descriptor] = ACTIONS(4901), + [sym__concat] = ACTIONS(4901), + [anon_sym_esac] = ACTIONS(4903), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), + [anon_sym_LT] = ACTIONS(4903), + [anon_sym_GT] = ACTIONS(4903), + [anon_sym_GT_GT] = ACTIONS(4903), + [anon_sym_AMP_GT] = ACTIONS(4903), + [anon_sym_AMP_GT_GT] = ACTIONS(4903), + [anon_sym_LT_AMP] = ACTIONS(4903), + [anon_sym_GT_AMP] = ACTIONS(4903), + [anon_sym_LT_LT] = ACTIONS(4903), + [anon_sym_LT_LT_DASH] = ACTIONS(4903), + [anon_sym_LT_LT_LT] = ACTIONS(4903), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6035), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), }, [4556] = { - [sym_file_descriptor] = ACTIONS(6037), - [sym__concat] = ACTIONS(6037), - [sym_variable_name] = ACTIONS(6037), - [anon_sym_esac] = ACTIONS(6039), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6039), - [anon_sym_GT] = ACTIONS(6039), - [anon_sym_GT_GT] = ACTIONS(6039), - [anon_sym_AMP_GT] = ACTIONS(6039), - [anon_sym_AMP_GT_GT] = ACTIONS(6039), - [anon_sym_LT_AMP] = ACTIONS(6039), - [anon_sym_GT_AMP] = ACTIONS(6039), - [sym__special_characters] = ACTIONS(6039), - [anon_sym_DQUOTE] = ACTIONS(6039), - [anon_sym_DOLLAR] = ACTIONS(6039), - [sym_raw_string] = ACTIONS(6039), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6039), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6039), - [anon_sym_BQUOTE] = ACTIONS(6039), - [anon_sym_LT_LPAREN] = ACTIONS(6039), - [anon_sym_GT_LPAREN] = ACTIONS(6039), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9078), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6039), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), + [sym_word] = ACTIONS(866), }, [4557] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9070), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(6041), + [sym__concat] = ACTIONS(6041), + [sym_variable_name] = ACTIONS(6041), + [anon_sym_esac] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_GT_GT] = ACTIONS(6043), + [anon_sym_AMP_GT] = ACTIONS(6043), + [anon_sym_AMP_GT_GT] = ACTIONS(6043), + [anon_sym_LT_AMP] = ACTIONS(6043), + [anon_sym_GT_AMP] = ACTIONS(6043), + [sym__special_characters] = ACTIONS(6043), + [anon_sym_DQUOTE] = ACTIONS(6043), + [anon_sym_DOLLAR] = ACTIONS(6043), + [sym_raw_string] = ACTIONS(6043), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6043), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6043), + [anon_sym_BQUOTE] = ACTIONS(6043), + [anon_sym_LT_LPAREN] = ACTIONS(6043), + [anon_sym_GT_LPAREN] = ACTIONS(6043), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(6043), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), }, [4558] = { - [sym_file_descriptor] = ACTIONS(6043), - [sym__concat] = ACTIONS(6043), - [sym_variable_name] = ACTIONS(6043), - [anon_sym_esac] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_AMP_GT] = ACTIONS(6045), - [anon_sym_AMP_GT_GT] = ACTIONS(6045), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_AMP] = ACTIONS(6045), - [sym__special_characters] = ACTIONS(6045), - [anon_sym_DQUOTE] = ACTIONS(6045), - [anon_sym_DOLLAR] = ACTIONS(6045), - [sym_raw_string] = ACTIONS(6045), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6045), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6045), - [anon_sym_BQUOTE] = ACTIONS(6045), - [anon_sym_LT_LPAREN] = ACTIONS(6045), - [anon_sym_GT_LPAREN] = ACTIONS(6045), + [sym_file_descriptor] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [sym_variable_name] = ACTIONS(6045), + [anon_sym_esac] = ACTIONS(6047), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_GT_GT] = ACTIONS(6047), + [anon_sym_AMP_GT] = ACTIONS(6047), + [anon_sym_AMP_GT_GT] = ACTIONS(6047), + [anon_sym_LT_AMP] = ACTIONS(6047), + [anon_sym_GT_AMP] = ACTIONS(6047), + [sym__special_characters] = ACTIONS(6047), + [anon_sym_DQUOTE] = ACTIONS(6047), + [anon_sym_DOLLAR] = ACTIONS(6047), + [sym_raw_string] = ACTIONS(6047), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6047), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6047), + [anon_sym_BQUOTE] = ACTIONS(6047), + [anon_sym_LT_LPAREN] = ACTIONS(6047), + [anon_sym_GT_LPAREN] = ACTIONS(6047), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6045), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), + [sym_word] = ACTIONS(6047), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), }, [4559] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9072), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4560] = { [sym_file_descriptor] = ACTIONS(6049), [sym__concat] = ACTIONS(6049), [sym_variable_name] = ACTIONS(6049), @@ -110780,68 +110670,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6051), [anon_sym_AMP] = ACTIONS(6051), }, - [4561] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9074), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [4560] = { + [sym_file_descriptor] = ACTIONS(6053), + [sym__concat] = ACTIONS(6053), + [sym_variable_name] = ACTIONS(6053), + [anon_sym_esac] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [anon_sym_LT] = ACTIONS(6055), + [anon_sym_GT] = ACTIONS(6055), + [anon_sym_GT_GT] = ACTIONS(6055), + [anon_sym_AMP_GT] = ACTIONS(6055), + [anon_sym_AMP_GT_GT] = ACTIONS(6055), + [anon_sym_LT_AMP] = ACTIONS(6055), + [anon_sym_GT_AMP] = ACTIONS(6055), + [sym__special_characters] = ACTIONS(6055), + [anon_sym_DQUOTE] = ACTIONS(6055), + [anon_sym_DOLLAR] = ACTIONS(6055), + [sym_raw_string] = ACTIONS(6055), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6055), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6055), + [anon_sym_BQUOTE] = ACTIONS(6055), + [anon_sym_LT_LPAREN] = ACTIONS(6055), + [anon_sym_GT_LPAREN] = ACTIONS(6055), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(6055), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), + }, + [4561] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9080), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4562] = { - [sym_file_descriptor] = ACTIONS(6055), - [sym__concat] = ACTIONS(6055), - [sym_variable_name] = ACTIONS(6055), - [anon_sym_esac] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_GT_GT] = ACTIONS(6057), - [anon_sym_AMP_GT] = ACTIONS(6057), - [anon_sym_AMP_GT_GT] = ACTIONS(6057), - [anon_sym_LT_AMP] = ACTIONS(6057), - [anon_sym_GT_AMP] = ACTIONS(6057), - [sym__special_characters] = ACTIONS(6057), - [anon_sym_DQUOTE] = ACTIONS(6057), - [anon_sym_DOLLAR] = ACTIONS(6057), - [sym_raw_string] = ACTIONS(6057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(6057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(6057), - [anon_sym_BQUOTE] = ACTIONS(6057), - [anon_sym_LT_LPAREN] = ACTIONS(6057), - [anon_sym_GT_LPAREN] = ACTIONS(6057), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(6057), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), - }, - [4563] = { [sym_file_descriptor] = ACTIONS(6059), [sym__concat] = ACTIONS(6059), [sym_variable_name] = ACTIONS(6059), @@ -110873,620 +110763,644 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6061), [anon_sym_AMP] = ACTIONS(6061), }, - [4564] = { - [sym__concat] = ACTIONS(3283), - [anon_sym_esac] = ACTIONS(3285), - [anon_sym_PIPE] = ACTIONS(3285), - [anon_sym_SEMI_SEMI] = ACTIONS(3285), - [anon_sym_PIPE_AMP] = ACTIONS(3285), - [anon_sym_AMP_AMP] = ACTIONS(3285), - [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [4563] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9082), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_LF] = ACTIONS(3285), - [anon_sym_AMP] = ACTIONS(3285), + [sym_word] = ACTIONS(866), + }, + [4564] = { + [sym_file_descriptor] = ACTIONS(6065), + [sym__concat] = ACTIONS(6065), + [sym_variable_name] = ACTIONS(6065), + [anon_sym_esac] = ACTIONS(6067), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [anon_sym_LT] = ACTIONS(6067), + [anon_sym_GT] = ACTIONS(6067), + [anon_sym_GT_GT] = ACTIONS(6067), + [anon_sym_AMP_GT] = ACTIONS(6067), + [anon_sym_AMP_GT_GT] = ACTIONS(6067), + [anon_sym_LT_AMP] = ACTIONS(6067), + [anon_sym_GT_AMP] = ACTIONS(6067), + [sym__special_characters] = ACTIONS(6067), + [anon_sym_DQUOTE] = ACTIONS(6067), + [anon_sym_DOLLAR] = ACTIONS(6067), + [sym_raw_string] = ACTIONS(6067), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6067), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6067), + [anon_sym_BQUOTE] = ACTIONS(6067), + [anon_sym_LT_LPAREN] = ACTIONS(6067), + [anon_sym_GT_LPAREN] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6067), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), }, [4565] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(9076), - [sym_comment] = ACTIONS(56), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9084), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4566] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(9078), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(6071), + [sym__concat] = ACTIONS(6071), + [sym_variable_name] = ACTIONS(6071), + [anon_sym_esac] = ACTIONS(6073), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_GT_GT] = ACTIONS(6073), + [anon_sym_AMP_GT] = ACTIONS(6073), + [anon_sym_AMP_GT_GT] = ACTIONS(6073), + [anon_sym_LT_AMP] = ACTIONS(6073), + [anon_sym_GT_AMP] = ACTIONS(6073), + [sym__special_characters] = ACTIONS(6073), + [anon_sym_DQUOTE] = ACTIONS(6073), + [anon_sym_DOLLAR] = ACTIONS(6073), + [sym_raw_string] = ACTIONS(6073), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6073), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6073), + [anon_sym_BQUOTE] = ACTIONS(6073), + [anon_sym_LT_LPAREN] = ACTIONS(6073), + [anon_sym_GT_LPAREN] = ACTIONS(6073), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6073), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), }, [4567] = { - [anon_sym_RBRACE] = ACTIONS(9078), - [sym_comment] = ACTIONS(56), + [sym_file_descriptor] = ACTIONS(6075), + [sym__concat] = ACTIONS(6075), + [sym_variable_name] = ACTIONS(6075), + [anon_sym_esac] = ACTIONS(6077), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_AMP_GT] = ACTIONS(6077), + [anon_sym_AMP_GT_GT] = ACTIONS(6077), + [anon_sym_LT_AMP] = ACTIONS(6077), + [anon_sym_GT_AMP] = ACTIONS(6077), + [sym__special_characters] = ACTIONS(6077), + [anon_sym_DQUOTE] = ACTIONS(6077), + [anon_sym_DOLLAR] = ACTIONS(6077), + [sym_raw_string] = ACTIONS(6077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(6077), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(6077), + [anon_sym_BQUOTE] = ACTIONS(6077), + [anon_sym_LT_LPAREN] = ACTIONS(6077), + [anon_sym_GT_LPAREN] = ACTIONS(6077), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(6077), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), }, [4568] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4605), - [anon_sym_RBRACE] = ACTIONS(9080), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3293), + [anon_sym_esac] = ACTIONS(3295), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_SEMI_SEMI] = ACTIONS(3295), + [anon_sym_PIPE_AMP] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), }, [4569] = { - [sym__concat] = ACTIONS(3347), - [anon_sym_esac] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3349), - [anon_sym_PIPE_AMP] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_LF] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(9086), + [sym_comment] = ACTIONS(56), }, [4570] = { - [sym_concatenation] = STATE(4608), - [sym_string] = STATE(4607), - [sym_simple_expansion] = STATE(4607), - [sym_string_expansion] = STATE(4607), - [sym_expansion] = STATE(4607), - [sym_command_substitution] = STATE(4607), - [sym_process_substitution] = STATE(4607), - [anon_sym_RBRACE] = ACTIONS(9078), - [sym__special_characters] = ACTIONS(9082), - [anon_sym_DQUOTE] = ACTIONS(1952), - [anon_sym_DOLLAR] = ACTIONS(1954), - [sym_raw_string] = ACTIONS(9084), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1958), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1960), - [anon_sym_BQUOTE] = ACTIONS(1962), - [anon_sym_LT_LPAREN] = ACTIONS(1964), - [anon_sym_GT_LPAREN] = ACTIONS(1964), + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(9088), [sym_comment] = ACTIONS(56), - [sym_word] = ACTIONS(9086), }, [4571] = { - [sym__concat] = ACTIONS(3392), - [anon_sym_esac] = ACTIONS(3394), - [anon_sym_PIPE] = ACTIONS(3394), - [anon_sym_SEMI_SEMI] = ACTIONS(3394), - [anon_sym_PIPE_AMP] = ACTIONS(3394), - [anon_sym_AMP_AMP] = ACTIONS(3394), - [anon_sym_PIPE_PIPE] = ACTIONS(3394), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_LF] = ACTIONS(3394), - [anon_sym_AMP] = ACTIONS(3394), + [anon_sym_RBRACE] = ACTIONS(9088), + [sym_comment] = ACTIONS(56), }, [4572] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4609), + [anon_sym_RBRACE] = ACTIONS(9090), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(9088), + [sym_word] = ACTIONS(866), }, [4573] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9090), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3357), + [anon_sym_esac] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_SEMI_SEMI] = ACTIONS(3359), + [anon_sym_PIPE_AMP] = ACTIONS(3359), + [anon_sym_AMP_AMP] = ACTIONS(3359), + [anon_sym_PIPE_PIPE] = ACTIONS(3359), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_LF] = ACTIONS(3359), + [anon_sym_AMP] = ACTIONS(3359), }, [4574] = { - [sym__concat] = ACTIONS(3400), - [anon_sym_esac] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3402), - [anon_sym_SEMI_SEMI] = ACTIONS(3402), - [anon_sym_PIPE_AMP] = ACTIONS(3402), - [anon_sym_AMP_AMP] = ACTIONS(3402), - [anon_sym_PIPE_PIPE] = ACTIONS(3402), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_LF] = ACTIONS(3402), - [anon_sym_AMP] = ACTIONS(3402), + [sym_concatenation] = STATE(4612), + [sym_string] = STATE(4611), + [sym_simple_expansion] = STATE(4611), + [sym_string_expansion] = STATE(4611), + [sym_expansion] = STATE(4611), + [sym_command_substitution] = STATE(4611), + [sym_process_substitution] = STATE(4611), + [anon_sym_RBRACE] = ACTIONS(9088), + [sym__special_characters] = ACTIONS(9092), + [anon_sym_DQUOTE] = ACTIONS(1956), + [anon_sym_DOLLAR] = ACTIONS(1958), + [sym_raw_string] = ACTIONS(9094), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1962), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1964), + [anon_sym_BQUOTE] = ACTIONS(1966), + [anon_sym_LT_LPAREN] = ACTIONS(1968), + [anon_sym_GT_LPAREN] = ACTIONS(1968), + [sym_comment] = ACTIONS(56), + [sym_word] = ACTIONS(9096), }, [4575] = { + [sym__concat] = ACTIONS(3402), + [anon_sym_esac] = ACTIONS(3404), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_SEMI_SEMI] = ACTIONS(3404), + [anon_sym_PIPE_AMP] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(9092), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), }, [4576] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9094), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(9098), }, [4577] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9100), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_regex_without_right_brace] = ACTIONS(9096), + [sym_word] = ACTIONS(866), }, [4578] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9078), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(3410), + [anon_sym_esac] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_SEMI_SEMI] = ACTIONS(3412), + [anon_sym_PIPE_AMP] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), }, [4579] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4615), - [anon_sym_RBRACE] = ACTIONS(9098), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(9102), }, [4580] = { - [sym__concat] = ACTIONS(3412), - [anon_sym_esac] = ACTIONS(3414), - [anon_sym_PIPE] = ACTIONS(3414), - [anon_sym_SEMI_SEMI] = ACTIONS(3414), - [anon_sym_PIPE_AMP] = ACTIONS(3414), - [anon_sym_AMP_AMP] = ACTIONS(3414), - [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9104), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_LF] = ACTIONS(3414), - [anon_sym_AMP] = ACTIONS(3414), + [sym_word] = ACTIONS(866), }, [4581] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4617), - [anon_sym_RBRACE] = ACTIONS(9100), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_regex_without_right_brace] = ACTIONS(9106), }, [4582] = { - [sym__concat] = ACTIONS(7018), - [sym_variable_name] = ACTIONS(7018), - [anon_sym_esac] = ACTIONS(7020), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [sym__special_characters] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7020), - [anon_sym_DOLLAR] = ACTIONS(7020), - [sym_raw_string] = ACTIONS(7020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), - [anon_sym_BQUOTE] = ACTIONS(7020), - [anon_sym_LT_LPAREN] = ACTIONS(7020), - [anon_sym_GT_LPAREN] = ACTIONS(7020), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9088), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7020), - [sym_word] = ACTIONS(7020), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), + [sym_word] = ACTIONS(866), }, [4583] = { - [sym__concat] = ACTIONS(7022), - [sym_variable_name] = ACTIONS(7022), - [anon_sym_esac] = ACTIONS(7024), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), - [sym__special_characters] = ACTIONS(7024), - [anon_sym_DQUOTE] = ACTIONS(7024), - [anon_sym_DOLLAR] = ACTIONS(7024), - [sym_raw_string] = ACTIONS(7024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), - [anon_sym_BQUOTE] = ACTIONS(7024), - [anon_sym_LT_LPAREN] = ACTIONS(7024), - [anon_sym_GT_LPAREN] = ACTIONS(7024), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4619), + [anon_sym_RBRACE] = ACTIONS(9108), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7024), - [sym_word] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), + [sym_word] = ACTIONS(866), }, [4584] = { - [sym__concat] = ACTIONS(7026), - [sym_variable_name] = ACTIONS(7026), - [anon_sym_esac] = ACTIONS(7028), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), - [sym__special_characters] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7028), - [anon_sym_DOLLAR] = ACTIONS(7028), - [sym_raw_string] = ACTIONS(7028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), - [anon_sym_BQUOTE] = ACTIONS(7028), - [anon_sym_LT_LPAREN] = ACTIONS(7028), - [anon_sym_GT_LPAREN] = ACTIONS(7028), + [sym__concat] = ACTIONS(3422), + [anon_sym_esac] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_SEMI_SEMI] = ACTIONS(3424), + [anon_sym_PIPE_AMP] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7028), - [sym_word] = ACTIONS(7028), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), }, [4585] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_esac] = ACTIONS(7020), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [sym__special_characters] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7020), - [anon_sym_DOLLAR] = ACTIONS(7020), - [sym_raw_string] = ACTIONS(7020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), - [anon_sym_BQUOTE] = ACTIONS(7020), - [anon_sym_LT_LPAREN] = ACTIONS(7020), - [anon_sym_GT_LPAREN] = ACTIONS(7020), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4621), + [anon_sym_RBRACE] = ACTIONS(9110), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7020), - [sym_word] = ACTIONS(7020), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), + [sym_word] = ACTIONS(866), }, [4586] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_esac] = ACTIONS(7024), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), - [sym__special_characters] = ACTIONS(7024), - [anon_sym_DQUOTE] = ACTIONS(7024), - [anon_sym_DOLLAR] = ACTIONS(7024), - [sym_raw_string] = ACTIONS(7024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), - [anon_sym_BQUOTE] = ACTIONS(7024), - [anon_sym_LT_LPAREN] = ACTIONS(7024), - [anon_sym_GT_LPAREN] = ACTIONS(7024), + [sym__concat] = ACTIONS(7032), + [sym_variable_name] = ACTIONS(7032), + [anon_sym_esac] = ACTIONS(7034), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [sym__special_characters] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [anon_sym_DOLLAR] = ACTIONS(7034), + [sym_raw_string] = ACTIONS(7034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), + [anon_sym_BQUOTE] = ACTIONS(7034), + [anon_sym_LT_LPAREN] = ACTIONS(7034), + [anon_sym_GT_LPAREN] = ACTIONS(7034), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7024), - [sym_word] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7034), + [sym_word] = ACTIONS(7034), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), }, [4587] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_esac] = ACTIONS(7028), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), - [sym__special_characters] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7028), - [anon_sym_DOLLAR] = ACTIONS(7028), - [sym_raw_string] = ACTIONS(7028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), - [anon_sym_BQUOTE] = ACTIONS(7028), - [anon_sym_LT_LPAREN] = ACTIONS(7028), - [anon_sym_GT_LPAREN] = ACTIONS(7028), + [sym__concat] = ACTIONS(7036), + [sym_variable_name] = ACTIONS(7036), + [anon_sym_esac] = ACTIONS(7038), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [sym__special_characters] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7038), + [anon_sym_DOLLAR] = ACTIONS(7038), + [sym_raw_string] = ACTIONS(7038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), + [anon_sym_BQUOTE] = ACTIONS(7038), + [anon_sym_LT_LPAREN] = ACTIONS(7038), + [anon_sym_GT_LPAREN] = ACTIONS(7038), [sym_comment] = ACTIONS(182), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7028), - [sym_word] = ACTIONS(7028), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7038), + [sym_word] = ACTIONS(7038), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), }, [4588] = { - [sym_file_descriptor] = ACTIONS(6025), - [sym__concat] = ACTIONS(6025), - [anon_sym_esac] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), - [anon_sym_LT] = ACTIONS(6027), - [anon_sym_GT] = ACTIONS(6027), - [anon_sym_GT_GT] = ACTIONS(6027), - [anon_sym_AMP_GT] = ACTIONS(6027), - [anon_sym_AMP_GT_GT] = ACTIONS(6027), - [anon_sym_LT_AMP] = ACTIONS(6027), - [anon_sym_GT_AMP] = ACTIONS(6027), - [anon_sym_LT_LT] = ACTIONS(6027), - [anon_sym_LT_LT_DASH] = ACTIONS(6027), - [anon_sym_LT_LT_LT] = ACTIONS(6027), + [sym__concat] = ACTIONS(7040), + [sym_variable_name] = ACTIONS(7040), + [anon_sym_esac] = ACTIONS(7042), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [sym__special_characters] = ACTIONS(7042), + [anon_sym_DQUOTE] = ACTIONS(7042), + [anon_sym_DOLLAR] = ACTIONS(7042), + [sym_raw_string] = ACTIONS(7042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), + [anon_sym_BQUOTE] = ACTIONS(7042), + [anon_sym_LT_LPAREN] = ACTIONS(7042), + [anon_sym_GT_LPAREN] = ACTIONS(7042), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7042), + [sym_word] = ACTIONS(7042), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), }, [4589] = { - [sym_file_descriptor] = ACTIONS(6029), - [sym__concat] = ACTIONS(6029), - [anon_sym_esac] = ACTIONS(6031), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), - [anon_sym_LT] = ACTIONS(6031), - [anon_sym_GT] = ACTIONS(6031), - [anon_sym_GT_GT] = ACTIONS(6031), - [anon_sym_AMP_GT] = ACTIONS(6031), - [anon_sym_AMP_GT_GT] = ACTIONS(6031), - [anon_sym_LT_AMP] = ACTIONS(6031), - [anon_sym_GT_AMP] = ACTIONS(6031), - [anon_sym_LT_LT] = ACTIONS(6031), - [anon_sym_LT_LT_DASH] = ACTIONS(6031), - [anon_sym_LT_LT_LT] = ACTIONS(6031), + [sym__concat] = ACTIONS(7032), + [anon_sym_esac] = ACTIONS(7034), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [sym__special_characters] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [anon_sym_DOLLAR] = ACTIONS(7034), + [sym_raw_string] = ACTIONS(7034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), + [anon_sym_BQUOTE] = ACTIONS(7034), + [anon_sym_LT_LPAREN] = ACTIONS(7034), + [anon_sym_GT_LPAREN] = ACTIONS(7034), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7034), + [sym_word] = ACTIONS(7034), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), }, [4590] = { - [sym_file_descriptor] = ACTIONS(6033), - [sym__concat] = ACTIONS(6033), - [anon_sym_esac] = ACTIONS(6035), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), - [anon_sym_LT] = ACTIONS(6035), - [anon_sym_GT] = ACTIONS(6035), - [anon_sym_GT_GT] = ACTIONS(6035), - [anon_sym_AMP_GT] = ACTIONS(6035), - [anon_sym_AMP_GT_GT] = ACTIONS(6035), - [anon_sym_LT_AMP] = ACTIONS(6035), - [anon_sym_GT_AMP] = ACTIONS(6035), - [anon_sym_LT_LT] = ACTIONS(6035), - [anon_sym_LT_LT_DASH] = ACTIONS(6035), - [anon_sym_LT_LT_LT] = ACTIONS(6035), + [sym__concat] = ACTIONS(7036), + [anon_sym_esac] = ACTIONS(7038), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [sym__special_characters] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7038), + [anon_sym_DOLLAR] = ACTIONS(7038), + [sym_raw_string] = ACTIONS(7038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), + [anon_sym_BQUOTE] = ACTIONS(7038), + [anon_sym_LT_LPAREN] = ACTIONS(7038), + [anon_sym_GT_LPAREN] = ACTIONS(7038), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7038), + [sym_word] = ACTIONS(7038), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), }, [4591] = { - [sym_file_descriptor] = ACTIONS(6037), - [sym__concat] = ACTIONS(6037), - [anon_sym_esac] = ACTIONS(6039), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), - [anon_sym_LT] = ACTIONS(6039), - [anon_sym_GT] = ACTIONS(6039), - [anon_sym_GT_GT] = ACTIONS(6039), - [anon_sym_AMP_GT] = ACTIONS(6039), - [anon_sym_AMP_GT_GT] = ACTIONS(6039), - [anon_sym_LT_AMP] = ACTIONS(6039), - [anon_sym_GT_AMP] = ACTIONS(6039), - [anon_sym_LT_LT] = ACTIONS(6039), - [anon_sym_LT_LT_DASH] = ACTIONS(6039), - [anon_sym_LT_LT_LT] = ACTIONS(6039), + [sym__concat] = ACTIONS(7040), + [anon_sym_esac] = ACTIONS(7042), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [sym__special_characters] = ACTIONS(7042), + [anon_sym_DQUOTE] = ACTIONS(7042), + [anon_sym_DOLLAR] = ACTIONS(7042), + [sym_raw_string] = ACTIONS(7042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), + [anon_sym_BQUOTE] = ACTIONS(7042), + [anon_sym_LT_LPAREN] = ACTIONS(7042), + [anon_sym_GT_LPAREN] = ACTIONS(7042), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(7042), + [sym_word] = ACTIONS(7042), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), }, [4592] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9102), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(6041), + [sym__concat] = ACTIONS(6041), + [anon_sym_esac] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), + [anon_sym_LT] = ACTIONS(6043), + [anon_sym_GT] = ACTIONS(6043), + [anon_sym_GT_GT] = ACTIONS(6043), + [anon_sym_AMP_GT] = ACTIONS(6043), + [anon_sym_AMP_GT_GT] = ACTIONS(6043), + [anon_sym_LT_AMP] = ACTIONS(6043), + [anon_sym_GT_AMP] = ACTIONS(6043), + [anon_sym_LT_LT] = ACTIONS(6043), + [anon_sym_LT_LT_DASH] = ACTIONS(6043), + [anon_sym_LT_LT_LT] = ACTIONS(6043), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), }, [4593] = { - [sym_file_descriptor] = ACTIONS(6043), - [sym__concat] = ACTIONS(6043), - [anon_sym_esac] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), - [anon_sym_LT] = ACTIONS(6045), - [anon_sym_GT] = ACTIONS(6045), - [anon_sym_GT_GT] = ACTIONS(6045), - [anon_sym_AMP_GT] = ACTIONS(6045), - [anon_sym_AMP_GT_GT] = ACTIONS(6045), - [anon_sym_LT_AMP] = ACTIONS(6045), - [anon_sym_GT_AMP] = ACTIONS(6045), - [anon_sym_LT_LT] = ACTIONS(6045), - [anon_sym_LT_LT_DASH] = ACTIONS(6045), - [anon_sym_LT_LT_LT] = ACTIONS(6045), + [sym_file_descriptor] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [anon_sym_esac] = ACTIONS(6047), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), + [anon_sym_LT] = ACTIONS(6047), + [anon_sym_GT] = ACTIONS(6047), + [anon_sym_GT_GT] = ACTIONS(6047), + [anon_sym_AMP_GT] = ACTIONS(6047), + [anon_sym_AMP_GT_GT] = ACTIONS(6047), + [anon_sym_LT_AMP] = ACTIONS(6047), + [anon_sym_GT_AMP] = ACTIONS(6047), + [anon_sym_LT_LT] = ACTIONS(6047), + [anon_sym_LT_LT_DASH] = ACTIONS(6047), + [anon_sym_LT_LT_LT] = ACTIONS(6047), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), }, [4594] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9104), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4595] = { [sym_file_descriptor] = ACTIONS(6049), [sym__concat] = ACTIONS(6049), [anon_sym_esac] = ACTIONS(6051), @@ -111510,60 +111424,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6051), [anon_sym_AMP] = ACTIONS(6051), }, - [4596] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9106), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [4595] = { + [sym_file_descriptor] = ACTIONS(6053), + [sym__concat] = ACTIONS(6053), + [anon_sym_esac] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), + [anon_sym_LT] = ACTIONS(6055), + [anon_sym_GT] = ACTIONS(6055), + [anon_sym_GT_GT] = ACTIONS(6055), + [anon_sym_AMP_GT] = ACTIONS(6055), + [anon_sym_AMP_GT_GT] = ACTIONS(6055), + [anon_sym_LT_AMP] = ACTIONS(6055), + [anon_sym_GT_AMP] = ACTIONS(6055), + [anon_sym_LT_LT] = ACTIONS(6055), + [anon_sym_LT_LT_DASH] = ACTIONS(6055), + [anon_sym_LT_LT_LT] = ACTIONS(6055), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), + }, + [4596] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9112), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4597] = { - [sym_file_descriptor] = ACTIONS(6055), - [sym__concat] = ACTIONS(6055), - [anon_sym_esac] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [anon_sym_LT] = ACTIONS(6057), - [anon_sym_GT] = ACTIONS(6057), - [anon_sym_GT_GT] = ACTIONS(6057), - [anon_sym_AMP_GT] = ACTIONS(6057), - [anon_sym_AMP_GT_GT] = ACTIONS(6057), - [anon_sym_LT_AMP] = ACTIONS(6057), - [anon_sym_GT_AMP] = ACTIONS(6057), - [anon_sym_LT_LT] = ACTIONS(6057), - [anon_sym_LT_LT_DASH] = ACTIONS(6057), - [anon_sym_LT_LT_LT] = ACTIONS(6057), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), - }, - [4598] = { [sym_file_descriptor] = ACTIONS(6059), [sym__concat] = ACTIONS(6059), [anon_sym_esac] = ACTIONS(6061), @@ -111587,216 +111501,259 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6061), [anon_sym_AMP] = ACTIONS(6061), }, - [4599] = { - [sym_file_descriptor] = ACTIONS(7018), - [sym__concat] = ACTIONS(7018), - [sym_variable_name] = ACTIONS(7018), - [anon_sym_esac] = ACTIONS(7020), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_GT] = ACTIONS(7020), - [anon_sym_AMP_GT] = ACTIONS(7020), - [anon_sym_AMP_GT_GT] = ACTIONS(7020), - [anon_sym_LT_AMP] = ACTIONS(7020), - [anon_sym_GT_AMP] = ACTIONS(7020), - [sym__special_characters] = ACTIONS(7020), - [anon_sym_DQUOTE] = ACTIONS(7020), - [anon_sym_DOLLAR] = ACTIONS(7020), - [sym_raw_string] = ACTIONS(7020), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7020), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7020), - [anon_sym_BQUOTE] = ACTIONS(7020), - [anon_sym_LT_LPAREN] = ACTIONS(7020), - [anon_sym_GT_LPAREN] = ACTIONS(7020), + [4598] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9114), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7020), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), + [sym_word] = ACTIONS(866), + }, + [4599] = { + [sym_file_descriptor] = ACTIONS(6065), + [sym__concat] = ACTIONS(6065), + [anon_sym_esac] = ACTIONS(6067), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [anon_sym_LT] = ACTIONS(6067), + [anon_sym_GT] = ACTIONS(6067), + [anon_sym_GT_GT] = ACTIONS(6067), + [anon_sym_AMP_GT] = ACTIONS(6067), + [anon_sym_AMP_GT_GT] = ACTIONS(6067), + [anon_sym_LT_AMP] = ACTIONS(6067), + [anon_sym_GT_AMP] = ACTIONS(6067), + [anon_sym_LT_LT] = ACTIONS(6067), + [anon_sym_LT_LT_DASH] = ACTIONS(6067), + [anon_sym_LT_LT_LT] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), }, [4600] = { - [sym_file_descriptor] = ACTIONS(7022), - [sym__concat] = ACTIONS(7022), - [sym_variable_name] = ACTIONS(7022), - [anon_sym_esac] = ACTIONS(7024), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), - [anon_sym_LT] = ACTIONS(7024), - [anon_sym_GT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_AMP_GT] = ACTIONS(7024), - [anon_sym_AMP_GT_GT] = ACTIONS(7024), - [anon_sym_LT_AMP] = ACTIONS(7024), - [anon_sym_GT_AMP] = ACTIONS(7024), - [sym__special_characters] = ACTIONS(7024), - [anon_sym_DQUOTE] = ACTIONS(7024), - [anon_sym_DOLLAR] = ACTIONS(7024), - [sym_raw_string] = ACTIONS(7024), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7024), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7024), - [anon_sym_BQUOTE] = ACTIONS(7024), - [anon_sym_LT_LPAREN] = ACTIONS(7024), - [anon_sym_GT_LPAREN] = ACTIONS(7024), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9116), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7024), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), + [sym_word] = ACTIONS(866), }, [4601] = { - [sym_file_descriptor] = ACTIONS(7026), - [sym__concat] = ACTIONS(7026), - [sym_variable_name] = ACTIONS(7026), - [anon_sym_esac] = ACTIONS(7028), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), - [anon_sym_LT] = ACTIONS(7028), - [anon_sym_GT] = ACTIONS(7028), - [anon_sym_GT_GT] = ACTIONS(7028), - [anon_sym_AMP_GT] = ACTIONS(7028), - [anon_sym_AMP_GT_GT] = ACTIONS(7028), - [anon_sym_LT_AMP] = ACTIONS(7028), - [anon_sym_GT_AMP] = ACTIONS(7028), - [sym__special_characters] = ACTIONS(7028), - [anon_sym_DQUOTE] = ACTIONS(7028), - [anon_sym_DOLLAR] = ACTIONS(7028), - [sym_raw_string] = ACTIONS(7028), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(7028), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(7028), - [anon_sym_BQUOTE] = ACTIONS(7028), - [anon_sym_LT_LPAREN] = ACTIONS(7028), - [anon_sym_GT_LPAREN] = ACTIONS(7028), + [sym_file_descriptor] = ACTIONS(6071), + [sym__concat] = ACTIONS(6071), + [anon_sym_esac] = ACTIONS(6073), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), + [anon_sym_LT] = ACTIONS(6073), + [anon_sym_GT] = ACTIONS(6073), + [anon_sym_GT_GT] = ACTIONS(6073), + [anon_sym_AMP_GT] = ACTIONS(6073), + [anon_sym_AMP_GT_GT] = ACTIONS(6073), + [anon_sym_LT_AMP] = ACTIONS(6073), + [anon_sym_GT_AMP] = ACTIONS(6073), + [anon_sym_LT_LT] = ACTIONS(6073), + [anon_sym_LT_LT_DASH] = ACTIONS(6073), + [anon_sym_LT_LT_LT] = ACTIONS(6073), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(7028), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), }, [4602] = { - [sym__concat] = ACTIONS(4790), - [anon_sym_esac] = ACTIONS(4792), - [anon_sym_PIPE] = ACTIONS(4792), - [anon_sym_SEMI_SEMI] = ACTIONS(4792), - [anon_sym_PIPE_AMP] = ACTIONS(4792), - [anon_sym_AMP_AMP] = ACTIONS(4792), - [anon_sym_PIPE_PIPE] = ACTIONS(4792), + [sym_file_descriptor] = ACTIONS(6075), + [sym__concat] = ACTIONS(6075), + [anon_sym_esac] = ACTIONS(6077), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [anon_sym_LT] = ACTIONS(6077), + [anon_sym_GT] = ACTIONS(6077), + [anon_sym_GT_GT] = ACTIONS(6077), + [anon_sym_AMP_GT] = ACTIONS(6077), + [anon_sym_AMP_GT_GT] = ACTIONS(6077), + [anon_sym_LT_AMP] = ACTIONS(6077), + [anon_sym_GT_AMP] = ACTIONS(6077), + [anon_sym_LT_LT] = ACTIONS(6077), + [anon_sym_LT_LT_DASH] = ACTIONS(6077), + [anon_sym_LT_LT_LT] = ACTIONS(6077), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4792), - [anon_sym_LF] = ACTIONS(4792), - [anon_sym_AMP] = ACTIONS(4792), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), }, [4603] = { - [sym__concat] = ACTIONS(4796), - [anon_sym_esac] = ACTIONS(4798), - [anon_sym_PIPE] = ACTIONS(4798), - [anon_sym_SEMI_SEMI] = ACTIONS(4798), - [anon_sym_PIPE_AMP] = ACTIONS(4798), - [anon_sym_AMP_AMP] = ACTIONS(4798), - [anon_sym_PIPE_PIPE] = ACTIONS(4798), + [sym_file_descriptor] = ACTIONS(7032), + [sym__concat] = ACTIONS(7032), + [sym_variable_name] = ACTIONS(7032), + [anon_sym_esac] = ACTIONS(7034), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [anon_sym_LT] = ACTIONS(7034), + [anon_sym_GT] = ACTIONS(7034), + [anon_sym_GT_GT] = ACTIONS(7034), + [anon_sym_AMP_GT] = ACTIONS(7034), + [anon_sym_AMP_GT_GT] = ACTIONS(7034), + [anon_sym_LT_AMP] = ACTIONS(7034), + [anon_sym_GT_AMP] = ACTIONS(7034), + [sym__special_characters] = ACTIONS(7034), + [anon_sym_DQUOTE] = ACTIONS(7034), + [anon_sym_DOLLAR] = ACTIONS(7034), + [sym_raw_string] = ACTIONS(7034), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7034), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7034), + [anon_sym_BQUOTE] = ACTIONS(7034), + [anon_sym_LT_LPAREN] = ACTIONS(7034), + [anon_sym_GT_LPAREN] = ACTIONS(7034), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4798), - [anon_sym_LF] = ACTIONS(4798), - [anon_sym_AMP] = ACTIONS(4798), + [sym_word] = ACTIONS(7034), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), }, [4604] = { - [sym__concat] = ACTIONS(4859), - [anon_sym_esac] = ACTIONS(4861), - [anon_sym_PIPE] = ACTIONS(4861), - [anon_sym_SEMI_SEMI] = ACTIONS(4861), - [anon_sym_PIPE_AMP] = ACTIONS(4861), - [anon_sym_AMP_AMP] = ACTIONS(4861), - [anon_sym_PIPE_PIPE] = ACTIONS(4861), + [sym_file_descriptor] = ACTIONS(7036), + [sym__concat] = ACTIONS(7036), + [sym_variable_name] = ACTIONS(7036), + [anon_sym_esac] = ACTIONS(7038), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [anon_sym_LT] = ACTIONS(7038), + [anon_sym_GT] = ACTIONS(7038), + [anon_sym_GT_GT] = ACTIONS(7038), + [anon_sym_AMP_GT] = ACTIONS(7038), + [anon_sym_AMP_GT_GT] = ACTIONS(7038), + [anon_sym_LT_AMP] = ACTIONS(7038), + [anon_sym_GT_AMP] = ACTIONS(7038), + [sym__special_characters] = ACTIONS(7038), + [anon_sym_DQUOTE] = ACTIONS(7038), + [anon_sym_DOLLAR] = ACTIONS(7038), + [sym_raw_string] = ACTIONS(7038), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7038), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7038), + [anon_sym_BQUOTE] = ACTIONS(7038), + [anon_sym_LT_LPAREN] = ACTIONS(7038), + [anon_sym_GT_LPAREN] = ACTIONS(7038), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4861), - [anon_sym_LF] = ACTIONS(4861), - [anon_sym_AMP] = ACTIONS(4861), + [sym_word] = ACTIONS(7038), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), }, [4605] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9108), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_file_descriptor] = ACTIONS(7040), + [sym__concat] = ACTIONS(7040), + [sym_variable_name] = ACTIONS(7040), + [anon_sym_esac] = ACTIONS(7042), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [anon_sym_LT] = ACTIONS(7042), + [anon_sym_GT] = ACTIONS(7042), + [anon_sym_GT_GT] = ACTIONS(7042), + [anon_sym_AMP_GT] = ACTIONS(7042), + [anon_sym_AMP_GT_GT] = ACTIONS(7042), + [anon_sym_LT_AMP] = ACTIONS(7042), + [anon_sym_GT_AMP] = ACTIONS(7042), + [sym__special_characters] = ACTIONS(7042), + [anon_sym_DQUOTE] = ACTIONS(7042), + [anon_sym_DOLLAR] = ACTIONS(7042), + [sym_raw_string] = ACTIONS(7042), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(7042), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(7042), + [anon_sym_BQUOTE] = ACTIONS(7042), + [anon_sym_LT_LPAREN] = ACTIONS(7042), + [anon_sym_GT_LPAREN] = ACTIONS(7042), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(7042), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), }, [4606] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(9110), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(4802), + [anon_sym_esac] = ACTIONS(4804), + [anon_sym_PIPE] = ACTIONS(4804), + [anon_sym_SEMI_SEMI] = ACTIONS(4804), + [anon_sym_PIPE_AMP] = ACTIONS(4804), + [anon_sym_AMP_AMP] = ACTIONS(4804), + [anon_sym_PIPE_PIPE] = ACTIONS(4804), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4804), + [anon_sym_LF] = ACTIONS(4804), + [anon_sym_AMP] = ACTIONS(4804), }, [4607] = { - [aux_sym_concatenation_repeat1] = STATE(1594), - [sym__concat] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(9112), - [sym_comment] = ACTIONS(56), + [sym__concat] = ACTIONS(4808), + [anon_sym_esac] = ACTIONS(4810), + [anon_sym_PIPE] = ACTIONS(4810), + [anon_sym_SEMI_SEMI] = ACTIONS(4810), + [anon_sym_PIPE_AMP] = ACTIONS(4810), + [anon_sym_AMP_AMP] = ACTIONS(4810), + [anon_sym_PIPE_PIPE] = ACTIONS(4810), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(4810), + [anon_sym_LF] = ACTIONS(4810), + [anon_sym_AMP] = ACTIONS(4810), }, [4608] = { - [anon_sym_RBRACE] = ACTIONS(9112), - [sym_comment] = ACTIONS(56), - }, - [4609] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4625), - [anon_sym_RBRACE] = ACTIONS(9114), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4610] = { [sym__concat] = ACTIONS(4871), [anon_sym_esac] = ACTIONS(4873), [anon_sym_PIPE] = ACTIONS(4873), @@ -111809,76 +111766,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(4873), [anon_sym_AMP] = ACTIONS(4873), }, - [4611] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(4627), - [anon_sym_RBRACE] = ACTIONS(9116), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [4609] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9118), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), + }, + [4610] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(9120), + [sym_comment] = ACTIONS(56), + }, + [4611] = { + [aux_sym_concatenation_repeat1] = STATE(1600), + [sym__concat] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(9122), + [sym_comment] = ACTIONS(56), }, [4612] = { - [sym__concat] = ACTIONS(4877), - [anon_sym_esac] = ACTIONS(4879), - [anon_sym_PIPE] = ACTIONS(4879), - [anon_sym_SEMI_SEMI] = ACTIONS(4879), - [anon_sym_PIPE_AMP] = ACTIONS(4879), - [anon_sym_AMP_AMP] = ACTIONS(4879), - [anon_sym_PIPE_PIPE] = ACTIONS(4879), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(4879), - [anon_sym_LF] = ACTIONS(4879), - [anon_sym_AMP] = ACTIONS(4879), + [anon_sym_RBRACE] = ACTIONS(9122), + [sym_comment] = ACTIONS(56), }, [4613] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), [aux_sym_expansion_repeat1] = STATE(4629), - [anon_sym_RBRACE] = ACTIONS(9118), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [anon_sym_RBRACE] = ACTIONS(9124), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4614] = { [sym__concat] = ACTIONS(4883), @@ -111894,33 +111854,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4885), }, [4615] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9120), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4631), + [anon_sym_RBRACE] = ACTIONS(9126), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4616] = { [sym__concat] = ACTIONS(4889), @@ -111936,230 +111896,217 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4891), }, [4617] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9122), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(4633), + [anon_sym_RBRACE] = ACTIONS(9128), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [sym_word] = ACTIONS(866), }, [4618] = { - [sym_file_descriptor] = ACTIONS(7018), - [sym__concat] = ACTIONS(7018), - [anon_sym_esac] = ACTIONS(7020), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), - [anon_sym_LT] = ACTIONS(7020), - [anon_sym_GT] = ACTIONS(7020), - [anon_sym_GT_GT] = ACTIONS(7020), - [anon_sym_AMP_GT] = ACTIONS(7020), - [anon_sym_AMP_GT_GT] = ACTIONS(7020), - [anon_sym_LT_AMP] = ACTIONS(7020), - [anon_sym_GT_AMP] = ACTIONS(7020), - [anon_sym_LT_LT] = ACTIONS(7020), - [anon_sym_LT_LT_DASH] = ACTIONS(7020), - [anon_sym_LT_LT_LT] = ACTIONS(7020), + [sym__concat] = ACTIONS(4895), + [anon_sym_esac] = ACTIONS(4897), + [anon_sym_PIPE] = ACTIONS(4897), + [anon_sym_SEMI_SEMI] = ACTIONS(4897), + [anon_sym_PIPE_AMP] = ACTIONS(4897), + [anon_sym_AMP_AMP] = ACTIONS(4897), + [anon_sym_PIPE_PIPE] = ACTIONS(4897), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), + [anon_sym_SEMI] = ACTIONS(4897), + [anon_sym_LF] = ACTIONS(4897), + [anon_sym_AMP] = ACTIONS(4897), }, [4619] = { - [sym_file_descriptor] = ACTIONS(7022), - [sym__concat] = ACTIONS(7022), - [anon_sym_esac] = ACTIONS(7024), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), - [anon_sym_LT] = ACTIONS(7024), - [anon_sym_GT] = ACTIONS(7024), - [anon_sym_GT_GT] = ACTIONS(7024), - [anon_sym_AMP_GT] = ACTIONS(7024), - [anon_sym_AMP_GT_GT] = ACTIONS(7024), - [anon_sym_LT_AMP] = ACTIONS(7024), - [anon_sym_GT_AMP] = ACTIONS(7024), - [anon_sym_LT_LT] = ACTIONS(7024), - [anon_sym_LT_LT_DASH] = ACTIONS(7024), - [anon_sym_LT_LT_LT] = ACTIONS(7024), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9130), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), + [sym_word] = ACTIONS(866), }, [4620] = { - [sym_file_descriptor] = ACTIONS(7026), - [sym__concat] = ACTIONS(7026), - [anon_sym_esac] = ACTIONS(7028), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), - [anon_sym_LT] = ACTIONS(7028), - [anon_sym_GT] = ACTIONS(7028), - [anon_sym_GT_GT] = ACTIONS(7028), - [anon_sym_AMP_GT] = ACTIONS(7028), - [anon_sym_AMP_GT_GT] = ACTIONS(7028), - [anon_sym_LT_AMP] = ACTIONS(7028), - [anon_sym_GT_AMP] = ACTIONS(7028), - [anon_sym_LT_LT] = ACTIONS(7028), - [anon_sym_LT_LT_DASH] = ACTIONS(7028), - [anon_sym_LT_LT_LT] = ACTIONS(7028), + [sym__concat] = ACTIONS(4901), + [anon_sym_esac] = ACTIONS(4903), + [anon_sym_PIPE] = ACTIONS(4903), + [anon_sym_SEMI_SEMI] = ACTIONS(4903), + [anon_sym_PIPE_AMP] = ACTIONS(4903), + [anon_sym_AMP_AMP] = ACTIONS(4903), + [anon_sym_PIPE_PIPE] = ACTIONS(4903), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(4903), + [anon_sym_LF] = ACTIONS(4903), + [anon_sym_AMP] = ACTIONS(4903), }, [4621] = { - [sym__concat] = ACTIONS(6025), - [anon_sym_esac] = ACTIONS(6027), - [anon_sym_PIPE] = ACTIONS(6027), - [anon_sym_SEMI_SEMI] = ACTIONS(6027), - [anon_sym_PIPE_AMP] = ACTIONS(6027), - [anon_sym_AMP_AMP] = ACTIONS(6027), - [anon_sym_PIPE_PIPE] = ACTIONS(6027), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9132), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6027), - [anon_sym_LF] = ACTIONS(6027), - [anon_sym_AMP] = ACTIONS(6027), + [sym_word] = ACTIONS(866), }, [4622] = { - [sym__concat] = ACTIONS(6029), - [anon_sym_esac] = ACTIONS(6031), - [anon_sym_PIPE] = ACTIONS(6031), - [anon_sym_SEMI_SEMI] = ACTIONS(6031), - [anon_sym_PIPE_AMP] = ACTIONS(6031), - [anon_sym_AMP_AMP] = ACTIONS(6031), - [anon_sym_PIPE_PIPE] = ACTIONS(6031), + [sym_file_descriptor] = ACTIONS(7032), + [sym__concat] = ACTIONS(7032), + [anon_sym_esac] = ACTIONS(7034), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [anon_sym_LT] = ACTIONS(7034), + [anon_sym_GT] = ACTIONS(7034), + [anon_sym_GT_GT] = ACTIONS(7034), + [anon_sym_AMP_GT] = ACTIONS(7034), + [anon_sym_AMP_GT_GT] = ACTIONS(7034), + [anon_sym_LT_AMP] = ACTIONS(7034), + [anon_sym_GT_AMP] = ACTIONS(7034), + [anon_sym_LT_LT] = ACTIONS(7034), + [anon_sym_LT_LT_DASH] = ACTIONS(7034), + [anon_sym_LT_LT_LT] = ACTIONS(7034), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6031), - [anon_sym_LF] = ACTIONS(6031), - [anon_sym_AMP] = ACTIONS(6031), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), }, [4623] = { - [sym__concat] = ACTIONS(6033), - [anon_sym_esac] = ACTIONS(6035), - [anon_sym_PIPE] = ACTIONS(6035), - [anon_sym_SEMI_SEMI] = ACTIONS(6035), - [anon_sym_PIPE_AMP] = ACTIONS(6035), - [anon_sym_AMP_AMP] = ACTIONS(6035), - [anon_sym_PIPE_PIPE] = ACTIONS(6035), + [sym_file_descriptor] = ACTIONS(7036), + [sym__concat] = ACTIONS(7036), + [anon_sym_esac] = ACTIONS(7038), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [anon_sym_LT] = ACTIONS(7038), + [anon_sym_GT] = ACTIONS(7038), + [anon_sym_GT_GT] = ACTIONS(7038), + [anon_sym_AMP_GT] = ACTIONS(7038), + [anon_sym_AMP_GT_GT] = ACTIONS(7038), + [anon_sym_LT_AMP] = ACTIONS(7038), + [anon_sym_GT_AMP] = ACTIONS(7038), + [anon_sym_LT_LT] = ACTIONS(7038), + [anon_sym_LT_LT_DASH] = ACTIONS(7038), + [anon_sym_LT_LT_LT] = ACTIONS(7038), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6035), - [anon_sym_LF] = ACTIONS(6035), - [anon_sym_AMP] = ACTIONS(6035), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), }, [4624] = { - [sym__concat] = ACTIONS(6037), - [anon_sym_esac] = ACTIONS(6039), - [anon_sym_PIPE] = ACTIONS(6039), - [anon_sym_SEMI_SEMI] = ACTIONS(6039), - [anon_sym_PIPE_AMP] = ACTIONS(6039), - [anon_sym_AMP_AMP] = ACTIONS(6039), - [anon_sym_PIPE_PIPE] = ACTIONS(6039), + [sym_file_descriptor] = ACTIONS(7040), + [sym__concat] = ACTIONS(7040), + [anon_sym_esac] = ACTIONS(7042), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [anon_sym_LT] = ACTIONS(7042), + [anon_sym_GT] = ACTIONS(7042), + [anon_sym_GT_GT] = ACTIONS(7042), + [anon_sym_AMP_GT] = ACTIONS(7042), + [anon_sym_AMP_GT_GT] = ACTIONS(7042), + [anon_sym_LT_AMP] = ACTIONS(7042), + [anon_sym_GT_AMP] = ACTIONS(7042), + [anon_sym_LT_LT] = ACTIONS(7042), + [anon_sym_LT_LT_DASH] = ACTIONS(7042), + [anon_sym_LT_LT_LT] = ACTIONS(7042), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6039), - [anon_sym_LF] = ACTIONS(6039), - [anon_sym_AMP] = ACTIONS(6039), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), }, [4625] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9124), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [sym__concat] = ACTIONS(6041), + [anon_sym_esac] = ACTIONS(6043), + [anon_sym_PIPE] = ACTIONS(6043), + [anon_sym_SEMI_SEMI] = ACTIONS(6043), + [anon_sym_PIPE_AMP] = ACTIONS(6043), + [anon_sym_AMP_AMP] = ACTIONS(6043), + [anon_sym_PIPE_PIPE] = ACTIONS(6043), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_LF] = ACTIONS(6043), + [anon_sym_AMP] = ACTIONS(6043), }, [4626] = { - [sym__concat] = ACTIONS(6043), - [anon_sym_esac] = ACTIONS(6045), - [anon_sym_PIPE] = ACTIONS(6045), - [anon_sym_SEMI_SEMI] = ACTIONS(6045), - [anon_sym_PIPE_AMP] = ACTIONS(6045), - [anon_sym_AMP_AMP] = ACTIONS(6045), - [anon_sym_PIPE_PIPE] = ACTIONS(6045), + [sym__concat] = ACTIONS(6045), + [anon_sym_esac] = ACTIONS(6047), + [anon_sym_PIPE] = ACTIONS(6047), + [anon_sym_SEMI_SEMI] = ACTIONS(6047), + [anon_sym_PIPE_AMP] = ACTIONS(6047), + [anon_sym_AMP_AMP] = ACTIONS(6047), + [anon_sym_PIPE_PIPE] = ACTIONS(6047), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6045), - [anon_sym_LF] = ACTIONS(6045), - [anon_sym_AMP] = ACTIONS(6045), + [anon_sym_SEMI] = ACTIONS(6047), + [anon_sym_LF] = ACTIONS(6047), + [anon_sym_AMP] = ACTIONS(6047), }, [4627] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9126), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), - [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), - }, - [4628] = { [sym__concat] = ACTIONS(6049), [anon_sym_esac] = ACTIONS(6051), [anon_sym_PIPE] = ACTIONS(6051), @@ -112172,49 +112119,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6051), [anon_sym_AMP] = ACTIONS(6051), }, - [4629] = { - [sym_concatenation] = STATE(451), - [sym_string] = STATE(455), - [sym_simple_expansion] = STATE(455), - [sym_string_expansion] = STATE(455), - [sym_expansion] = STATE(455), - [sym_command_substitution] = STATE(455), - [sym_process_substitution] = STATE(455), - [aux_sym_expansion_repeat1] = STATE(979), - [anon_sym_RBRACE] = ACTIONS(9128), - [anon_sym_EQ] = ACTIONS(842), - [sym__special_characters] = ACTIONS(844), - [anon_sym_DQUOTE] = ACTIONS(846), - [anon_sym_DOLLAR] = ACTIONS(848), - [sym_raw_string] = ACTIONS(850), - [anon_sym_POUND] = ACTIONS(852), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(854), - [anon_sym_COLON] = ACTIONS(842), - [anon_sym_COLON_QMARK] = ACTIONS(842), - [anon_sym_COLON_DASH] = ACTIONS(842), - [anon_sym_PERCENT] = ACTIONS(842), - [anon_sym_DASH] = ACTIONS(842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(858), - [anon_sym_BQUOTE] = ACTIONS(860), - [anon_sym_LT_LPAREN] = ACTIONS(862), - [anon_sym_GT_LPAREN] = ACTIONS(862), + [4628] = { + [sym__concat] = ACTIONS(6053), + [anon_sym_esac] = ACTIONS(6055), + [anon_sym_PIPE] = ACTIONS(6055), + [anon_sym_SEMI_SEMI] = ACTIONS(6055), + [anon_sym_PIPE_AMP] = ACTIONS(6055), + [anon_sym_AMP_AMP] = ACTIONS(6055), + [anon_sym_PIPE_PIPE] = ACTIONS(6055), [sym_comment] = ACTIONS(182), - [sym_word] = ACTIONS(864), + [anon_sym_SEMI] = ACTIONS(6055), + [anon_sym_LF] = ACTIONS(6055), + [anon_sym_AMP] = ACTIONS(6055), + }, + [4629] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9134), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), + [sym_comment] = ACTIONS(182), + [sym_word] = ACTIONS(866), }, [4630] = { - [sym__concat] = ACTIONS(6055), - [anon_sym_esac] = ACTIONS(6057), - [anon_sym_PIPE] = ACTIONS(6057), - [anon_sym_SEMI_SEMI] = ACTIONS(6057), - [anon_sym_PIPE_AMP] = ACTIONS(6057), - [anon_sym_AMP_AMP] = ACTIONS(6057), - [anon_sym_PIPE_PIPE] = ACTIONS(6057), - [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(6057), - [anon_sym_LF] = ACTIONS(6057), - [anon_sym_AMP] = ACTIONS(6057), - }, - [4631] = { [sym__concat] = ACTIONS(6059), [anon_sym_esac] = ACTIONS(6061), [anon_sym_PIPE] = ACTIONS(6061), @@ -112227,44 +112174,141 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LF] = ACTIONS(6061), [anon_sym_AMP] = ACTIONS(6061), }, - [4632] = { - [sym__concat] = ACTIONS(7018), - [anon_sym_esac] = ACTIONS(7020), - [anon_sym_PIPE] = ACTIONS(7020), - [anon_sym_SEMI_SEMI] = ACTIONS(7020), - [anon_sym_PIPE_AMP] = ACTIONS(7020), - [anon_sym_AMP_AMP] = ACTIONS(7020), - [anon_sym_PIPE_PIPE] = ACTIONS(7020), + [4631] = { + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9136), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7020), - [anon_sym_LF] = ACTIONS(7020), - [anon_sym_AMP] = ACTIONS(7020), + [sym_word] = ACTIONS(866), + }, + [4632] = { + [sym__concat] = ACTIONS(6065), + [anon_sym_esac] = ACTIONS(6067), + [anon_sym_PIPE] = ACTIONS(6067), + [anon_sym_SEMI_SEMI] = ACTIONS(6067), + [anon_sym_PIPE_AMP] = ACTIONS(6067), + [anon_sym_AMP_AMP] = ACTIONS(6067), + [anon_sym_PIPE_PIPE] = ACTIONS(6067), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6067), + [anon_sym_LF] = ACTIONS(6067), + [anon_sym_AMP] = ACTIONS(6067), }, [4633] = { - [sym__concat] = ACTIONS(7022), - [anon_sym_esac] = ACTIONS(7024), - [anon_sym_PIPE] = ACTIONS(7024), - [anon_sym_SEMI_SEMI] = ACTIONS(7024), - [anon_sym_PIPE_AMP] = ACTIONS(7024), - [anon_sym_AMP_AMP] = ACTIONS(7024), - [anon_sym_PIPE_PIPE] = ACTIONS(7024), + [sym_concatenation] = STATE(452), + [sym_string] = STATE(456), + [sym_simple_expansion] = STATE(456), + [sym_string_expansion] = STATE(456), + [sym_expansion] = STATE(456), + [sym_command_substitution] = STATE(456), + [sym_process_substitution] = STATE(456), + [aux_sym_expansion_repeat1] = STATE(982), + [anon_sym_RBRACE] = ACTIONS(9138), + [anon_sym_EQ] = ACTIONS(844), + [sym__special_characters] = ACTIONS(846), + [anon_sym_DQUOTE] = ACTIONS(848), + [anon_sym_DOLLAR] = ACTIONS(850), + [sym_raw_string] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(856), + [anon_sym_COLON] = ACTIONS(844), + [anon_sym_COLON_QMARK] = ACTIONS(844), + [anon_sym_COLON_DASH] = ACTIONS(844), + [anon_sym_PERCENT] = ACTIONS(844), + [anon_sym_DASH] = ACTIONS(844), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(860), + [anon_sym_BQUOTE] = ACTIONS(862), + [anon_sym_LT_LPAREN] = ACTIONS(864), + [anon_sym_GT_LPAREN] = ACTIONS(864), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7024), - [anon_sym_LF] = ACTIONS(7024), - [anon_sym_AMP] = ACTIONS(7024), + [sym_word] = ACTIONS(866), }, [4634] = { - [sym__concat] = ACTIONS(7026), - [anon_sym_esac] = ACTIONS(7028), - [anon_sym_PIPE] = ACTIONS(7028), - [anon_sym_SEMI_SEMI] = ACTIONS(7028), - [anon_sym_PIPE_AMP] = ACTIONS(7028), - [anon_sym_AMP_AMP] = ACTIONS(7028), - [anon_sym_PIPE_PIPE] = ACTIONS(7028), + [sym__concat] = ACTIONS(6071), + [anon_sym_esac] = ACTIONS(6073), + [anon_sym_PIPE] = ACTIONS(6073), + [anon_sym_SEMI_SEMI] = ACTIONS(6073), + [anon_sym_PIPE_AMP] = ACTIONS(6073), + [anon_sym_AMP_AMP] = ACTIONS(6073), + [anon_sym_PIPE_PIPE] = ACTIONS(6073), [sym_comment] = ACTIONS(182), - [anon_sym_SEMI] = ACTIONS(7028), - [anon_sym_LF] = ACTIONS(7028), - [anon_sym_AMP] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_LF] = ACTIONS(6073), + [anon_sym_AMP] = ACTIONS(6073), + }, + [4635] = { + [sym__concat] = ACTIONS(6075), + [anon_sym_esac] = ACTIONS(6077), + [anon_sym_PIPE] = ACTIONS(6077), + [anon_sym_SEMI_SEMI] = ACTIONS(6077), + [anon_sym_PIPE_AMP] = ACTIONS(6077), + [anon_sym_AMP_AMP] = ACTIONS(6077), + [anon_sym_PIPE_PIPE] = ACTIONS(6077), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(6077), + [anon_sym_LF] = ACTIONS(6077), + [anon_sym_AMP] = ACTIONS(6077), + }, + [4636] = { + [sym__concat] = ACTIONS(7032), + [anon_sym_esac] = ACTIONS(7034), + [anon_sym_PIPE] = ACTIONS(7034), + [anon_sym_SEMI_SEMI] = ACTIONS(7034), + [anon_sym_PIPE_AMP] = ACTIONS(7034), + [anon_sym_AMP_AMP] = ACTIONS(7034), + [anon_sym_PIPE_PIPE] = ACTIONS(7034), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7034), + [anon_sym_LF] = ACTIONS(7034), + [anon_sym_AMP] = ACTIONS(7034), + }, + [4637] = { + [sym__concat] = ACTIONS(7036), + [anon_sym_esac] = ACTIONS(7038), + [anon_sym_PIPE] = ACTIONS(7038), + [anon_sym_SEMI_SEMI] = ACTIONS(7038), + [anon_sym_PIPE_AMP] = ACTIONS(7038), + [anon_sym_AMP_AMP] = ACTIONS(7038), + [anon_sym_PIPE_PIPE] = ACTIONS(7038), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7038), + [anon_sym_LF] = ACTIONS(7038), + [anon_sym_AMP] = ACTIONS(7038), + }, + [4638] = { + [sym__concat] = ACTIONS(7040), + [anon_sym_esac] = ACTIONS(7042), + [anon_sym_PIPE] = ACTIONS(7042), + [anon_sym_SEMI_SEMI] = ACTIONS(7042), + [anon_sym_PIPE_AMP] = ACTIONS(7042), + [anon_sym_AMP_AMP] = ACTIONS(7042), + [anon_sym_PIPE_PIPE] = ACTIONS(7042), + [sym_comment] = ACTIONS(182), + [anon_sym_SEMI] = ACTIONS(7042), + [anon_sym_LF] = ACTIONS(7042), + [anon_sym_AMP] = ACTIONS(7042), }, }; @@ -112491,31 +112535,31 @@ static TSParseActionEntry ts_parse_actions[] = { [438] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(233), [440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), [442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_variable_assignment, 2), - [444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(238), - [446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(239), - [448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(241), - [450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(242), + [444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(238), + [446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(239), + [448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(240), + [450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(242), [452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(243), - [454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(244), + [454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(244), [456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(245), - [458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(247), - [460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(249), + [458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(246), + [460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(248), [462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(250), - [464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(251), - [466] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(249), - [468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(252), + [464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(251), + [466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(252), + [468] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(250), [470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(253), - [472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(254), + [472] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(254), [474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), [476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(256), - [478] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(257), - [480] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(255), - [482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(265), + [478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(257), + [480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(258), + [482] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(256), [484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(266), - [486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(268), - [488] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(270), - [490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273), - [492] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(274), + [486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(267), + [488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(269), + [490] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(271), + [492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(274), [494] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(275), [496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(276), [498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(277), @@ -112523,7 +112567,7 @@ static TSParseActionEntry ts_parse_actions[] = { [502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(279), [504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(280), [506] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(281), - [508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(284), + [508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(282), [510] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(285), [512] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(286), [514] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(287), @@ -112531,3092 +112575,3092 @@ static TSParseActionEntry ts_parse_actions[] = { [518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(289), [520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(290), [522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(291), - [524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(293), - [526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(295), - [528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(297), + [524] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(292), + [526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(294), + [528] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(296), [530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), - [532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(299), - [534] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(297), - [536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(300), + [532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), + [534] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(300), + [536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(298), [538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(301), [540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(302), - [542] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(303), - [544] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(301), - [546] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(311), + [542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(303), + [544] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(304), + [546] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(302), [548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(312), [550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(313), [552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(314), [554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(315), - [556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(316), - [558] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(317), + [556] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(316), + [558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(317), [560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(318), [562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(319), [564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(320), - [566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(61), - [568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(62), - [570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(321), - [572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(64), - [574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(65), - [576] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(66), - [578] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(67), - [580] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(60), - [582] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(63), - [584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(328), - [586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(77), - [588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(78), - [590] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(329), - [592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(80), - [594] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(81), - [596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(82), - [598] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(83), - [600] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(330), - [602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(331), - [604] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [608] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), - [610] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(333), - [612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), + [566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(321), + [568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(61), + [570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(62), + [572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(322), + [574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(64), + [576] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(65), + [578] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(66), + [580] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(67), + [582] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(60), + [584] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(63), + [586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(329), + [588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(77), + [590] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(78), + [592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(330), + [594] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(80), + [596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(81), + [598] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(82), + [600] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(83), + [602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(331), + [604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(332), + [606] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [610] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1, .alias_sequence_id = 1), + [612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(334), [614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(336), - [616] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(337), - [618] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(335), - [620] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), - [622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), - [624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), - [626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(338), + [616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(337), + [618] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(338), + [620] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(336), + [622] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), + [624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), + [626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), [628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(339), [630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(340), - [632] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(341), - [634] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(339), - [636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(349), - [638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(76), - [640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(351), - [642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(88), - [644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(89), - [646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(352), - [648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(91), - [650] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(92), - [652] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(93), - [654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(94), - [656] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(353), - [658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(354), - [660] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(356), - [662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(358), + [632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), + [634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(342), + [636] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(340), + [638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(350), + [640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(76), + [642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(352), + [644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(88), + [646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(89), + [648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(353), + [650] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(91), + [652] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(92), + [654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(93), + [656] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(94), + [658] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(354), + [660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(355), + [662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(357), [664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(359), - [666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(360), - [668] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(358), - [670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), + [666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(360), + [668] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(361), + [670] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(359), [672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(362), [674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(363), - [676] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(364), - [678] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(362), - [680] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(87), - [682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(373), - [684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(375), - [686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [688] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [690] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(377), - [692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(99), - [694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(379), + [676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(364), + [678] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(365), + [680] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(363), + [682] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(87), + [684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(374), + [686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(376), + [688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [690] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), + [692] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(378), + [694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(99), [696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(380), - [698] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(381), - [700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(379), - [702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [704] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(382), + [698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(381), + [700] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(382), + [702] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(380), + [704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [706] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1), [708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(383), [710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(384), - [712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(385), - [714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(383), - [716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [718] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [720] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), - [722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(394), - [724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(396), - [728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(111), - [730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(398), + [712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(385), + [714] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(386), + [716] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(384), + [718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [720] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [722] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), + [724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(395), + [726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [728] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(397), + [730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(111), [732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(399), - [734] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(400), - [736] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(398), - [738] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1), - [740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(401), + [734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(400), + [736] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(401), + [738] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(399), + [740] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1), [742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(402), [744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(403), - [746] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(404), - [748] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(402), - [750] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), - [752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 2), - [754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(413), - [758] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [760] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(415), - [762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(417), + [746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(404), + [748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(405), + [750] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(403), + [752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 2), + [756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(414), + [760] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), + [762] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(416), [764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(418), - [766] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(419), - [768] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(417), - [770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [772] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2), - [774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(420), + [766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(419), + [768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(420), + [770] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(418), + [772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), + [774] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2), [776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(421), [778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(422), - [780] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(423), - [782] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(421), - [784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(431), - [786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(431), - [788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), - [790] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), - [792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 2), - [794] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 2), - [796] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(433), + [780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(423), + [782] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(424), + [784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(422), + [786] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(432), + [788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(432), + [790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), + [792] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_concatenation, 2), + [794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 2), + [796] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 2), [798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(434), - [800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), - [802] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(435), - [804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(433), - [806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436), - [808] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 1), - [810] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 1), - [812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), + [800] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(435), + [802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(434), + [804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(436), + [806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(434), + [808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), + [810] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 1), + [812] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 1), [814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(438), [816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(439), - [818] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(440), - [820] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(438), - [822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(446), - [824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [826] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string_expansion, 2), - [830] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string_expansion, 2), - [832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), - [834] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), - [836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(448), + [818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(440), + [820] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(441), + [822] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(439), + [824] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(447), + [826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [828] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string_expansion, 2), + [832] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string_expansion, 2), + [834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [836] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), [838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(449), [840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(450), - [842] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(451), - [844] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(452), - [846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(453), - [848] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(454), - [850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(455), - [852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(451), - [854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(456), + [842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(451), + [844] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(452), + [846] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(453), + [848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(454), + [850] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(455), + [852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(456), + [854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(452), [856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), [858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), [860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(459), [862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(460), - [864] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(455), - [866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(462), + [864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(461), + [866] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(456), [868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(463), - [870] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(464), - [872] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(463), - [874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(466), + [870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(464), + [872] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(465), + [874] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(464), [876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(467), - [878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(469), + [878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(468), [880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(470), - [882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(472), - [884] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(474), - [886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(477), - [888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(478), - [890] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(478), - [892] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(480), - [894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(486), - [896] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 1), - [898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), - [900] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(487), - [902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(488), - [904] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(489), - [906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(490), + [882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(471), + [884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(473), + [886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(475), + [888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(478), + [890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(479), + [892] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(479), + [894] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(481), + [896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), + [898] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 1), + [900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 1), + [902] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(488), + [904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(489), + [906] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(490), [908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(491), [910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(492), [912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(493), [914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), - [916] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(495), - [918] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(490), - [920] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_unset_command, 1), - [922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 1), - [924] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(499), - [926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(500), - [928] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(501), - [930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(502), + [916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(495), + [918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(496), + [920] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(491), + [922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_unset_command, 1), + [924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 1), + [926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(500), + [928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(501), + [930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(502), [932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(503), [934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(504), [936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(505), [938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(506), - [940] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(507), - [942] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(502), - [944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(510), - [946] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), - [948] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(512), - [950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(514), + [940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(507), + [942] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(508), + [944] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(503), + [946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511), + [948] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1, .alias_sequence_id = 1), + [950] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(513), [952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(515), - [954] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(516), - [956] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(514), - [958] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1), - [960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(517), + [954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(516), + [956] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(517), + [958] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(515), + [960] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_name, 1), [962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(518), [964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(519), - [966] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(520), - [968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(518), - [970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(528), - [972] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(529), - [974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530), - [976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), - [978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), + [966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(520), + [968] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(521), + [970] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(519), + [972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), + [974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(530), + [976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), + [978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530), [980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(532), - [982] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 1), - [984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 1), - [986] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(533), + [982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(533), + [984] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 1), + [986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 1), [988] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(534), - [990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(534), - [992] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(535), - [994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), + [990] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(535), + [992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), + [994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(536), [996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(536), - [998] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(537), - [1000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(538), - [1002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(538), - [1004] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(158), - [1006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(161), - [1008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(544), - [1010] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(546), - [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(549), - [1014] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(550), - [1016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(551), - [1018] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(552), - [1020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(553), + [998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(537), + [1000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(538), + [1002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(539), + [1004] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(539), + [1006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(158), + [1008] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(161), + [1010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(545), + [1012] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(547), + [1014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), + [1016] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(551), + [1018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(552), + [1020] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(553), [1022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(554), [1024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(555), - [1026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(557), - [1028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(553), - [1030] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(560), - [1032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(561), - [1034] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(562), - [1036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(563), + [1026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(556), + [1028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(558), + [1030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(554), + [1032] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(561), + [1034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(562), + [1036] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(563), [1038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), [1040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565), - [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), - [1044] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(563), - [1046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(569), - [1048] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(571), - [1050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(573), + [1042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), + [1044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(568), + [1046] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(564), + [1048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(570), + [1050] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(572), [1052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(574), - [1054] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(575), - [1056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(573), - [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(576), + [1054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(575), + [1056] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(576), + [1058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(574), [1060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(577), [1062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(578), - [1064] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(579), - [1066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(577), - [1068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(587), - [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(588), - [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(588), + [1064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(579), + [1066] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(580), + [1068] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(578), + [1070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(588), + [1072] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(589), [1074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(589), [1076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(590), - [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(591), + [1078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(591), [1080] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(592), - [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(592), + [1082] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(593), [1084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(593), - [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(594), - [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(595), - [1090] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(595), - [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(180), - [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(183), - [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(599), + [1086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(594), + [1088] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(595), + [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(596), + [1092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(596), + [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(180), + [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(183), [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(600), - [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2, .fragile = true), - [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2, .fragile = true), - [1104] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2, .fragile = true), - [1106] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(605), - [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(605), - [1110] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(606), + [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(601), + [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2, .fragile = true), + [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2, .fragile = true), + [1106] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2, .fragile = true), + [1108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(606), + [1110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(606), [1112] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(607), [1114] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(608), - [1116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(609), - [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(610), - [1120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(611), - [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(612), + [1116] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(609), + [1118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(610), + [1120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(611), + [1122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(612), [1124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(613), [1126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(614), [1128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(615), [1130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(616), - [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(612), - [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(618), + [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(617), + [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(613), [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(619), - [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(621), - [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(622), - [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(622), - [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 1), - [1146] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 1), - [1148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [1150] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), - [1153] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), - [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), - [1158] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), - [1161] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [1164] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), - [1167] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), - [1170] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), - [1173] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), - [1176] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), - [1179] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), - [1182] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), - [1185] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), - [1188] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), - [1191] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), - [1194] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), - [1197] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), - [1200] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), - [1203] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), - [1206] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), - [1209] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), - [1212] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), - [1215] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(22), - [1218] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(23), - [1221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(627), - [1223] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), - [1226] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(212), - [1229] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), - [1232] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), - [1235] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), - [1237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), - [1239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), - [1241] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), - [1243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [1245] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3), - [1247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(629), + [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(620), + [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(622), + [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(623), + [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(623), + [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 1), + [1148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 1), + [1150] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [1152] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2), + [1155] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3), + [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), + [1160] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), + [1163] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), + [1166] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), + [1169] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), + [1172] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), + [1175] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), + [1178] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(10), + [1181] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(11), + [1184] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(12), + [1187] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(13), + [1190] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [1193] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(14), + [1196] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(15), + [1199] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(16), + [1202] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(17), + [1205] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(18), + [1208] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(19), + [1211] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(20), + [1214] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(21), + [1217] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(22), + [1220] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(23), + [1223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(628), + [1225] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2), + [1228] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(212), + [1231] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), + [1234] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(14), + [1237] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), + [1239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), + [1241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [1243] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [1245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [1247] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3), [1249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(630), - [1251] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(632), - [1253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(634), + [1251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(631), + [1253] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(633), [1255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(635), - [1257] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(636), - [1259] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(634), - [1261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(637), + [1257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(636), + [1259] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(637), + [1261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(635), [1263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(638), [1265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(639), [1267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(640), [1269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(641), - [1271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(642), - [1273] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(640), - [1275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(650), - [1277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), - [1279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), - [1281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), - [1283] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(652), - [1285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(653), - [1287] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(654), - [1289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(655), + [1271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(642), + [1273] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(643), + [1275] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(641), + [1277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(651), + [1279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), + [1281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2), + [1283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(652), + [1285] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(653), + [1287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(654), + [1289] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(655), [1291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(656), [1293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(657), [1295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(658), [1297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(659), - [1299] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(655), - [1301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), - [1303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(662), - [1305] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), - [1307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(664), - [1309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(666), + [1299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(660), + [1301] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(656), + [1303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [1305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(663), + [1307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [1309] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(665), [1311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(667), - [1313] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(668), - [1315] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(666), - [1317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(669), + [1313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(668), + [1315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(669), + [1317] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(667), [1319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(670), [1321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(671), - [1323] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(672), - [1325] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(670), - [1327] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(680), - [1329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(681), - [1331] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(682), - [1333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(683), + [1323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(672), + [1325] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(673), + [1327] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(671), + [1329] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(681), + [1331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(682), + [1333] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(683), [1335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(684), [1337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(685), [1339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(686), [1341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(687), - [1343] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(683), - [1345] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(690), - [1347] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [1349] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(696), - [1351] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(697), - [1353] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(698), - [1355] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(706), - [1357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(706), - [1359] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(707), - [1361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(708), + [1343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(688), + [1345] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(684), + [1347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(691), + [1349] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(693), + [1351] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [1353] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(699), + [1355] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(700), + [1357] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(701), + [1359] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(709), + [1361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(709), [1363] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(710), - [1365] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(711), - [1367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(712), - [1369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(713), - [1371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(714), - [1373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(715), + [1365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(711), + [1367] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(713), + [1369] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(714), + [1371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(715), + [1373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(716), [1375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(717), [1377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(718), - [1379] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(719), - [1381] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(718), - [1383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(721), - [1385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(722), + [1379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(720), + [1381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(721), + [1383] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(722), + [1385] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(721), [1387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(724), [1389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(725), [1391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(727), [1393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(728), - [1395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(729), - [1397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(730), - [1399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(735), - [1401] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [1403] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(736), - [1405] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(738), - [1407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(739), - [1409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(740), - [1411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(741), - [1413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742), - [1415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(743), - [1417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), - [1419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), - [1421] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(741), - [1423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747), - [1425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(749), + [1395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(730), + [1397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(731), + [1399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(732), + [1401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(733), + [1403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(738), + [1405] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [1407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(739), + [1409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(741), + [1411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(742), + [1413] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(743), + [1415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(744), + [1417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(745), + [1419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(746), + [1421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(747), + [1423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(748), + [1425] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(744), [1427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(750), - [1429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(751), - [1431] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(753), - [1433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(275), - [1435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(755), - [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(756), - [1439] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(757), - [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(755), - [1443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(758), - [1445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), - [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(760), - [1449] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(761), - [1451] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(759), - [1453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(770), - [1455] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(772), - [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(285), - [1459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(774), - [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(775), - [1463] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(776), - [1465] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(774), - [1467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(777), - [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(778), - [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(779), - [1473] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(780), - [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(778), - [1477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(789), - [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(789), - [1481] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(791), + [1429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(752), + [1431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(753), + [1433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(754), + [1435] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(756), + [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(276), + [1439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(758), + [1441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(759), + [1443] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(760), + [1445] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(758), + [1447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(761), + [1449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(762), + [1451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(763), + [1453] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(764), + [1455] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(762), + [1457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(773), + [1459] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(775), + [1461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(286), + [1463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(777), + [1465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(778), + [1467] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(779), + [1469] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(777), + [1471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(780), + [1473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(781), + [1475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(782), + [1477] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(783), + [1479] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(781), + [1481] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(792), [1483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(792), - [1485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(793), - [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(794), + [1485] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(794), + [1487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(795), [1489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(796), [1491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(797), - [1493] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(798), - [1495] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(797), - [1497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(800), - [1499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(801), + [1493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(799), + [1495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(800), + [1497] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(801), + [1499] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(800), [1501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(803), [1503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(804), [1505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(806), [1507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(807), - [1509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(808), - [1511] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [1513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(809), - [1515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(812), + [1509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(809), + [1511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(810), + [1513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(811), + [1515] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), [1517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(812), - [1519] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(813), - [1521] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(814), - [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(815), - [1525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(816), - [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(817), - [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(818), - [1531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), - [1533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(820), - [1535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(821), - [1537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(822), - [1539] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(818), - [1541] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(823), - [1543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), - [1545] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(824), - [1547] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(809), - [1549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(828), - [1551] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), - [1553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), - [1555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), - [1557] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), - [1559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [1561] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [1563] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(830), - [1565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(830), - [1567] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2), - [1569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2), - [1571] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(832), - [1573] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), - [1575] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string_expansion, 2), - [1577] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), - [1579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), - [1581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(834), - [1583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(835), + [1519] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(815), + [1521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(815), + [1523] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(816), + [1525] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(817), + [1527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(818), + [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(819), + [1531] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(820), + [1533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(821), + [1535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(822), + [1537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(823), + [1539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(824), + [1541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(825), + [1543] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(821), + [1545] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(826), + [1547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(827), + [1549] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(827), + [1551] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(812), + [1553] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(831), + [1555] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [1557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [1559] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2, .alias_sequence_id = 3), + [1561] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), + [1563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1565] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [1567] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(833), + [1569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(833), + [1571] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_concatenation, 2), + [1573] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 2), + [1575] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(835), + [1577] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), + [1579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string_expansion, 2), + [1581] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 5), + [1583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(836), [1585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(837), [1587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(838), - [1589] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(839), - [1591] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(838), - [1593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), - [1595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(842), + [1589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(840), + [1591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(841), + [1593] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(842), + [1595] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(841), [1597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(844), [1599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(845), [1601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(847), [1603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(848), - [1605] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), - [1607] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(75), - [1610] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(76), - [1613] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(77), - [1616] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(78), - [1619] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(79), - [1622] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(80), - [1625] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(81), - [1628] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(82), - [1631] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(83), - [1634] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(79), - [1637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(850), - [1639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), - [1641] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(852), + [1605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(850), + [1607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(851), + [1609] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), + [1611] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(75), + [1614] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(76), + [1617] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(77), + [1620] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(78), + [1623] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(79), + [1626] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(80), + [1629] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(81), + [1632] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(82), + [1635] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(83), + [1638] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(79), + [1641] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(853), [1643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(853), - [1645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(854), - [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(855), + [1645] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(855), + [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(856), [1649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(857), [1651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(858), - [1653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(859), - [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(858), - [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(861), - [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(862), + [1653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(860), + [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(861), + [1657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(862), + [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(861), [1661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(864), [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(865), [1665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(867), [1667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(868), - [1669] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(86), - [1672] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(87), - [1675] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(88), - [1678] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(89), - [1681] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(90), - [1684] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(91), - [1687] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(92), - [1690] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(93), - [1693] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(94), - [1696] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(90), - [1699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(869), - [1701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), - [1703] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(871), - [1705] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(100), - [1707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(872), - [1709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(102), - [1711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(103), - [1713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(104), - [1715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(105), - [1717] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(872), - [1719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(873), - [1721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), - [1723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(875), + [1669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(870), + [1671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(871), + [1673] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(86), + [1676] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(87), + [1679] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(88), + [1682] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(89), + [1685] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(90), + [1688] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(91), + [1691] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(92), + [1694] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(93), + [1697] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(94), + [1700] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(90), + [1703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(872), + [1705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(873), + [1707] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(874), + [1709] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(100), + [1711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(875), + [1713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(102), + [1715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(103), + [1717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(104), + [1719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(105), + [1721] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(875), + [1723] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(876), [1725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(876), - [1727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(877), - [1729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(878), + [1727] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(878), + [1729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(879), [1731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(880), [1733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(881), - [1735] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(882), - [1737] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(881), - [1739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), - [1741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(885), + [1735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(883), + [1737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(884), + [1739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(885), + [1741] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(884), [1743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(887), [1745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(888), [1747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(890), [1749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(891), - [1751] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), - [1754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [1756] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(98), - [1759] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), - [1762] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(100), - [1765] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(101), - [1768] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(102), - [1771] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(103), - [1774] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(104), - [1777] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(105), - [1780] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(106), - [1783] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(892), - [1785] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(112), - [1787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(892), - [1789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(114), - [1791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(115), - [1793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(116), - [1795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(117), - [1797] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(894), - [1799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), - [1801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(896), - [1803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(897), + [1751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(893), + [1753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(894), + [1755] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(97), + [1758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [1760] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(98), + [1763] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(99), + [1766] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(100), + [1769] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(101), + [1772] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(102), + [1775] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(103), + [1778] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(104), + [1781] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(105), + [1784] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(106), + [1787] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(895), + [1789] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(112), + [1791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(895), + [1793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(114), + [1795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(115), + [1797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(116), + [1799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(117), + [1801] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(897), + [1803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(898), [1805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(899), [1807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(900), - [1809] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(901), - [1811] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(900), - [1813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), - [1815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(904), + [1809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(902), + [1811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(903), + [1813] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(904), + [1815] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(903), [1817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(906), [1819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(907), [1821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(909), [1823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(910), - [1825] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), - [1827] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), - [1830] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(111), - [1833] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), - [1836] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(113), - [1839] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(114), - [1842] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(115), - [1845] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(116), - [1848] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(117), - [1851] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(118), - [1854] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(911), - [1856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(911), - [1858] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(913), + [1825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(912), + [1827] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(913), + [1829] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [1831] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(110), + [1834] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(111), + [1837] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(112), + [1840] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(113), + [1843] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(114), + [1846] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(115), + [1849] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(116), + [1852] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(117), + [1855] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(118), + [1858] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(914), [1860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(914), - [1862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(915), - [1864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(916), + [1862] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(916), + [1864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(917), [1866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(918), [1868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(919), - [1870] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(920), - [1872] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(919), - [1874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), - [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(923), + [1870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(921), + [1872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(922), + [1874] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(923), + [1876] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(922), [1878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(925), [1880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(926), [1882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(928), [1884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(929), - [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1888] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1890] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(130), - [1893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(930), - [1895] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), - [1897] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), - [1899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(931), - [1901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(932), - [1903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), + [1886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(931), + [1888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(932), + [1890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1892] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1894] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(130), + [1897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(933), + [1899] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), + [1901] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), + [1903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(934), [1905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(935), [1907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(936), - [1909] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(937), - [1911] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(936), - [1913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), - [1915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(940), + [1909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(938), + [1911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(939), + [1913] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(940), + [1915] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(939), [1917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(942), [1919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(943), [1921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(945), - [1923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [1925] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), - [1927] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(133), - [1930] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(134), - [1933] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(135), - [1936] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(136), - [1939] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(137), - [1942] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(946), - [1944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(947), - [1946] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(947), - [1948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(949), - [1950] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(950), - [1952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(951), - [1954] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(952), - [1956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(953), - [1958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(954), - [1960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(955), - [1962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(956), - [1964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(957), - [1966] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(953), - [1968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1970] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [1974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 1), - [1976] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [1978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), - [1980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1984] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1986] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(961), - [1988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(963), - [1990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(964), - [1992] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(965), - [1994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(963), - [1996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), - [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), - [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(968), - [2002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(969), - [2004] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(967), - [2006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(971), - [2008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(978), - [2010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(980), + [1923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(946), + [1925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(948), + [1927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [1929] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_string, 3), + [1931] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(133), + [1934] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(134), + [1937] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(135), + [1940] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(136), + [1943] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(137), + [1946] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(949), + [1948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(950), + [1950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(950), + [1952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(952), + [1954] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(953), + [1956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(954), + [1958] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(955), + [1960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(956), + [1962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(957), + [1964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(958), + [1966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(959), + [1968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(960), + [1970] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(956), + [1972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1974] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [1980] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(962), + [1984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1986] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1990] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(964), + [1992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(966), + [1994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(967), + [1996] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(968), + [1998] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(966), + [2000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(969), + [2002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(970), + [2004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(971), + [2006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(972), + [2008] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(970), + [2010] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(974), [2012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(981), - [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(982), + [2014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(983), [2016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(984), [2018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(985), [2020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(987), - [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), - [2024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), - [2026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(989), - [2028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), - [2030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [2032] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), - [2034] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(991), - [2036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(992), - [2038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), - [2040] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(994), - [2042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), - [2044] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(996), - [2046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(997), - [2048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), - [2050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(999), - [2052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), - [2054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), - [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(997), - [2058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variable_assignment, 2), - [2060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1002), - [2062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), - [2064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1005), + [2022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(988), + [2024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(990), + [2026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [2028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [2030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(992), + [2032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(993), + [2034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [2036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 3), + [2038] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(994), + [2040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(995), + [2042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(996), + [2044] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(997), + [2046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(998), + [2048] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(999), + [2050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1000), + [2052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1001), + [2054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1002), + [2056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1003), + [2058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1004), + [2060] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1000), + [2062] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_variable_assignment, 2), + [2064] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1005), [2066] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1006), - [2068] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1007), - [2070] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1008), - [2072] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1009), - [2074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1010), - [2076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1011), + [2068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1007), + [2070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1009), + [2072] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1010), + [2074] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1011), + [2076] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1012), [2078] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1013), - [2080] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1014), - [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1017), - [2084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1018), - [2086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1020), - [2088] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), - [2090] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1022), + [2080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1014), + [2082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1015), + [2084] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1017), + [2086] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1018), + [2088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1021), + [2090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1022), [2092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1024), - [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1025), + [2094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 1), [2096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1026), - [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1024), - [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [2102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1027), - [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), - [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), - [2108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1030), - [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1028), - [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), - [2114] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 2), - [2116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), - [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1039), - [2120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), - [2124] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1041), - [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), - [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1044), + [2098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1028), + [2100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1029), + [2102] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1030), + [2104] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1028), + [2106] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [2108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1031), + [2110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1032), + [2112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1033), + [2114] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1034), + [2116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1032), + [2118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), + [2120] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_declaration_command, 2), + [2122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_declaration_command, 2), + [2124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1043), + [2126] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), + [2128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 1), [2130] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1045), - [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1043), - [2134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1), - [2136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1), - [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1046), - [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), - [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), - [2144] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1049), - [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1047), - [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), - [2150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), - [2152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_unset_command, 2), - [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 2), - [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1058), - [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1058), - [2160] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1060), - [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1061), + [2132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1047), + [2134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1048), + [2136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1049), + [2138] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1047), + [2140] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1), + [2142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1), + [2144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1050), + [2146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1051), + [2148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1052), + [2150] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1053), + [2152] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1051), + [2154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [2156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), + [2158] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_unset_command, 2), + [2160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_unset_command, 2), + [2162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1062), [2164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1062), - [2166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1063), + [2166] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1064), [2168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1065), [2170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1066), - [2172] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1067), - [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1066), - [2176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), - [2178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), - [2180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1072), + [2172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1067), + [2174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1069), + [2176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1070), + [2178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1071), + [2180] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1070), [2182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1073), - [2184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1075), + [2184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1074), [2186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1076), [2188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1077), - [2190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [2192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1082), - [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1082), - [2198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1083), - [2200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(159), - [2202] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(160), - [2204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1084), - [2206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(162), - [2208] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(163), - [2210] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(164), - [2212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(165), - [2214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1085), - [2216] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1086), - [2218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1087), - [2220] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1088), - [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1089), - [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1090), - [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), - [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1092), - [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), - [2232] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1089), - [2234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), - [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), - [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1098), + [2190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1079), + [2192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1080), + [2194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1081), + [2196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [2198] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [2200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1086), + [2202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1086), + [2204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1087), + [2206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(159), + [2208] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(160), + [2210] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1088), + [2212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(162), + [2214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(163), + [2216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(164), + [2218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(165), + [2220] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1089), + [2222] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1090), + [2224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1091), + [2226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1092), + [2228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1093), + [2230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1094), + [2232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1095), + [2234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1096), + [2236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1097), + [2238] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1093), [2240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1099), - [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1099), - [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 1), - [2246] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), - [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1105), - [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1106), - [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1107), - [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1108), - [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1109), - [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), - [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1111), - [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), - [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1108), - [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114), + [2242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1100), + [2244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1102), + [2246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1103), + [2248] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1103), + [2250] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 1), + [2252] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 2), + [2254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [2256] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1109), + [2258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1110), + [2260] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1111), + [2262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1112), + [2264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1113), + [2266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1114), + [2268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1115), [2270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1116), - [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1117), + [2272] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1112), [2274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1118), - [2276] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1120), - [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1122), - [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1123), + [2276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1120), + [2278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1121), + [2280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1122), [2282] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1124), - [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1122), - [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1125), - [2288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), - [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1127), - [2292] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1128), - [2294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1126), - [2296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1137), - [2298] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1139), - [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), - [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1142), + [2284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1126), + [2286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1127), + [2288] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1128), + [2290] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1126), + [2292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1129), + [2294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1130), + [2296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1131), + [2298] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1132), + [2300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1130), + [2302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1141), [2304] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1143), - [2306] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1141), - [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1144), - [2310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), - [2312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1146), - [2314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1147), - [2316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1145), - [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1156), - [2320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1156), - [2322] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1158), - [2324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1159), + [2306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1145), + [2308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1146), + [2310] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1147), + [2312] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1145), + [2314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1148), + [2316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1149), + [2318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1150), + [2320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1151), + [2322] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1149), + [2324] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1160), [2326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1160), - [2328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1161), + [2328] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1162), [2330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1163), [2332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1164), - [2334] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1165), - [2336] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1164), - [2338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), - [2340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), - [2342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1170), + [2334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1165), + [2336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1167), + [2338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1168), + [2340] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1169), + [2342] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1168), [2344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1171), - [2346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1173), + [2346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1172), [2348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1174), [2350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1175), - [2352] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1179), - [2354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1179), - [2356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1180), - [2358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(181), - [2360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(182), - [2362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1181), - [2364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(184), - [2366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(185), - [2368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(186), - [2370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(187), - [2372] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1182), - [2374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), - [2376] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1184), - [2378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1185), - [2380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1186), - [2382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), - [2384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1188), - [2386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), - [2388] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1185), - [2390] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1190), - [2392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), - [2394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1191), - [2396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [2398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), - [2400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [2402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [2404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1197), - [2406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1198), - [2408] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1198), - [2410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1200), - [2412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), - [2414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1202), + [2352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1177), + [2354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1178), + [2356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1179), + [2358] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1183), + [2360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1183), + [2362] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1184), + [2364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(181), + [2366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(182), + [2368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1185), + [2370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(184), + [2372] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(185), + [2374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(186), + [2376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(187), + [2378] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1186), + [2380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1187), + [2382] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1188), + [2384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1189), + [2386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1190), + [2388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1191), + [2390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1192), + [2392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1193), + [2394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1189), + [2396] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1194), + [2398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1195), + [2400] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1195), + [2402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [2404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_process_substitution, 3), + [2406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [2408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [2410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1201), + [2412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1202), + [2414] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1202), [2416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1204), - [2418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1205), + [2418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .alias_sequence_id = 3), [2420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1206), - [2422] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1204), - [2424] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [2426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1207), - [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208), - [2430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), - [2432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1210), - [2434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1208), - [2436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [2438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [2440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1218), - [2442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1219), - [2444] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1220), - [2446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1221), - [2448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [2450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [2452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), - [2454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), - [2456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2), - [2458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2), - [2460] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(200), - [2463] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), - [2465] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(202), - [2468] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(203), - [2471] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(204), - [2474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [2476] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(201), - [2479] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(205), - [2482] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(16), - [2485] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), - [2488] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(206), - [2491] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(19), - [2494] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), - [2497] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), - [2500] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), - [2503] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1223), - [2505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1224), - [2507] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1224), - [2509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1226), - [2511] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1227), - [2513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1227), - [2515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1227), - [2517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), - [2519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), - [2521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1229), - [2523] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1231), - [2525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), + [2422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1208), + [2424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1209), + [2426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1210), + [2428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1208), + [2430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), + [2432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1211), + [2434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1212), + [2436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1213), + [2438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1214), + [2440] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1212), + [2442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [2444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [2446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1222), + [2448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1223), + [2450] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1224), + [2452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1225), + [2454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [2456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [2458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [2460] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [2462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2), + [2464] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_herestring_redirect, 2), + [2466] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(200), + [2469] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), + [2471] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(202), + [2474] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(203), + [2477] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(204), + [2480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [2482] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(201), + [2485] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(205), + [2488] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(16), + [2491] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(17), + [2494] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(206), + [2497] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(19), + [2500] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(20), + [2503] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(21), + [2506] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(22), + [2509] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1227), + [2511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1228), + [2513] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1228), + [2515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1230), + [2517] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1231), + [2519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1231), + [2521] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1231), + [2523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1232), + [2525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), [2527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1233), - [2529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), - [2531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1234), - [2533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1235), - [2535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), + [2529] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1235), + [2531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1236), + [2533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1237), + [2535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), [2537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1238), [2539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1239), - [2541] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1240), - [2543] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1239), - [2545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), - [2547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), - [2549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1245), + [2541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1240), + [2543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1242), + [2545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1243), + [2547] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1244), + [2549] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1243), [2551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1246), - [2553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1248), + [2553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1247), [2555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1249), - [2557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [2559] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), - [2561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1250), - [2563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2565] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2567] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1252), - [2569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1254), - [2571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1255), + [2557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1250), + [2559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1252), + [2561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1253), + [2563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [2565] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 2), + [2567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1254), + [2569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), + [2571] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), [2573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1256), - [2575] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1254), - [2577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1257), - [2583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1258), - [2585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259), - [2587] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1260), - [2589] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1258), - [2591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1268), - [2593] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1270), - [2595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1270), - [2597] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1272), - [2599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1273), + [2575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1258), + [2577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1259), + [2579] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1260), + [2581] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1258), + [2583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2585] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1261), + [2589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1262), + [2591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1263), + [2593] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1264), + [2595] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1262), + [2597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1272), + [2599] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1274), [2601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1274), - [2603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1275), + [2603] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1276), [2605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1277), [2607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1278), - [2609] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1279), - [2611] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1278), - [2613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1281), - [2615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), - [2617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1284), + [2609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1279), + [2611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1281), + [2613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1282), + [2615] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1283), + [2617] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1282), [2619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1285), - [2621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1287), + [2621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1286), [2623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1288), [2625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1289), - [2627] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), - [2629] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1291), + [2627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1291), + [2629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1292), [2631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1293), - [2633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1294), + [2633] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1, .alias_sequence_id = 1), [2635] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1295), - [2637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1293), - [2639] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), - [2641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1296), - [2643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1297), - [2645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), - [2647] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1299), - [2649] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1297), - [2651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1307), - [2653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(680), - [2655] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(681), - [2657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(682), - [2659] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(683), - [2661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(684), - [2663] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(685), - [2665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(686), - [2667] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(687), - [2669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [2671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [2673] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1309), - [2675] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1310), - [2677] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 4), - [2679] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [2681] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), - [2683] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1317), - [2685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), - [2687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1318), - [2689] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1318), - [2691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(697), - [2693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(698), - [2695] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1323), - [2697] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1324), - [2699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1325), - [2701] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1326), - [2703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1327), - [2705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1328), - [2707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1329), - [2709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1330), - [2711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1331), - [2713] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1327), - [2715] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1336), - [2717] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(243), - [2720] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1337), - [2722] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1340), - [2724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1341), - [2726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1342), - [2728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1343), + [2637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1297), + [2639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1298), + [2641] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1299), + [2643] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1297), + [2645] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 1), + [2647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1300), + [2649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1301), + [2651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1302), + [2653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1303), + [2655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1301), + [2657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1311), + [2659] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(681), + [2661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(682), + [2663] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(683), + [2665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(684), + [2667] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(685), + [2669] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(686), + [2671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(687), + [2673] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(688), + [2675] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1313), + [2677] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), + [2679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [2681] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [2683] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1315), + [2685] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1316), + [2687] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 4), + [2689] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [2691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), + [2693] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1323), + [2695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), + [2697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1324), + [2699] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1324), + [2701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(700), + [2703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(701), + [2705] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1329), + [2707] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1330), + [2709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1331), + [2711] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1332), + [2713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1333), + [2715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1334), + [2717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1335), + [2719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1336), + [2721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1337), + [2723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1333), + [2725] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1342), + [2727] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(244), [2730] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1343), - [2732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1345), - [2734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1346), - [2736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1347), - [2738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1348), - [2740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1349), - [2742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1351), + [2732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1346), + [2734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1347), + [2736] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1348), + [2738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1349), + [2740] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1349), + [2742] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1351), [2744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1352), - [2746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1354), - [2748] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1356), - [2750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1357), - [2752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1358), - [2754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [2756] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), - [2758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1360), - [2760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1361), - [2762] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1363), - [2764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1363), - [2766] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1364), - [2768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1365), - [2770] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1366), - [2772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367), - [2774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1368), - [2776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1369), - [2778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1370), - [2780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1371), - [2782] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1367), - [2784] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [2786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1373), - [2788] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1375), + [2746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1353), + [2748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1354), + [2750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1355), + [2752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1357), + [2754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1358), + [2756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1360), + [2758] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1362), + [2760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1363), + [2762] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1364), + [2764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [2766] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 2), + [2768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1366), + [2770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1367), + [2772] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1369), + [2774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1369), + [2776] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1370), + [2778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1371), + [2780] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1372), + [2782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1373), + [2784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1374), + [2786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1375), + [2788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1376), [2790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1377), - [2792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1378), - [2794] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1379), - [2796] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1377), - [2798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1380), - [2800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1381), - [2802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1382), - [2804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1383), - [2806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1381), - [2808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1392), - [2810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1393), - [2812] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1394), - [2814] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1396), - [2816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(276), - [2818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1397), - [2820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(278), - [2822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(279), - [2824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(280), - [2826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(281), - [2828] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1397), - [2830] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1398), - [2832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1398), - [2834] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1400), - [2836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1401), - [2838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1402), - [2840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1403), - [2842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1405), - [2844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1406), - [2846] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1407), - [2848] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1406), + [2792] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1373), + [2794] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [2796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1379), + [2798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1381), + [2800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1383), + [2802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1384), + [2804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1385), + [2806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1383), + [2808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1386), + [2810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1387), + [2812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1388), + [2814] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1389), + [2816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1387), + [2818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1398), + [2820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1399), + [2822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1400), + [2824] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1402), + [2826] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(277), + [2828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1403), + [2830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(279), + [2832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(280), + [2834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(281), + [2836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(282), + [2838] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1403), + [2840] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1404), + [2842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1404), + [2844] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1406), + [2846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1407), + [2848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1408), [2850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1409), - [2852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1410), + [2852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1411), [2854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1412), - [2856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1413), - [2858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1415), - [2860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1416), - [2862] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(273), - [2865] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(274), - [2868] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(275), - [2871] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(276), - [2874] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(277), - [2877] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(278), - [2880] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(279), - [2883] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(280), - [2886] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(281), - [2889] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1417), - [2891] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(286), - [2893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1417), - [2895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(288), - [2897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(289), - [2899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), - [2901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(291), - [2903] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1419), - [2905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1420), - [2907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1421), - [2909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1422), - [2911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1424), - [2913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1425), - [2915] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1426), - [2917] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1425), + [2856] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1413), + [2858] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1412), + [2860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1415), + [2862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1416), + [2864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1418), + [2866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1419), + [2868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1421), + [2870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1422), + [2872] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(274), + [2875] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(275), + [2878] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(276), + [2881] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(277), + [2884] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(278), + [2887] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(279), + [2890] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(280), + [2893] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(281), + [2896] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(282), + [2899] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1423), + [2901] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(287), + [2903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1423), + [2905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(289), + [2907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), + [2909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(291), + [2911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(292), + [2913] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1425), + [2915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1426), + [2917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1427), [2919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1428), - [2921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1429), + [2921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1430), [2923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1431), - [2925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1432), - [2927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1434), - [2929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1435), - [2931] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(284), - [2934] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(285), - [2937] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(286), - [2940] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(287), - [2943] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(288), - [2946] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(289), - [2949] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(290), - [2952] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(291), - [2955] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(293), - [2958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1436), - [2960] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1437), - [2962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1438), - [2964] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1438), - [2966] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1440), - [2968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1441), - [2970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442), - [2972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1443), - [2974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1444), - [2976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1446), + [2925] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1432), + [2927] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1431), + [2929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1434), + [2931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1435), + [2933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1437), + [2935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1438), + [2937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1440), + [2939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1441), + [2941] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(285), + [2944] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(286), + [2947] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(287), + [2950] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(288), + [2953] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(289), + [2956] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(290), + [2959] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(291), + [2962] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(292), + [2965] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(294), + [2968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1442), + [2970] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1443), + [2972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1444), + [2974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1444), + [2976] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1446), [2978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1447), - [2980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1449), - [2982] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1451), - [2984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1452), - [2986] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1453), - [2988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [2990] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1455), - [2992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1456), - [2994] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1456), - [2996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1457), - [2998] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1459), - [3000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1461), + [2980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1448), + [2982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1449), + [2984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1450), + [2986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1452), + [2988] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1453), + [2990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1455), + [2992] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1457), + [2994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1458), + [2996] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1459), + [2998] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [3000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1461), [3002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1462), - [3004] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1463), - [3006] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1461), - [3008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1464), - [3010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1465), - [3012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1466), - [3014] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1467), - [3016] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1465), - [3018] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(316), - [3021] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(318), - [3024] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(319), - [3027] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(317), - [3030] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(320), - [3033] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(61), - [3036] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(62), - [3039] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(321), - [3042] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(64), - [3045] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(65), - [3048] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(66), - [3051] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(67), - [3054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1475), - [3056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), - [3058] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(331), - [3061] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), - [3063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1477), - [3065] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1478), - [3067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1479), - [3069] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1479), - [3071] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [3073] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1481), - [3075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1482), - [3077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1483), - [3079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1484), - [3081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1485), - [3083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1487), + [3004] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1462), + [3006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1463), + [3008] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1465), + [3010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1467), + [3012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1468), + [3014] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1469), + [3016] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1467), + [3018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1470), + [3020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1471), + [3022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1472), + [3024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1473), + [3026] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1471), + [3028] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(317), + [3031] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(319), + [3034] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(320), + [3037] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(318), + [3040] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(321), + [3043] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(61), + [3046] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(62), + [3049] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(322), + [3052] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(64), + [3055] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(65), + [3058] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(66), + [3061] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(67), + [3064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1481), + [3066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_concatenation_repeat1, 2), + [3068] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(332), + [3071] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_string, 3), + [3073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1483), + [3075] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1484), + [3077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1485), + [3079] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1485), + [3081] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [3083] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1487), [3085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1488), - [3087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1490), - [3089] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), - [3091] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1492), + [3087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1489), + [3089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1490), + [3091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1491), [3093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1493), - [3095] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), - [3097] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1494), - [3099] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), - [3101] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), - [3103] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 4), - [3105] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(354), - [3108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1495), - [3110] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1496), - [3112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1497), - [3114] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1497), - [3116] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1499), - [3118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1500), - [3120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1501), - [3122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1502), - [3124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1503), - [3126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1505), + [3095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1494), + [3097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1496), + [3099] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), + [3101] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1498), + [3103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1499), + [3105] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 3), + [3107] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1500), + [3109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), + [3111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_process_substitution, 3), + [3113] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 4), + [3115] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(355), + [3118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1501), + [3120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1502), + [3122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1503), + [3124] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1503), + [3126] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1505), [3128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1506), - [3130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1508), - [3132] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1510), - [3134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1511), - [3136] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1512), - [3138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1513), - [3140] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(375), - [3143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1515), - [3145] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1516), - [3147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1517), - [3149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1517), - [3151] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1519), - [3153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1520), - [3155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1521), - [3157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1522), - [3159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1523), - [3161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1525), + [3130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1507), + [3132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1508), + [3134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1509), + [3136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1511), + [3138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1512), + [3140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1514), + [3142] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1516), + [3144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1517), + [3146] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1518), + [3148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1519), + [3150] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(376), + [3153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1521), + [3155] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1522), + [3157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1523), + [3159] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1523), + [3161] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1525), [3163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1526), - [3165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1528), - [3167] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1530), - [3169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1531), - [3171] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1532), - [3173] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(394), - [3176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1533), - [3178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1534), - [3180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1535), - [3182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1535), - [3184] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1537), - [3186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1538), - [3188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1539), - [3190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1540), - [3192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1541), - [3194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1543), + [3165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1527), + [3167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1528), + [3169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1529), + [3171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1531), + [3173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1532), + [3175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1534), + [3177] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1536), + [3179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1537), + [3181] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1538), + [3183] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(395), + [3186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1539), + [3188] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1540), + [3190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1541), + [3192] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1541), + [3194] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1543), [3196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1544), - [3198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1546), - [3200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1548), - [3202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1549), - [3204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1550), - [3206] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(413), - [3209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1551), - [3211] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1552), - [3213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1553), - [3215] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1553), - [3217] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1555), - [3219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1556), - [3221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1557), - [3223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1558), - [3225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559), - [3227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1561), + [3198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1545), + [3200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1546), + [3202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1547), + [3204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1549), + [3206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1550), + [3208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1552), + [3210] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1554), + [3212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1555), + [3214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1556), + [3216] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(414), + [3219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1557), + [3221] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1558), + [3223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1559), + [3225] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1559), + [3227] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1561), [3229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1562), - [3231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1564), - [3233] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1566), - [3235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1567), - [3237] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1568), - [3239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 3), - [3241] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 3), - [3243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1569), - [3245] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1570), - [3247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1571), - [3249] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1571), - [3251] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1573), - [3253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1574), - [3255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1575), - [3257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1576), - [3259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1577), - [3261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1579), + [3231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1563), + [3233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1564), + [3235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1565), + [3237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1567), + [3239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1568), + [3241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1570), + [3243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1572), + [3245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1573), + [3247] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1574), + [3249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_string_repeat1, 3), + [3251] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_string_repeat1, 3), + [3253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1575), + [3255] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1576), + [3257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1577), + [3259] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1577), + [3261] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1579), [3263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1580), - [3265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1582), - [3267] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1584), - [3269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1585), - [3271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1586), - [3273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1587), + [3265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1581), + [3267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1582), + [3269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1583), + [3271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1585), + [3273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1586), [3275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1588), - [3277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1589), - [3279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1590), - [3281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1591), - [3283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [3285] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), - [3287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1592), - [3289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1593), - [3291] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1595), - [3293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1597), - [3295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1598), - [3297] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1599), - [3299] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1597), - [3301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1600), - [3303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1601), - [3305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1602), - [3307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1603), - [3309] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1604), - [3311] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1602), - [3313] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1612), - [3315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1612), - [3317] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1614), - [3319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1615), - [3321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1616), - [3323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1617), - [3325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1619), - [3327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1620), - [3329] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1621), - [3331] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1620), + [3277] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1590), + [3279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1591), + [3281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1592), + [3283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1593), + [3285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1594), + [3287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1595), + [3289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1596), + [3291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1597), + [3293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [3295] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4), + [3297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1598), + [3299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1599), + [3301] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1601), + [3303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1603), + [3305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1604), + [3307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1605), + [3309] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1603), + [3311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1606), + [3313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1607), + [3315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1608), + [3317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1609), + [3319] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1610), + [3321] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1608), + [3323] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1618), + [3325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1618), + [3327] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1620), + [3329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1621), + [3331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1622), [3333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1623), - [3335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1624), + [3335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1625), [3337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1626), - [3339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1627), - [3341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1629), - [3343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1631), - [3345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1632), - [3347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [3349] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [3351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), - [3353] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(451), - [3356] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(452), - [3359] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(453), - [3362] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(454), - [3365] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(455), - [3368] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(451), - [3371] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(456), - [3374] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(458), - [3377] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(459), - [3380] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(460), - [3383] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(455), - [3386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1633), - [3388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1634), - [3390] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1634), - [3392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [3394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [3396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1636), - [3398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1637), - [3400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [3402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [3404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1638), - [3406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1639), - [3408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1640), - [3410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1641), - [3412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [3414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [3416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1643), - [3418] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2), - [3420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1645), - [3422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1647), - [3424] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), - [3426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1649), - [3428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1651), - [3430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1652), - [3432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1653), - [3434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1651), - [3436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1654), - [3438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1655), - [3440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1656), - [3442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1657), - [3444] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1655), - [3446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1666), - [3448] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), - [3450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [3452] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1669), - [3454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1673), - [3456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1674), - [3458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1675), - [3460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1676), - [3462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1677), - [3464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1678), - [3466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1680), - [3468] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), - [3470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), - [3472] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1681), - [3474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1681), - [3476] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), - [3478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [3480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1683), - [3482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1683), - [3484] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1684), - [3486] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3), - [3488] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), - [3490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1686), - [3492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1687), - [3494] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1688), - [3496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1689), - [3498] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1689), - [3500] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1690), - [3502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1690), - [3504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1692), - [3506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1693), - [3508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1694), - [3510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1695), - [3512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1697), + [3339] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1627), + [3341] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1626), + [3343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1629), + [3345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1630), + [3347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1632), + [3349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1633), + [3351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1635), + [3353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1637), + [3355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1638), + [3357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [3359] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [3361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), + [3363] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(452), + [3366] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(453), + [3369] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(454), + [3372] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(455), + [3375] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(456), + [3378] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(452), + [3381] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(457), + [3384] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(459), + [3387] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(460), + [3390] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(461), + [3393] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(456), + [3396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1639), + [3398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1640), + [3400] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1640), + [3402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [3404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [3406] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1642), + [3408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1643), + [3410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [3412] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [3414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1644), + [3416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1645), + [3418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1646), + [3420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1647), + [3422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [3424] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [3426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1649), + [3428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2), + [3430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1651), + [3432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1653), + [3434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__assignment, 2, .alias_sequence_id = 3), + [3436] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1655), + [3438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1657), + [3440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1658), + [3442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1659), + [3444] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1657), + [3446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1660), + [3448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1661), + [3450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1662), + [3452] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1663), + [3454] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1661), + [3456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1672), + [3458] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1674), + [3460] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 3), + [3462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [3464] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1677), + [3466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1681), + [3468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1682), + [3470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1683), + [3472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1684), + [3474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1685), + [3476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1686), + [3478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1688), + [3480] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 3), + [3482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 3), + [3484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1689), + [3486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1689), + [3488] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 3), + [3490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [3492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1691), + [3494] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1691), + [3496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1692), + [3498] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 3), + [3500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), + [3502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1694), + [3504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1695), + [3506] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1696), + [3508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1697), + [3510] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1697), + [3512] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1698), [3514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1698), - [3516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1699), - [3518] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1698), - [3520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1701), - [3522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1702), - [3524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1704), - [3526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1705), - [3528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1707), - [3530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1708), - [3532] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(486), - [3535] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [3537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [3539] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(487), - [3542] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(488), - [3545] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(489), - [3548] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(490), - [3551] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(491), - [3554] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(492), - [3557] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(493), - [3560] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(494), - [3563] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(495), - [3566] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(490), - [3569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1709), - [3571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1709), - [3573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1711), - [3575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1712), - [3577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1713), - [3579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1714), - [3581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1716), + [3516] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1700), + [3518] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1701), + [3520] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1702), + [3522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1703), + [3524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1705), + [3526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1706), + [3528] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1707), + [3530] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1706), + [3532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1709), + [3534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1710), + [3536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1712), + [3538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1713), + [3540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1715), + [3542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1716), + [3544] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(487), + [3547] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [3549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [3551] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(488), + [3554] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(489), + [3557] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(490), + [3560] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(491), + [3563] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(492), + [3566] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(493), + [3569] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(494), + [3572] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(495), + [3575] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(496), + [3578] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(491), + [3581] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1717), [3583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1717), - [3585] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1718), - [3587] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1717), - [3589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1720), - [3591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1721), - [3593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1723), - [3595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1724), - [3597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1726), - [3599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1727), - [3601] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), - [3603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), - [3605] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(499), - [3608] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(500), - [3611] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(501), - [3614] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(502), - [3617] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(503), - [3620] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(504), - [3623] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(505), - [3626] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(506), - [3629] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(507), - [3632] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(502), - [3635] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(510), - [3638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1728), - [3640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1729), - [3642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1730), - [3644] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1730), - [3646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1732), - [3648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1733), - [3650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1734), - [3652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1735), - [3654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1736), - [3656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1738), - [3658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1739), + [3585] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1719), + [3587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1720), + [3589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1721), + [3591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1722), + [3593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1724), + [3595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1725), + [3597] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1726), + [3599] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1725), + [3601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1728), + [3603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1729), + [3605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1731), + [3607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1732), + [3609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1734), + [3611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1735), + [3613] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), + [3615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), + [3617] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(500), + [3620] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(501), + [3623] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(502), + [3626] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(503), + [3629] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(504), + [3632] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(505), + [3635] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(506), + [3638] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(507), + [3641] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(508), + [3644] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(503), + [3647] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(511), + [3650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1736), + [3652] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1737), + [3654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1738), + [3656] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1738), + [3658] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1740), [3660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1741), - [3662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1743), - [3664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1744), - [3666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1745), - [3668] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), - [3670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), - [3672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [3674] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1747), - [3676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1748), - [3678] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1748), - [3680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1750), - [3682] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1752), - [3684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1754), - [3686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1755), - [3688] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1756), - [3690] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1754), - [3692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1757), - [3694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1758), - [3696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1759), - [3698] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1760), - [3700] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1758), - [3702] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), - [3704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1768), - [3706] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), - [3708] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), - [3710] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_herestring_redirect, 2), - [3712] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(532), - [3715] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), - [3717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), - [3719] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(534), - [3722] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(534), - [3725] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(535), - [3728] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(535), - [3731] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(536), - [3734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), - [3736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [3738] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(533), - [3741] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(537), - [3744] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(159), - [3747] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(160), - [3750] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(538), - [3753] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(162), - [3756] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(163), - [3759] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(164), - [3762] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(165), - [3765] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(538), - [3768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1771), - [3770] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1773), - [3772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1775), - [3774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1776), - [3776] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1777), - [3778] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1775), - [3780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1778), - [3782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1779), - [3784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1780), - [3786] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1781), - [3788] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1779), - [3790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1790), - [3792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1791), - [3794] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1792), - [3796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1792), - [3798] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1794), - [3800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1795), - [3802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(556), - [3804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1795), - [3806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1796), - [3808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1796), - [3810] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1798), - [3812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1799), - [3814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1800), - [3816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1801), - [3818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1803), + [3662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1742), + [3664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1743), + [3666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1744), + [3668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1746), + [3670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1747), + [3672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1749), + [3674] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1751), + [3676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1752), + [3678] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1753), + [3680] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_pipeline, 3), + [3682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), + [3684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [3686] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1755), + [3688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1756), + [3690] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1756), + [3692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1758), + [3694] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1760), + [3696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1762), + [3698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1763), + [3700] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1764), + [3702] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1762), + [3704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1765), + [3706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1766), + [3708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1767), + [3710] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1768), + [3712] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1766), + [3714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), + [3716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1776), + [3718] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), + [3720] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_herestring_redirect, 2, .alias_sequence_id = 3), + [3722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_herestring_redirect, 2), + [3724] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(533), + [3727] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), + [3729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), + [3731] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(535), + [3734] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(535), + [3737] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(536), + [3740] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(536), + [3743] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(537), + [3746] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 3), + [3748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [3750] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(534), + [3753] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(538), + [3756] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(159), + [3759] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(160), + [3762] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(539), + [3765] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(162), + [3768] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(163), + [3771] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(164), + [3774] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(165), + [3777] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(539), + [3780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1779), + [3782] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1781), + [3784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1783), + [3786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1784), + [3788] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1785), + [3790] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1783), + [3792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1786), + [3794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1787), + [3796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1788), + [3798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1789), + [3800] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1787), + [3802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1798), + [3804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1799), + [3806] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1800), + [3808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1800), + [3810] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1802), + [3812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1803), + [3814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(557), + [3816] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1803), + [3818] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1804), [3820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1804), - [3822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1805), - [3824] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1804), - [3826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1807), - [3828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1808), - [3830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1810), - [3832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1811), - [3834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1813), - [3836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1814), - [3838] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(549), - [3841] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(550), - [3844] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(551), - [3847] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(552), - [3850] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(553), - [3853] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(554), - [3856] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(555), - [3859] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(556), - [3862] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(557), - [3865] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(553), - [3868] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1815), - [3870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1815), - [3872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), - [3874] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1817), - [3876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1818), - [3878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1819), - [3880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1820), - [3882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1822), - [3884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1823), - [3886] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1824), - [3888] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1823), - [3890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1826), - [3892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1827), - [3894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1829), - [3896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1830), - [3898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1832), - [3900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1833), - [3902] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(560), - [3905] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(561), - [3908] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(562), - [3911] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(563), - [3914] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(564), - [3917] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(565), - [3920] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(566), - [3923] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(567), - [3926] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(563), - [3929] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(569), - [3932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1834), - [3934] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1835), - [3936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1836), - [3938] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1836), - [3940] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1838), - [3942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1839), - [3944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1840), - [3946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1841), - [3948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1842), - [3950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1844), - [3952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1845), + [3822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1806), + [3824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1807), + [3826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1808), + [3828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1809), + [3830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1811), + [3832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1812), + [3834] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1813), + [3836] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1812), + [3838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1815), + [3840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1816), + [3842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1818), + [3844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1819), + [3846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1821), + [3848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1822), + [3850] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(550), + [3853] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(551), + [3856] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(552), + [3859] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(553), + [3862] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(554), + [3865] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(555), + [3868] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(556), + [3871] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(557), + [3874] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(558), + [3877] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(554), + [3880] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1823), + [3882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1823), + [3884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), + [3886] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1825), + [3888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1826), + [3890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1827), + [3892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1828), + [3894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1830), + [3896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1831), + [3898] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1832), + [3900] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1831), + [3902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1834), + [3904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1835), + [3906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1837), + [3908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1838), + [3910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1840), + [3912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1841), + [3914] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(561), + [3917] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(562), + [3920] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(563), + [3923] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(564), + [3926] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(565), + [3929] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(566), + [3932] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(567), + [3935] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(568), + [3938] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(564), + [3941] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(570), + [3944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1842), + [3946] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1843), + [3948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1844), + [3950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1844), + [3952] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1846), [3954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1847), - [3956] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1849), - [3958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1850), - [3960] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1851), - [3962] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1853), - [3964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1854), - [3966] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1854), - [3968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1855), - [3970] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1857), - [3972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1859), - [3974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1860), - [3976] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1861), - [3978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1859), - [3980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1862), - [3982] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1863), - [3984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1864), - [3986] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1865), - [3988] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1863), - [3990] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(590), - [3993] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(592), - [3996] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(592), - [3999] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(593), - [4002] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(591), - [4005] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(594), - [4008] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(181), - [4011] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(182), - [4014] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(595), - [4017] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(184), - [4020] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(185), - [4023] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(186), - [4026] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(187), - [4029] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(595), - [4032] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), - [4034] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [4036] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1875), - [4038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1875), - [4040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1877), - [4042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1878), - [4044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1879), - [4046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1880), - [4048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1882), + [3956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1848), + [3958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1849), + [3960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1850), + [3962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1852), + [3964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1853), + [3966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1855), + [3968] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1857), + [3970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1858), + [3972] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1859), + [3974] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1861), + [3976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1862), + [3978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1862), + [3980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1863), + [3982] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1865), + [3984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1867), + [3986] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1868), + [3988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1869), + [3990] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1867), + [3992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1870), + [3994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1871), + [3996] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1872), + [3998] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1873), + [4000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1871), + [4002] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(591), + [4005] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(593), + [4008] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(593), + [4011] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(594), + [4014] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(592), + [4017] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(595), + [4020] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(181), + [4023] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(182), + [4026] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(596), + [4029] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(184), + [4032] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(185), + [4035] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(186), + [4038] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(187), + [4041] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(596), + [4044] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .alias_sequence_id = 6), + [4046] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [4048] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1883), [4050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1883), - [4052] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1884), - [4054] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1883), - [4056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1886), - [4058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1887), - [4060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1889), - [4062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1890), - [4064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1892), - [4066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1893), - [4068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), - [4070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), - [4072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [4074] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [4076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1894), - [4078] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1895), - [4080] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1894), - [4082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1896), - [4084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1897), - [4086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1898), - [4088] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1899), - [4090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1897), - [4092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1901), - [4094] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [4096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1903), - [4098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [4100] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1229), - [4103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1904), - [4105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5), - [4107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1905), - [4109] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1906), - [4111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1907), - [4113] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1907), - [4115] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1909), - [4117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1910), - [4119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1911), - [4121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1912), - [4123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1913), - [4125] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1915), - [4127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1916), + [4052] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1885), + [4054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1886), + [4056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1887), + [4058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1888), + [4060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1890), + [4062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1891), + [4064] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1892), + [4066] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1891), + [4068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1894), + [4070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1895), + [4072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1897), + [4074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1898), + [4076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1900), + [4078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1901), + [4080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), + [4082] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), + [4084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [4086] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [4088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1902), + [4090] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1903), + [4092] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1902), + [4094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1904), + [4096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1905), + [4098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1906), + [4100] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1907), + [4102] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1905), + [4104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1909), + [4106] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [4108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1911), + [4110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [4112] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1233), + [4115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1912), + [4117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5), + [4119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1913), + [4121] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1914), + [4123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1915), + [4125] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1915), + [4127] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1917), [4129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1918), - [4131] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1920), - [4133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1921), - [4135] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1922), - [4137] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1923), - [4139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1923), - [4141] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1925), - [4143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1926), - [4145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1927), - [4147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1928), - [4149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1930), + [4131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1919), + [4133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1920), + [4135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1921), + [4137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1923), + [4139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1924), + [4141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1926), + [4143] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1928), + [4145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1929), + [4147] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1930), + [4149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1931), [4151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1931), - [4153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1932), - [4155] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1931), - [4157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1934), - [4159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1935), - [4161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1937), - [4163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1938), - [4165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1940), - [4167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1941), - [4169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [4171] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), - [4173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [4175] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(652), - [4178] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(653), - [4181] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(654), - [4184] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(655), - [4187] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(656), - [4190] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(657), - [4193] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(658), - [4196] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(659), - [4199] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(655), - [4202] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(662), - [4205] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1942), - [4207] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1943), - [4209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1944), - [4211] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1944), - [4213] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1946), - [4215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1947), - [4217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1948), - [4219] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1949), - [4221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1950), - [4223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1952), - [4225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1953), + [4153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1933), + [4155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1934), + [4157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1935), + [4159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1936), + [4161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1938), + [4163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1939), + [4165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1940), + [4167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1939), + [4169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1942), + [4171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1943), + [4173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1945), + [4175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1946), + [4177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1948), + [4179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1949), + [4181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [4183] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_array, 3), + [4185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [4187] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(653), + [4190] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(654), + [4193] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(655), + [4196] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(656), + [4199] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(657), + [4202] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(658), + [4205] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(659), + [4208] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(660), + [4211] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(656), + [4214] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(663), + [4217] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1950), + [4219] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1951), + [4221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1952), + [4223] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1952), + [4225] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1954), [4227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1955), - [4229] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1957), - [4231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1958), - [4233] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1959), - [4235] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1960), - [4237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1960), - [4239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1962), - [4241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1963), - [4243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1964), - [4245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1965), - [4247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1967), + [4229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1956), + [4231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1957), + [4233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1958), + [4235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1960), + [4237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1961), + [4239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1963), + [4241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1965), + [4243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1966), + [4245] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1967), + [4247] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1968), [4249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1968), - [4251] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1969), - [4253] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1968), - [4255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1971), - [4257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1972), - [4259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1974), - [4261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1975), - [4263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1977), - [4265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1978), + [4251] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1970), + [4253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1971), + [4255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1972), + [4257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1973), + [4259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1975), + [4261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1976), + [4263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1977), + [4265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1976), [4267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1979), - [4269] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), - [4271] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(680), - [4274] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(681), - [4277] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(682), - [4280] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(683), - [4283] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(684), - [4286] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(685), - [4289] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(686), - [4292] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(687), - [4295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [4297] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [4299] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), - [4301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1981), - [4303] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1982), - [4305] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), - [4307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [4309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1984), - [4311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), - [4313] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(697), - [4316] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [4318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1986), - [4320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1987), - [4322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1988), - [4324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1991), - [4326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1993), - [4328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1994), - [4330] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1995), - [4332] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1993), + [4269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1980), + [4271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1982), + [4273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1983), + [4275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1985), + [4277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1986), + [4279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), + [4281] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(681), + [4284] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(682), + [4287] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(683), + [4290] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(684), + [4293] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(685), + [4296] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(686), + [4299] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(687), + [4302] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(688), + [4305] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1988), + [4307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [4309] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [4311] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), + [4313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1989), + [4315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1990), + [4317] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), + [4319] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [4321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1992), + [4323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), + [4325] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(700), + [4328] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [4330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1994), + [4332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1995), [4334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1996), - [4336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1998), - [4338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(1999), - [4340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2000), - [4342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2001), - [4344] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1999), - [4346] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), - [4348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [4350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2009), - [4352] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1327), - [4354] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2012), - [4356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [4358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2014), - [4360] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2016), - [4362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2018), - [4364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2019), - [4366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2020), - [4368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2022), - [4370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2023), - [4372] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2023), - [4374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2025), - [4376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2026), - [4378] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2027), - [4380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2028), - [4382] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2029), - [4384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2030), - [4386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2032), - [4388] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [4390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [4392] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), - [4394] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2035), - [4396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2036), - [4398] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2036), - [4400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2038), - [4402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2040), - [4404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2042), - [4406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2043), - [4408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2044), - [4410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2042), - [4412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2045), - [4414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2046), - [4416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2047), - [4418] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2048), - [4420] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2046), - [4422] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2056), - [4424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2056), - [4426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2058), - [4428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2059), - [4430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2060), - [4432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2061), - [4434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2063), + [4336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(1999), + [4338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2001), + [4340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2002), + [4342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2003), + [4344] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2001), + [4346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2004), + [4348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2006), + [4350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2007), + [4352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2008), + [4354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2009), + [4356] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2007), + [4358] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), + [4360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [4362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2017), + [4364] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(1333), + [4366] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2020), + [4368] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [4370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2022), + [4372] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2024), + [4374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2026), + [4376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2027), + [4378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2028), + [4380] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2030), + [4382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2031), + [4384] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2031), + [4386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2033), + [4388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2034), + [4390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2035), + [4392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2036), + [4394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2037), + [4396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2038), + [4398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2040), + [4400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), + [4402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [4404] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_statement, 3), + [4406] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2043), + [4408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2044), + [4410] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2044), + [4412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2046), + [4414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2048), + [4416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2050), + [4418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2051), + [4420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2052), + [4422] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2050), + [4424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2053), + [4426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2054), + [4428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2055), + [4430] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2056), + [4432] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2054), + [4434] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2064), [4436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2064), - [4438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2065), - [4440] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2064), - [4442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2067), - [4444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2068), - [4446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2070), - [4448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2071), - [4450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2073), - [4452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2074), - [4454] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2076), + [4438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2066), + [4440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2067), + [4442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2068), + [4444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2069), + [4446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2071), + [4448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2072), + [4450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2073), + [4452] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2072), + [4454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2075), [4456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2076), - [4458] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2077), - [4460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2078), - [4462] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2079), - [4464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2080), - [4466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2081), - [4468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2082), - [4470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2083), - [4472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2084), - [4474] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2080), - [4476] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(751), - [4479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2085), - [4481] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2086), - [4483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2087), - [4485] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2087), - [4487] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2089), - [4489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2090), - [4491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2091), - [4493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2092), - [4495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2093), - [4497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2095), - [4499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2096), + [4458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2078), + [4460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2079), + [4462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2081), + [4464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2082), + [4466] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2084), + [4468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2084), + [4470] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2085), + [4472] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2086), + [4474] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2087), + [4476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2088), + [4478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2089), + [4480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2090), + [4482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2091), + [4484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2092), + [4486] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2088), + [4488] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(754), + [4491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2093), + [4493] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2094), + [4495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2095), + [4497] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2095), + [4499] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2097), [4501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2098), - [4503] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2100), - [4505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2101), - [4507] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2102), - [4509] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(770), - [4512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2103), - [4514] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2104), - [4516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2105), - [4518] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2105), - [4520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2107), - [4522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2108), - [4524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2109), - [4526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2110), - [4528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2111), - [4530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2113), - [4532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2114), + [4503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2099), + [4505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2100), + [4507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2101), + [4509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2103), + [4511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2104), + [4513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2106), + [4515] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2108), + [4517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2109), + [4519] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2110), + [4521] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(773), + [4524] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2111), + [4526] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2112), + [4528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2113), + [4530] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2113), + [4532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2115), [4534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2116), - [4536] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2118), - [4538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2119), - [4540] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2120), + [4536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2117), + [4538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2118), + [4540] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2119), [4542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2121), [4544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2122), - [4546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2123), - [4548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2125), - [4550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2126), - [4552] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2126), - [4554] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2128), - [4556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2129), - [4558] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2130), - [4560] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2131), - [4562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2132), - [4564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2133), - [4566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2135), - [4568] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2137), - [4570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2137), - [4572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2139), - [4574] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2140), + [4546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2124), + [4548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2126), + [4550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2127), + [4552] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2128), + [4554] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2129), + [4556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2130), + [4558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2131), + [4560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2133), + [4562] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2134), + [4564] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2134), + [4566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2136), + [4568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2137), + [4570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2138), + [4572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2139), + [4574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2140), [4576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2141), - [4578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2142), - [4580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2144), + [4578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2143), + [4580] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2145), [4582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2145), - [4584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2146), - [4586] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2145), - [4588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2148), - [4590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2149), - [4592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2151), - [4594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2152), - [4596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2154), - [4598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2155), - [4600] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [4602] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), - [4604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2156), - [4606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2157), - [4608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2158), - [4610] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [4612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2160), - [4614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2161), - [4616] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2161), - [4618] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [4620] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2163), - [4622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2164), - [4624] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [4626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2165), - [4628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2166), - [4630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2167), - [4632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2168), - [4634] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), - [4636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2170), - [4638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2172), - [4640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2173), - [4642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2174), - [4644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2176), - [4646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2177), - [4648] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2177), - [4650] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2179), - [4652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2180), - [4654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2181), - [4656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2182), - [4658] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2183), - [4660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2184), - [4662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2186), + [4584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2147), + [4586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2148), + [4588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2149), + [4590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2150), + [4592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2152), + [4594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2153), + [4596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2154), + [4598] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2153), + [4600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2156), + [4602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2157), + [4604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2159), + [4606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2160), + [4608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2162), + [4610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2163), + [4612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [4614] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4), + [4616] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2164), + [4618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2165), + [4620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2166), + [4622] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [4624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2168), + [4626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2169), + [4628] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2169), + [4630] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [4632] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2171), + [4634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2172), + [4636] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [4638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2173), + [4640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2174), + [4642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2175), + [4644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2176), + [4646] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 5), + [4648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2178), + [4650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2180), + [4652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2181), + [4654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2182), + [4656] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2184), + [4658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2185), + [4660] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2185), + [4662] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2187), [4664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2188), - [4666] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2189), + [4666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2189), [4668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2190), - [4670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2191), - [4672] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2193), + [4670] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2191), + [4672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2192), [4674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2194), - [4676] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2194), - [4678] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2196), - [4680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2197), - [4682] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2198), - [4684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2199), - [4686] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2200), - [4688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2201), - [4690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2203), + [4676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2196), + [4678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2197), + [4680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2198), + [4682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2199), + [4684] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2201), + [4686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2202), + [4688] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2202), + [4690] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2204), [4692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2205), - [4694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2206), + [4694] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2206), [4696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2207), - [4698] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2209), - [4700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2210), - [4702] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2210), - [4704] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2212), - [4706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2213), - [4708] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2214), - [4710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2215), - [4712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2216), - [4714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2217), - [4716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2219), + [4698] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2208), + [4700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2209), + [4702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2211), + [4704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2213), + [4706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2214), + [4708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2215), + [4710] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2217), + [4712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2218), + [4714] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2218), + [4716] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2220), [4718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2221), - [4720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2222), + [4720] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2222), [4722] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2223), - [4724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2225), - [4726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2226), - [4728] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2226), - [4730] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2228), - [4732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2229), - [4734] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2230), - [4736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2231), - [4738] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2232), - [4740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2233), - [4742] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2235), + [4724] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2224), + [4726] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2225), + [4728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2227), + [4730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2229), + [4732] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2230), + [4734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2231), + [4736] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2233), + [4738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2234), + [4740] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2234), + [4742] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2236), [4744] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2237), - [4746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2238), + [4746] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2238), [4748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2239), - [4750] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2241), - [4752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2242), - [4754] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2242), - [4756] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2244), - [4758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2245), - [4760] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2246), - [4762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2247), - [4764] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2248), - [4766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2249), - [4768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2251), + [4750] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2240), + [4752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2241), + [4754] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2243), + [4756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2245), + [4758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2246), + [4760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2247), + [4762] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2249), + [4764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2250), + [4766] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2250), + [4768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2252), [4770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2253), - [4772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2254), - [4774] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), - [4776] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), - [4778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2255), - [4780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2256), - [4782] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 4), - [4784] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), - [4786] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2257), - [4788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2257), - [4790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), - [4792] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), - [4794] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2259), - [4796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [4798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), - [4800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2260), - [4802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2261), - [4804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2262), - [4806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2264), - [4808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2265), - [4810] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2266), - [4812] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2265), - [4814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2268), - [4816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2269), - [4818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2271), - [4820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2272), - [4822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2274), - [4824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2275), - [4826] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(959), - [4829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2276), - [4831] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2277), - [4833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2278), - [4835] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2278), - [4837] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2280), - [4839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2281), - [4841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2282), - [4843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2283), - [4845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2284), - [4847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2286), - [4849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2287), + [4772] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2254), + [4774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2255), + [4776] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2256), + [4778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2257), + [4780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2259), + [4782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2261), + [4784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2262), + [4786] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [4788] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4, .alias_sequence_id = 6), + [4790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2263), + [4792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2264), + [4794] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 4), + [4796] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 4), + [4798] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2265), + [4800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2265), + [4802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [4804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [4806] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2267), + [4808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [4810] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5), + [4812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2268), + [4814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2269), + [4816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2270), + [4818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2272), + [4820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2273), + [4822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2274), + [4824] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2273), + [4826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2276), + [4828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2277), + [4830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2279), + [4832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2280), + [4834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2282), + [4836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2283), + [4838] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(962), + [4841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2284), + [4843] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2285), + [4845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2286), + [4847] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2286), + [4849] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2288), [4851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2289), - [4853] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2291), - [4855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2292), - [4857] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2293), - [4859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [4861] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [4863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2294), - [4865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2295), - [4867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2296), - [4869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2297), - [4871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [4873] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [4875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2299), - [4877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [4879] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [4881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2301), - [4883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), - [4885] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), - [4887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2303), - [4889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), - [4891] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), - [4893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2304), - [4895] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), - [4897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2305), - [4899] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2306), - [4901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2306), - [4903] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2308), - [4905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2309), - [4907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2310), - [4909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2311), - [4911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2313), + [4853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2290), + [4855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2291), + [4857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2292), + [4859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2294), + [4861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2295), + [4863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2297), + [4865] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2299), + [4867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2300), + [4869] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2301), + [4871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [4873] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [4875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2302), + [4877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2303), + [4879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2304), + [4881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2305), + [4883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [4885] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [4887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2307), + [4889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [4891] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [4893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2309), + [4895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [4897] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [4899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2311), + [4901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [4903] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [4905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2312), + [4907] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 2), + [4909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2313), + [4911] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2314), [4913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2314), - [4915] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2315), - [4917] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2314), - [4919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2317), - [4921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2318), - [4923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2320), - [4925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2321), - [4927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2323), - [4929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2324), - [4931] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2325), - [4933] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), - [4935] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2326), - [4937] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 4), - [4939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 4), - [4941] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), - [4943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [4945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2327), - [4947] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2327), - [4949] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2330), - [4951] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2333), - [4953] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2334), - [4955] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2337), - [4957] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), - [4959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2339), - [4961] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2340), - [4963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2340), - [4965] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2341), - [4967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2342), - [4969] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2343), - [4971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2344), - [4973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2345), - [4975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2346), - [4977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2347), - [4979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2348), - [4981] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2344), - [4983] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), - [4985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), - [4987] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), - [4989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), - [4991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2350), - [4993] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 4), - [4995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 4), - [4997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2351), - [4999] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1020), - [5002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2353), - [5004] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2354), - [5006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2355), - [5008] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2355), - [5010] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2357), - [5012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2358), - [5014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2359), - [5016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2360), - [5018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2361), + [4915] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2316), + [4917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2317), + [4919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2318), + [4921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2319), + [4923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2321), + [4925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2322), + [4927] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2323), + [4929] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2322), + [4931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2325), + [4933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2326), + [4935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2328), + [4937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2329), + [4939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2331), + [4941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2332), + [4943] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2333), + [4945] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2334), + [4947] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), + [4949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 4, .alias_sequence_id = 5), + [4951] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 2), + [4953] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2336), + [4955] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_while_statement, 4), + [4957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 4), + [4959] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 4), + [4961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [4963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2337), + [4965] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2337), + [4967] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2340), + [4969] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2343), + [4971] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2344), + [4973] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2347), + [4975] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 2), + [4977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2349), + [4979] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2350), + [4981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2350), + [4983] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2351), + [4985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2352), + [4987] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2353), + [4989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2354), + [4991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2355), + [4993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2356), + [4995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2357), + [4997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2358), + [4999] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2354), + [5001] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 4), + [5003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4), + [5005] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 4), + [5007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 4), + [5009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2360), + [5011] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_bracket_command, 4), + [5013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 4), + [5015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2361), + [5017] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1024), [5020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2363), - [5022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2364), - [5024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2366), - [5026] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2368), - [5028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2369), - [5030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2370), - [5032] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1039), - [5035] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2371), - [5037] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2372), - [5039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2373), - [5041] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2373), - [5043] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2375), - [5045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2376), - [5047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2377), - [5049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2378), - [5051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2379), + [5022] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2364), + [5024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2365), + [5026] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2365), + [5028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2367), + [5030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2368), + [5032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2369), + [5034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2370), + [5036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2371), + [5038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2373), + [5040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2374), + [5042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2376), + [5044] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2378), + [5046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2379), + [5048] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2380), + [5050] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1043), [5053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2381), - [5055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2382), - [5057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2384), - [5059] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2386), - [5061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2387), - [5063] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2388), - [5065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2389), - [5067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2390), - [5069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2391), - [5071] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2393), - [5073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2394), - [5075] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2394), + [5055] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2382), + [5057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2383), + [5059] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2383), + [5061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2385), + [5063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2386), + [5065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2387), + [5067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2388), + [5069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2389), + [5071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2391), + [5073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2392), + [5075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2394), [5077] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2396), [5079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2397), [5081] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2398), [5083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2399), - [5085] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2400), + [5085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2400), [5087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2401), - [5089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2403), - [5091] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2406), - [5093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2406), - [5095] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2408), - [5097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2409), - [5099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2410), - [5101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2411), - [5103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2413), - [5105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2414), - [5107] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2415), - [5109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2414), - [5111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2417), - [5113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2418), - [5115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2420), - [5117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2421), - [5119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2423), - [5121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2424), - [5123] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), - [5125] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2425), - [5127] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), - [5129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [5131] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2426), - [5133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2426), - [5135] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2428), - [5137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2429), - [5139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2430), - [5141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2431), - [5143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2433), - [5145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2434), - [5147] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2435), - [5149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2434), - [5151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2437), - [5153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2438), - [5155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2440), - [5157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2441), - [5159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2443), - [5161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2444), - [5163] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2446), - [5165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2446), - [5167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2447), - [5169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2448), - [5171] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2449), + [5089] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2403), + [5091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2404), + [5093] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2404), + [5095] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2406), + [5097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2407), + [5099] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2408), + [5101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2409), + [5103] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2410), + [5105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2411), + [5107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2413), + [5109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2416), + [5111] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2416), + [5113] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2418), + [5115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2419), + [5117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2420), + [5119] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2421), + [5121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2423), + [5123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2424), + [5125] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2425), + [5127] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2424), + [5129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2427), + [5131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2428), + [5133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2430), + [5135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2431), + [5137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2433), + [5139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2434), + [5141] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), + [5143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2435), + [5145] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command, 4), + [5147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [5149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2436), + [5151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2436), + [5153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2438), + [5155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2439), + [5157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2440), + [5159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2441), + [5161] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2443), + [5163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2444), + [5165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2445), + [5167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2444), + [5169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2447), + [5171] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2448), [5173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2450), [5175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2451), - [5177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2452), - [5179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2453), - [5181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2454), - [5183] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2450), - [5185] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1118), - [5188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2455), - [5190] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2456), - [5192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2457), - [5194] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2457), - [5196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2459), - [5198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2460), - [5200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2461), - [5202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2462), - [5204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2463), + [5177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2453), + [5179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2454), + [5181] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2456), + [5183] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2456), + [5185] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2457), + [5187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2458), + [5189] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2459), + [5191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2460), + [5193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2461), + [5195] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2462), + [5197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2463), + [5199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2464), + [5201] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2460), + [5203] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1122), [5206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2465), - [5208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2466), - [5210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2468), - [5212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2470), - [5214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2471), - [5216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2472), - [5218] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1137), - [5221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2473), - [5223] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2474), - [5225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2475), - [5227] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2475), - [5229] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2477), - [5231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2478), - [5233] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2479), - [5235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2480), - [5237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2481), + [5208] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2466), + [5210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2467), + [5212] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2467), + [5214] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2469), + [5216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2470), + [5218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2471), + [5220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2472), + [5222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2473), + [5224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2475), + [5226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2476), + [5228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2478), + [5230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2480), + [5232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2481), + [5234] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2482), + [5236] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1141), [5239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2483), - [5241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2484), - [5243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2486), - [5245] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2488), - [5247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2489), - [5249] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2490), - [5251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2491), - [5253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2492), - [5255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2493), - [5257] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2495), - [5259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2496), - [5261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2496), + [5241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2484), + [5243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2485), + [5245] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2485), + [5247] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2487), + [5249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2488), + [5251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2489), + [5253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2490), + [5255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2491), + [5257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2493), + [5259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2494), + [5261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2496), [5263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2498), [5265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2499), [5267] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2500), [5269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2501), - [5271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2502), + [5271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2502), [5273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2503), - [5275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2505), - [5277] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2507), - [5279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2507), - [5281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2509), - [5283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2510), - [5285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2511), - [5287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2512), - [5289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2514), - [5291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2515), - [5293] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2516), - [5295] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2515), - [5297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2518), - [5299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2519), - [5301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2521), - [5303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2522), - [5305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2524), - [5307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2525), - [5309] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1200), - [5312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2526), - [5314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2527), - [5316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2528), - [5318] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2528), - [5320] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2530), - [5322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2531), - [5324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2532), - [5326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2533), - [5328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2534), + [5275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2505), + [5277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2506), + [5279] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2506), + [5281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2508), + [5283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2509), + [5285] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2510), + [5287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2511), + [5289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2512), + [5291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2513), + [5293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2515), + [5295] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2517), + [5297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2517), + [5299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2519), + [5301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2520), + [5303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2521), + [5305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2522), + [5307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2524), + [5309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2525), + [5311] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2526), + [5313] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2525), + [5315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2528), + [5317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2529), + [5319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2531), + [5321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2532), + [5323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2534), + [5325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2535), + [5327] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1204), [5330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2536), - [5332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2537), - [5334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2539), - [5336] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2541), - [5338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2542), - [5340] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2543), - [5342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2544), - [5344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2545), - [5346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2546), - [5348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2548), - [5350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2549), - [5352] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2550), - [5354] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2549), + [5332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2537), + [5334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2538), + [5336] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2538), + [5338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2540), + [5340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2541), + [5342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2542), + [5344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2543), + [5346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2544), + [5348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2546), + [5350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2547), + [5352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2549), + [5354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2551), [5356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2552), - [5358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2553), - [5360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2555), - [5362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2556), - [5364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [5366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [5368] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1218), - [5371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), - [5373] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1220), - [5376] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1221), - [5379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [5381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6), - [5383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2558), - [5385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2559), - [5387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2560), - [5389] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2562), - [5391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2563), - [5393] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2563), - [5395] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2565), - [5397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2566), - [5399] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2567), + [5358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2553), + [5360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2554), + [5362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2555), + [5364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2556), + [5366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2558), + [5368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2559), + [5370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2560), + [5372] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2559), + [5374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2562), + [5376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2563), + [5378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2565), + [5380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2566), + [5382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [5384] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [5386] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1222), + [5389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), + [5391] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1224), + [5394] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), SHIFT_REPEAT(1225), + [5397] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [5399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6), [5401] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2568), - [5403] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2569), + [5403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2569), [5405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2570), - [5407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2572), - [5409] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1250), - [5412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2574), - [5414] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2575), - [5416] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2576), - [5418] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2576), - [5420] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2578), - [5422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2579), - [5424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2580), - [5426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2581), - [5428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2582), + [5407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2572), + [5409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2573), + [5411] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2573), + [5413] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2575), + [5415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2576), + [5417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2577), + [5419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2578), + [5421] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2579), + [5423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2580), + [5425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2582), + [5427] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1254), [5430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2584), - [5432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2585), - [5434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2587), - [5436] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2589), - [5438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2590), - [5440] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2591), - [5442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2592), - [5444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2593), - [5446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2594), - [5448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2596), - [5450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2597), - [5452] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2597), + [5432] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2585), + [5434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2586), + [5436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2586), + [5438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2588), + [5440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2589), + [5442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2590), + [5444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2591), + [5446] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2592), + [5448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2594), + [5450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2595), + [5452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2597), [5454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2599), [5456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2600), [5458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2601), [5460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2602), - [5462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2603), + [5462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2603), [5464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2604), - [5466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2606), - [5468] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1289), - [5471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2608), - [5473] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2609), - [5475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2610), - [5477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2610), - [5479] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2612), - [5481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2613), - [5483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2614), - [5485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2615), - [5487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2616), + [5466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2606), + [5468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2607), + [5470] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2607), + [5472] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2609), + [5474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2610), + [5476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2611), + [5478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2612), + [5480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2613), + [5482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2614), + [5484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2616), + [5486] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1293), [5489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2618), - [5491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2619), - [5493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2621), - [5495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2623), - [5497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2624), - [5499] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2625), - [5501] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2626), - [5503] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [5505] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), - [5507] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [5491] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2619), + [5493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2620), + [5495] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2620), + [5497] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2622), + [5499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2623), + [5501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2624), + [5503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2625), + [5505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2626), + [5507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2628), [5509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2629), - [5511] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2630), - [5513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2630), - [5515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2631), - [5517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2632), - [5519] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2632), - [5521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2634), - [5523] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2635), - [5525] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), - [5527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2636), - [5529] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2637), - [5531] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2638), - [5533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2639), + [5511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2631), + [5513] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2633), + [5515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2634), + [5517] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2635), + [5519] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [5521] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), + [5523] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [5525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2637), + [5527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2638), + [5529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2638), + [5531] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2639), + [5533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2640), [5535] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2640), - [5537] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2641), - [5539] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2642), - [5541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2643), - [5543] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2644), - [5545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2645), - [5547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2646), + [5537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2642), + [5539] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2643), + [5541] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 2, .alias_sequence_id = 1), + [5543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2644), + [5545] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2645), + [5547] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2646), [5549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2647), - [5551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2648), - [5553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2649), + [5551] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2648), + [5553] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2649), [5555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2650), - [5557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2659), - [5559] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2662), - [5561] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 2), - [5563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2663), - [5565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2667), - [5567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2668), - [5569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2669), - [5571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2670), - [5573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2672), - [5575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2673), - [5577] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2674), - [5579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2673), - [5581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2676), - [5583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2677), - [5585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2679), - [5587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2680), - [5589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2682), - [5591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2683), - [5593] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), - [5595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2684), - [5597] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2685), - [5600] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1325), - [5603] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1326), - [5606] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2686), - [5609] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1328), - [5612] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1329), - [5615] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1330), - [5618] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1331), - [5621] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2686), - [5624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [5626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), - [5628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2689), - [5630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [5632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2691), - [5634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2692), - [5636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2693), - [5638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2694), - [5640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2696), - [5642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2698), - [5644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2700), - [5646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2701), - [5648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), - [5650] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2702), - [5652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2702), - [5654] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2704), - [5656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2705), + [5557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2651), + [5559] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2652), + [5561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2653), + [5563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2654), + [5565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2655), + [5567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2656), + [5569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2657), + [5571] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2658), + [5573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2667), + [5575] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2670), + [5577] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 2), + [5579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2671), + [5581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2675), + [5583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2676), + [5585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2677), + [5587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2678), + [5589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2680), + [5591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2681), + [5593] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2682), + [5595] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2681), + [5597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2684), + [5599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2685), + [5601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2687), + [5603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2688), + [5605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2690), + [5607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2691), + [5609] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [5611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2692), + [5613] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2693), + [5616] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1331), + [5619] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1332), + [5622] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2694), + [5625] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1334), + [5628] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1335), + [5631] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1336), + [5634] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(1337), + [5637] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2694), + [5640] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [5642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [5644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2697), + [5646] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [5648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2699), + [5650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2700), + [5652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2701), + [5654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2702), + [5656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2704), [5658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2706), - [5660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2707), + [5660] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2708), [5662] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2709), - [5664] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2710), - [5666] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2711), - [5668] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2710), - [5670] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2713), - [5672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2714), - [5674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2716), - [5676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2717), - [5678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2719), - [5680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2720), - [5682] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1373), - [5685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2721), - [5687] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2722), - [5689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2723), - [5691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2723), - [5693] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2725), - [5695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2726), - [5697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2727), - [5699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2728), + [5664] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), + [5666] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2710), + [5668] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2710), + [5670] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2712), + [5672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2713), + [5674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2714), + [5676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2715), + [5678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2717), + [5680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2718), + [5682] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2719), + [5684] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2718), + [5686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2721), + [5688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2722), + [5690] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2724), + [5692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2725), + [5694] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2727), + [5696] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2728), + [5698] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1379), [5701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2729), - [5703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2731), - [5705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2732), - [5707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2734), - [5709] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2736), - [5711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2737), - [5713] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2738), - [5715] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2739), - [5717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2740), - [5719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2740), - [5721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2741), - [5723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2743), - [5725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2745), - [5727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2746), - [5729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2747), - [5731] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2745), + [5703] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2730), + [5705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2731), + [5707] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2731), + [5709] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2733), + [5711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2734), + [5713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2735), + [5715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2736), + [5717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2737), + [5719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2739), + [5721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2740), + [5723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2742), + [5725] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2744), + [5727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2745), + [5729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2746), + [5731] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2747), [5733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2748), - [5735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2749), - [5737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2750), + [5735] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2748), + [5737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2749), [5739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2751), - [5741] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2749), - [5743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2759), - [5745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2760), - [5747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2761), - [5749] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2763), - [5751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2764), - [5753] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2764), - [5755] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2766), - [5757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2767), - [5759] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2768), - [5761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2769), - [5763] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2770), - [5765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2771), - [5767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2773), - [5769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2775), - [5771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2776), - [5773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2777), - [5775] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2779), - [5777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2780), - [5779] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2780), - [5781] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2782), - [5783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2783), - [5785] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2784), - [5787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2785), - [5789] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2786), - [5791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2787), - [5793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2789), - [5795] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2791), - [5797] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2792), - [5799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2793), - [5801] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2794), - [5803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2796), - [5805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2798), - [5807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2800), - [5809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2801), - [5811] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1457), - [5814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2802), - [5816] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2803), - [5818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2804), - [5820] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2804), - [5822] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2806), - [5824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2807), - [5826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2808), - [5828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2809), + [5741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2753), + [5743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2754), + [5745] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2755), + [5747] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2753), + [5749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2756), + [5751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2757), + [5753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2758), + [5755] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2759), + [5757] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2757), + [5759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2767), + [5761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2768), + [5763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2769), + [5765] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2771), + [5767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2772), + [5769] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2772), + [5771] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2774), + [5773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2775), + [5775] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2776), + [5777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2777), + [5779] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2778), + [5781] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2779), + [5783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2781), + [5785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2783), + [5787] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2784), + [5789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2785), + [5791] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2787), + [5793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2788), + [5795] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2788), + [5797] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2790), + [5799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2791), + [5801] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2792), + [5803] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2793), + [5805] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2794), + [5807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2795), + [5809] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2797), + [5811] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2799), + [5813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2800), + [5815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2801), + [5817] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2802), + [5819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2804), + [5821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2806), + [5823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2808), + [5825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2809), + [5827] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1463), [5830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2810), - [5832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2812), - [5834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2813), - [5836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2815), - [5838] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2817), - [5840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2818), - [5842] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2819), - [5844] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), - [5846] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), - [5848] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [5850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2820), - [5852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2821), - [5854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2822), - [5856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2823), - [5858] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [5860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2825), - [5862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [5864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2827), - [5866] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [5832] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2811), + [5834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2812), + [5836] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2812), + [5838] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2814), + [5840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2815), + [5842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2816), + [5844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2817), + [5846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2818), + [5848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2820), + [5850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2821), + [5852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2823), + [5854] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2825), + [5856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2826), + [5858] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2827), + [5860] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 9), + [5862] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5), + [5864] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [5866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2828), [5868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2829), - [5870] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), - [5872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2830), - [5874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2831), - [5876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2832), - [5878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2833), - [5880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2834), - [5882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2836), - [5884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2838), - [5886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2840), - [5888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2841), - [5890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2842), - [5892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2843), - [5894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2844), - [5896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2845), - [5898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2847), - [5900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2849), - [5902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2851), - [5904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2852), - [5906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2853), - [5908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2854), - [5910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2855), - [5912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2856), - [5914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2858), - [5916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2860), - [5918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2862), - [5920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2863), - [5922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2864), - [5924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2865), - [5926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2866), - [5928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2867), - [5930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2869), - [5932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2871), - [5934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2873), - [5936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2874), - [5938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2875), - [5940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2876), - [5942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2877), - [5944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2878), - [5946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2880), - [5948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2882), - [5950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2884), - [5952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2885), - [5954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2886), - [5956] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [5958] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), - [5960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2887), - [5962] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5), - [5964] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5), - [5966] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1592), - [5969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2888), - [5971] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2889), - [5973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2890), - [5975] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2890), - [5977] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2892), - [5979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2893), - [5981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2894), - [5983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2895), + [5870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2830), + [5872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2831), + [5874] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [5876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2833), + [5878] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [5880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2835), + [5882] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), + [5884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2837), + [5886] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 12), + [5888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2838), + [5890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2839), + [5892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2840), + [5894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2841), + [5896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2842), + [5898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2844), + [5900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2846), + [5902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2848), + [5904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2849), + [5906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2850), + [5908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2851), + [5910] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2852), + [5912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2853), + [5914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2855), + [5916] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2857), + [5918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2859), + [5920] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2860), + [5922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2861), + [5924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2862), + [5926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2863), + [5928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2864), + [5930] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2866), + [5932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2868), + [5934] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2870), + [5936] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2871), + [5938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2872), + [5940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2873), + [5942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2874), + [5944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2875), + [5946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2877), + [5948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2879), + [5950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2881), + [5952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2882), + [5954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2883), + [5956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2884), + [5958] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2885), + [5960] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2886), + [5962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2888), + [5964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2890), + [5966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2892), + [5968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2893), + [5970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2894), + [5972] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [5974] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5, .alias_sequence_id = 6), + [5976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2895), + [5978] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 5), + [5980] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 5), + [5982] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1598), [5985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2896), - [5987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2898), - [5989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2899), - [5991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2901), - [5993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2903), - [5995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2904), - [5997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2905), - [5999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2906), - [6001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2907), - [6003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2908), - [6005] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2910), - [6007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2911), - [6009] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2911), - [6011] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2913), - [6013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2914), - [6015] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2915), - [6017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2916), - [6019] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2917), - [6021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2918), - [6023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2920), - [6025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [6027] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [6029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [6031] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [6033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [6035] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), - [6037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [6039] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [6041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2922), - [6043] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [6045] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [6047] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2923), - [6049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [6051] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [6053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2924), - [6055] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), - [6057] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), - [6059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [6061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [6063] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), - [6065] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1647), - [6068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2925), - [6070] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2926), - [6072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2927), - [6074] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2927), - [6076] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2929), - [6078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2930), - [6080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2931), - [6082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2932), + [5987] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2897), + [5989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2898), + [5991] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2898), + [5993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2900), + [5995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2901), + [5997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2902), + [5999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2903), + [6001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2904), + [6003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2906), + [6005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2907), + [6007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2909), + [6009] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2911), + [6011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2912), + [6013] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2913), + [6015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2914), + [6017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2915), + [6019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2916), + [6021] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2918), + [6023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2919), + [6025] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2919), + [6027] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2921), + [6029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2922), + [6031] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2923), + [6033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2924), + [6035] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2925), + [6037] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2926), + [6039] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2928), + [6041] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [6043] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [6045] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [6047] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [6049] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [6051] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6), + [6053] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [6055] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [6057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2930), + [6059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [6061] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [6063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2931), + [6065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [6067] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [6069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2932), + [6071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [6073] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [6075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [6077] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), + [6079] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_array, 3), + [6081] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1653), [6084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2933), - [6086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2935), - [6088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2936), - [6090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2938), - [6092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2940), - [6094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2941), - [6096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2942), - [6098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2943), - [6100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), - [6102] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), - [6104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [6106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2945), - [6108] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [6110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), - [6112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2947), - [6114] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2949), - [6116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), - [6118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [6120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2951), - [6122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2953), - [6124] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), - [6126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), - [6128] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), - [6130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2956), - [6132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2957), - [6134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2957), + [6086] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2934), + [6088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2935), + [6090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2935), + [6092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2937), + [6094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2938), + [6096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2939), + [6098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2940), + [6100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2941), + [6102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2943), + [6104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2944), + [6106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2946), + [6108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2948), + [6110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2949), + [6112] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2950), + [6114] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2952), + [6116] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_do_group, 3), + [6118] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 5), + [6120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [6122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2953), + [6124] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [6126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .alias_sequence_id = 3), + [6128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2955), + [6130] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2957), + [6132] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 5), + [6134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), [6136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2959), - [6138] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2961), - [6140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2963), - [6142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2964), - [6144] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2965), - [6146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2963), - [6148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2966), - [6150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2967), - [6152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2968), + [6138] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2961), + [6140] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 5), + [6142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5), + [6144] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_compound_statement, 3), + [6146] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2964), + [6148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2965), + [6150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2965), + [6152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2967), [6154] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2969), - [6156] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2967), - [6158] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), - [6160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), - [6162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2977), - [6164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2978), - [6166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2979), - [6168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2980), - [6170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2982), - [6172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2983), - [6174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2983), - [6176] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2985), - [6178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2986), - [6180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2987), - [6182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2988), - [6184] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2989), - [6186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2990), - [6188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2992), - [6190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2994), - [6192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2995), - [6194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2996), - [6196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2998), - [6198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2999), - [6200] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2999), - [6202] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3001), - [6204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3002), - [6206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3003), - [6208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3004), - [6210] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3005), - [6212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3006), - [6214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3008), - [6216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3010), - [6218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3011), - [6220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3012), - [6222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3013), - [6224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3015), - [6226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3017), - [6228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3019), - [6230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3020), - [6232] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1750), - [6235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3021), - [6237] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3022), - [6239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3023), - [6241] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3023), - [6243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3025), - [6245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3026), - [6247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3027), - [6249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3028), + [6156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2971), + [6158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2972), + [6160] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2973), + [6162] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2971), + [6164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2974), + [6166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2975), + [6168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2976), + [6170] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2977), + [6172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2975), + [6174] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subshell, 5), + [6176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_subshell, 5), + [6178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2985), + [6180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2986), + [6182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2987), + [6184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2988), + [6186] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2990), + [6188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2991), + [6190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2991), + [6192] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2993), + [6194] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2994), + [6196] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2995), + [6198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2996), + [6200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2997), + [6202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2998), + [6204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3000), + [6206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3002), + [6208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3003), + [6210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3004), + [6212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3006), + [6214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3007), + [6216] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3007), + [6218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3009), + [6220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3010), + [6222] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3011), + [6224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3012), + [6226] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3013), + [6228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3014), + [6230] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3016), + [6232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3018), + [6234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3019), + [6236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3020), + [6238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3021), + [6240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3023), + [6242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3025), + [6244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3027), + [6246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3028), + [6248] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1758), [6251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3029), - [6253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3031), - [6255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3032), - [6257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3034), - [6259] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3036), - [6261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3037), - [6263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3038), - [6265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), - [6267] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1771), - [6270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3039), - [6272] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3040), - [6274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3041), - [6276] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3041), - [6278] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3043), - [6280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3044), - [6282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3045), - [6284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3046), + [6253] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3030), + [6255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3031), + [6257] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3031), + [6259] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3033), + [6261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3034), + [6263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3035), + [6265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3036), + [6267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3037), + [6269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3039), + [6271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3040), + [6273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3042), + [6275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3044), + [6277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3045), + [6279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3046), + [6281] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), + [6283] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1779), [6286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3047), - [6288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3049), - [6290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3050), - [6292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3052), - [6294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3054), - [6296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3055), - [6298] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3056), - [6300] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3057), - [6302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3058), - [6304] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3058), - [6306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3059), - [6308] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3061), - [6310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3063), - [6312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3064), - [6314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3065), - [6316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3063), + [6288] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3048), + [6290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3049), + [6292] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3049), + [6294] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3051), + [6296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3052), + [6298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3053), + [6300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3054), + [6302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3055), + [6304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3057), + [6306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3058), + [6308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3060), + [6310] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3062), + [6312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3063), + [6314] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3064), + [6316] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3065), [6318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3066), - [6320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3067), - [6322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3068), + [6320] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3066), + [6322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3067), [6324] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3069), - [6326] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3067), - [6328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3077), - [6330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3078), - [6332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3079), - [6334] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3081), - [6336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3082), - [6338] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3082), - [6340] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3084), - [6342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3085), - [6344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3086), - [6346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3087), - [6348] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3088), - [6350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3089), - [6352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3091), - [6354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3093), - [6356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3094), - [6358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3095), - [6360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3097), - [6362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3098), - [6364] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3098), - [6366] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3100), - [6368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3101), - [6370] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3102), - [6372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3103), - [6374] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3104), - [6376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3105), - [6378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3107), - [6380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3109), - [6382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3110), - [6384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3111), - [6386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3112), - [6388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3114), - [6390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3116), - [6392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3118), - [6394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3119), - [6396] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1855), - [6399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3120), - [6401] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3121), - [6403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3122), - [6405] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3122), - [6407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3124), - [6409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3125), - [6411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3126), - [6413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3127), + [6326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3071), + [6328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3072), + [6330] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3073), + [6332] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3071), + [6334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3074), + [6336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3075), + [6338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3076), + [6340] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3077), + [6342] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3075), + [6344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3085), + [6346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3086), + [6348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3087), + [6350] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3089), + [6352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3090), + [6354] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3090), + [6356] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3092), + [6358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3093), + [6360] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3094), + [6362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3095), + [6364] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3096), + [6366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3097), + [6368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3099), + [6370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3101), + [6372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3102), + [6374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3103), + [6376] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3105), + [6378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3106), + [6380] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3106), + [6382] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3108), + [6384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3109), + [6386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3110), + [6388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3111), + [6390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3112), + [6392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3113), + [6394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3115), + [6396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3117), + [6398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3118), + [6400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3119), + [6402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3120), + [6404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3122), + [6406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3124), + [6408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3126), + [6410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3127), + [6412] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1863), [6415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3128), - [6417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3130), - [6419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3131), - [6421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3133), - [6423] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3135), - [6425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3136), - [6427] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3137), - [6429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3138), - [6431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3139), - [6433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3140), - [6435] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3142), - [6437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3143), - [6439] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3143), - [6441] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3145), - [6443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3146), - [6445] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3147), - [6447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3148), - [6449] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3149), - [6451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3150), - [6453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3152), - [6455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3154), - [6457] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3155), - [6459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3156), - [6461] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3156), - [6463] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3158), - [6465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3159), - [6467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3160), - [6469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3161), + [6417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3129), + [6419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3130), + [6421] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3130), + [6423] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3132), + [6425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3133), + [6427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3134), + [6429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3135), + [6431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3136), + [6433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3138), + [6435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3139), + [6437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3141), + [6439] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3143), + [6441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3144), + [6443] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3145), + [6445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3146), + [6447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3147), + [6449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3148), + [6451] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3150), + [6453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3151), + [6455] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3151), + [6457] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3153), + [6459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3154), + [6461] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3155), + [6463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3156), + [6465] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3157), + [6467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3158), + [6469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3160), [6471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3162), - [6473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3164), - [6475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3165), - [6477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3167), - [6479] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3169), - [6481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3170), - [6483] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3171), - [6485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3172), - [6487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3173), - [6489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3174), - [6491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3175), - [6493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3177), - [6495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3179), - [6497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3181), - [6499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3182), - [6501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3183), - [6503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3184), - [6505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3185), - [6507] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3187), - [6509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3188), - [6511] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3188), - [6513] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3190), - [6515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3191), - [6517] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3192), - [6519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3193), - [6521] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3194), - [6523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3195), - [6525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3197), - [6527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3199), - [6529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3200), - [6531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3201), - [6533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3202), - [6535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3204), - [6537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3206), - [6539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3208), - [6541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3209), - [6543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3210), - [6545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3211), - [6547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3212), - [6549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3214), - [6551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3215), - [6553] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3215), - [6555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3217), - [6557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3218), - [6559] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3219), - [6561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3220), - [6563] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3221), - [6565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3222), - [6567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3224), - [6569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3226), - [6571] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), - [6573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [6575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), - [6577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), - [6579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3227), - [6581] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), - [6583] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [6585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [6587] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), - [6589] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3230), - [6591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3233), - [6593] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3234), - [6595] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3235), - [6597] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3236), - [6599] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3237), - [6601] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3238), - [6603] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3239), - [6605] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3240), + [6473] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3163), + [6475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3164), + [6477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3164), + [6479] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3166), + [6481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3167), + [6483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3168), + [6485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3169), + [6487] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3170), + [6489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3172), + [6491] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3173), + [6493] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3175), + [6495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3177), + [6497] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3178), + [6499] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3179), + [6501] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3180), + [6503] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3181), + [6505] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3182), + [6507] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3183), + [6509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3185), + [6511] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3187), + [6513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3189), + [6515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3190), + [6517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3191), + [6519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3192), + [6521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3193), + [6523] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3195), + [6525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3196), + [6527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3196), + [6529] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3198), + [6531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3199), + [6533] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3200), + [6535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3201), + [6537] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3202), + [6539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3203), + [6541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3205), + [6543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3207), + [6545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3208), + [6547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3209), + [6549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3210), + [6551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3212), + [6553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3214), + [6555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3216), + [6557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3217), + [6559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3218), + [6561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3219), + [6563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3220), + [6565] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3222), + [6567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3223), + [6569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3223), + [6571] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3225), + [6573] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3226), + [6575] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3227), + [6577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3228), + [6579] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3229), + [6581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3230), + [6583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3232), + [6585] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), + [6587] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [6589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2, .alias_sequence_id = 3), + [6591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), + [6593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3234), + [6595] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), + [6597] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [6599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [6601] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .alias_sequence_id = 1), + [6603] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3237), + [6605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3240), [6607] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3241), [6609] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3242), - [6611] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3246), - [6613] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3247), - [6615] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3248), - [6617] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3249), - [6619] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3250), - [6621] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3251), - [6623] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3252), + [6611] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3243), + [6613] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3244), + [6615] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3245), + [6617] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3246), + [6619] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3247), + [6621] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3248), + [6623] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3249), [6625] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3253), [6627] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3254), - [6629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3257), - [6631] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3259), - [6633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3261), - [6635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3262), - [6637] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3263), - [6639] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3261), - [6641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3264), - [6643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3265), - [6645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3266), - [6647] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3267), - [6649] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3265), - [6651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3275), - [6653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), - [6655] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3276), - [6657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3277), - [6659] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3278), - [6661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3279), - [6663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3280), - [6665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3281), - [6667] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3282), + [6629] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3255), + [6631] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3256), + [6633] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3257), + [6635] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3258), + [6637] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3259), + [6639] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3260), + [6641] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3261), + [6643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3264), + [6645] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3266), + [6647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3268), + [6649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3269), + [6651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3270), + [6653] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3268), + [6655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3271), + [6657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3272), + [6659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3273), + [6661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3274), + [6663] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3272), + [6665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3282), + [6667] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 3, .alias_sequence_id = 1), [6669] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3283), [6671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3284), - [6673] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2643), - [6675] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2644), - [6677] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3285), - [6679] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2646), - [6681] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2647), - [6683] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2648), - [6685] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2649), - [6687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3289), - [6689] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2642), - [6691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2645), - [6693] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1987), - [6696] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1986), - [6699] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 3), - [6701] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), - [6703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [6705] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [6707] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 3), - [6709] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3295), - [6711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3296), - [6713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3300), - [6715] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3301), - [6717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3302), - [6719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3302), - [6721] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3304), - [6723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3305), - [6725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3306), + [6673] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3285), + [6675] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3286), + [6677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3287), + [6679] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3288), + [6681] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3289), + [6683] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3290), + [6685] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3291), + [6687] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2651), + [6689] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2652), + [6691] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3292), + [6693] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2654), + [6695] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2655), + [6697] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2656), + [6699] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(2657), + [6701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3296), + [6703] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2650), + [6705] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(2653), + [6707] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_item_repeat1, 2), SHIFT_REPEAT(1995), + [6710] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(1994), + [6713] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 3), + [6715] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), + [6717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [6719] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [6721] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 3), + [6723] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3302), + [6725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3303), [6727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3307), - [6729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3308), - [6731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3310), - [6733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3311), - [6735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3313), - [6737] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3315), - [6739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3316), - [6741] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3317), - [6743] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), - [6745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3318), - [6747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3320), - [6749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3322), - [6751] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [6729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3308), + [6731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3309), + [6733] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3309), + [6735] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3311), + [6737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3312), + [6739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3313), + [6741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3314), + [6743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3315), + [6745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3317), + [6747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3318), + [6749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3320), + [6751] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3322), [6753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3323), - [6755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3324), - [6757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3325), - [6759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3326), - [6761] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2038), - [6764] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3327), - [6766] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3328), - [6768] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3329), - [6770] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3329), - [6772] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3331), - [6774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3332), - [6776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3333), + [6755] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3324), + [6757] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [6759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3325), + [6761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3327), + [6763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3329), + [6765] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [6767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3330), + [6769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3331), + [6771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3332), + [6773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3333), + [6775] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2046), [6778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3334), - [6780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3335), - [6782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3337), - [6784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3338), - [6786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3340), - [6788] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3342), - [6790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3343), - [6792] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3344), - [6794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3345), - [6796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3346), - [6798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3347), - [6800] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3349), - [6802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3350), - [6804] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3350), - [6806] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3352), - [6808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3353), - [6810] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3354), - [6812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3355), + [6780] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3335), + [6782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3336), + [6784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3336), + [6786] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3338), + [6788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3339), + [6790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3340), + [6792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3341), + [6794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3342), + [6796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3344), + [6798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3345), + [6800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3347), + [6802] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3349), + [6804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3350), + [6806] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3351), + [6808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3352), + [6810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3353), + [6812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3354), [6814] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3356), [6816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3357), - [6818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3359), - [6820] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3361), - [6822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3361), - [6824] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3363), - [6826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3364), - [6828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3365), - [6830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3366), - [6832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3368), - [6834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3369), - [6836] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3370), - [6838] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3369), - [6840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3372), - [6842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3373), - [6844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3375), - [6846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3376), - [6848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3378), - [6850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3379), - [6852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3380), - [6854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3381), - [6856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3382), - [6858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3383), - [6860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3385), - [6862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3387), - [6864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3389), - [6866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3390), - [6868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3391), - [6870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3392), - [6872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3393), - [6874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3394), - [6876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3396), - [6878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3398), - [6880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3400), - [6882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3401), - [6884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3402), - [6886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3403), - [6888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3404), - [6890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3405), - [6892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3406), + [6818] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3357), + [6820] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3359), + [6822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3360), + [6824] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3361), + [6826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3362), + [6828] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3363), + [6830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3364), + [6832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3366), + [6834] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3368), + [6836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3368), + [6838] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3370), + [6840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3371), + [6842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3372), + [6844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3373), + [6846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3375), + [6848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3376), + [6850] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3377), + [6852] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3376), + [6854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3379), + [6856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3380), + [6858] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3382), + [6860] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3383), + [6862] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3385), + [6864] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3386), + [6866] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3387), + [6868] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3388), + [6870] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3389), + [6872] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3390), + [6874] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3392), + [6876] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3394), + [6878] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3396), + [6880] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3397), + [6882] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3398), + [6884] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3399), + [6886] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3400), + [6888] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3401), + [6890] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3403), + [6892] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3405), [6894] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3407), - [6896] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3409), - [6898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3410), - [6900] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3410), - [6902] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3412), - [6904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3413), - [6906] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3414), - [6908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3415), + [6896] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3408), + [6898] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3409), + [6900] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3410), + [6902] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3411), + [6904] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3412), + [6906] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3413), + [6908] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3414), [6910] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3416), [6912] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3417), - [6914] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3419), - [6916] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [6918] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [6920] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), - [6922] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [6924] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3421), - [6926] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [6928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3422), - [6930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [6932] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3423), - [6934] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), - [6936] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), - [6938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3424), - [6940] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3425), - [6942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3426), - [6944] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3427), - [6946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3428), - [6948] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3429), - [6950] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3430), + [6914] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3417), + [6916] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3419), + [6918] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3420), + [6920] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3421), + [6922] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3422), + [6924] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3423), + [6926] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3424), + [6928] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3426), + [6930] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [6932] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [6934] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6), + [6936] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [6938] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3428), + [6940] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [6942] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3429), + [6944] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [6946] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3430), + [6948] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), + [6950] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 12), [6952] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3431), [6954] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3432), [6956] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3433), @@ -115625,1067 +115669,1072 @@ static TSParseActionEntry ts_parse_actions[] = { [6962] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3436), [6964] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3437), [6966] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3438), - [6968] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [6970] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), - [6972] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6), - [6974] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6), - [6976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3439), - [6978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3440), - [6980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3441), - [6982] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3443), - [6984] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3444), - [6986] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3444), - [6988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3446), - [6990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3447), - [6992] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3448), - [6994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3449), + [6968] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3439), + [6970] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3440), + [6972] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3441), + [6974] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3442), + [6976] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3443), + [6978] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3444), + [6980] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3445), + [6982] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [6984] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6, .alias_sequence_id = 6), + [6986] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_subscript, 6), + [6988] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subscript, 6), + [6990] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3446), + [6992] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3447), + [6994] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3448), [6996] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3450), [6998] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3451), - [7000] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3453), - [7002] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3455), - [7004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3456), - [7006] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3457), - [7008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3458), - [7010] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3460), - [7012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3462), - [7014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3464), - [7016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3465), - [7018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [7020] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [7022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [7024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [7026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [7028] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [7030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3466), - [7032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3467), - [7034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3468), - [7036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3470), - [7038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3471), - [7040] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3471), - [7042] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3473), - [7044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3474), - [7046] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3475), - [7048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3476), + [7000] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3451), + [7002] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3453), + [7004] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3454), + [7006] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3455), + [7008] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3456), + [7010] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3457), + [7012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3458), + [7014] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3460), + [7016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3462), + [7018] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3463), + [7020] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3464), + [7022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3465), + [7024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3467), + [7026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3469), + [7028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3471), + [7030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3472), + [7032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [7034] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [7036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [7038] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [7040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [7042] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [7044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3473), + [7046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3474), + [7048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3475), [7050] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3477), [7052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3478), - [7054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3480), - [7056] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3482), - [7058] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [7060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), - [7062] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), - [7064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [7066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3484), - [7068] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), - [7070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), - [7072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3485), - [7074] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [7076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), - [7078] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), - [7080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), - [7082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3487), - [7084] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), - [7086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [7088] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6), - [7090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), - [7092] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3489), - [7094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3489), - [7096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3491), - [7098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3492), - [7100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3493), - [7102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3494), - [7104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3496), - [7106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3497), - [7108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3498), - [7110] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3497), - [7112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3500), - [7114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3501), - [7116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3503), - [7118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3504), - [7120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3506), - [7122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3507), - [7124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3508), - [7126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3509), - [7128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3510), - [7130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3511), - [7132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3513), - [7134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3515), - [7136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3517), - [7138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3518), - [7140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3519), - [7142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3520), - [7144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3521), - [7146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3522), - [7148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3524), - [7150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3526), - [7152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3528), - [7154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3529), - [7156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3530), - [7158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3531), - [7160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3532), - [7162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3533), - [7164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3534), - [7166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3535), - [7168] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3537), - [7170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3538), - [7172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3538), - [7174] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3540), - [7176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3541), - [7178] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3542), - [7180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3543), - [7182] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3544), - [7184] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3545), - [7186] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3547), - [7188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3549), - [7190] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3550), - [7192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3551), - [7194] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3553), - [7196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3554), - [7198] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3554), - [7200] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3556), - [7202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3557), - [7204] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3558), - [7206] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3559), - [7208] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3560), - [7210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3561), - [7212] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3563), - [7214] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3565), - [7216] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3565), - [7218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3567), - [7220] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3568), - [7222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3569), - [7224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3570), - [7226] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3572), - [7228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3573), - [7230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3574), - [7232] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3573), - [7234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3576), - [7236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3577), - [7238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3579), - [7240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3580), - [7242] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3582), - [7244] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3583), - [7246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3584), - [7248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3585), - [7250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3586), - [7252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3587), - [7254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3589), - [7256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3591), - [7258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3593), - [7260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3594), - [7262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3595), - [7264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3596), - [7266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3597), - [7268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3598), - [7270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3600), - [7272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3602), - [7274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3604), - [7276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3605), - [7278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3606), - [7280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3607), - [7282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3608), - [7284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3609), - [7286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3610), - [7288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3611), - [7290] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3613), - [7292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3614), - [7294] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3614), - [7296] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3616), - [7298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3617), - [7300] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3618), - [7302] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3619), - [7304] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3620), - [7306] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3621), - [7308] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3623), - [7310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3625), - [7312] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3626), - [7314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3627), - [7316] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3628), - [7318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3630), - [7320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3632), - [7322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3634), - [7324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3635), - [7326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3636), - [7328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3637), - [7330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3638), - [7332] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3640), - [7334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3641), - [7336] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3641), - [7338] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3643), - [7340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3644), - [7342] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3645), - [7344] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3646), - [7346] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3647), - [7348] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3648), - [7350] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3650), - [7352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3652), - [7354] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3653), - [7356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3654), - [7358] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3655), - [7360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3656), - [7362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3657), - [7364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3658), - [7366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3660), - [7368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3662), - [7370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3664), - [7372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3665), - [7374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3666), - [7376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3667), - [7378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3668), - [7380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3669), - [7382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3670), - [7384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3671), - [7386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3672), - [7388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3674), - [7390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3676), - [7392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3678), - [7394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3679), - [7396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3680), - [7398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3681), - [7400] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3682), - [7402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3683), - [7404] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3684), - [7406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3685), - [7408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3686), - [7410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3687), - [7412] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3688), - [7414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3689), - [7416] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3685), - [7418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3691), - [7420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3693), - [7422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3694), - [7424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3696), - [7426] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3698), - [7428] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3235), - [7430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3700), - [7432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3701), - [7434] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3702), - [7436] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3700), - [7438] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3703), - [7440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3704), + [7054] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3478), + [7056] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3480), + [7058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3481), + [7060] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3482), + [7062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3483), + [7064] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3484), + [7066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3485), + [7068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3487), + [7070] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [7072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_for_statement, 6, .alias_sequence_id = 5), + [7074] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 6), + [7076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [7078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3489), + [7080] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [7082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 13), + [7084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3490), + [7086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [7088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 3), + [7090] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [7092] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .alias_sequence_id = 14), + [7094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3492), + [7096] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 6), + [7098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [7100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_function_definition, 6), + [7102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 6), + [7104] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3494), + [7106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3494), + [7108] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3496), + [7110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3497), + [7112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3498), + [7114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3499), + [7116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3501), + [7118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3502), + [7120] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3503), + [7122] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3502), + [7124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3505), + [7126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3506), + [7128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3508), + [7130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3509), + [7132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3511), + [7134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3512), + [7136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3513), + [7138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3514), + [7140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3515), + [7142] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3516), + [7144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3518), + [7146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3520), + [7148] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3522), + [7150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3523), + [7152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3524), + [7154] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3525), + [7156] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3526), + [7158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3527), + [7160] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3529), + [7162] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3531), + [7164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3533), + [7166] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3534), + [7168] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3535), + [7170] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3536), + [7172] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3537), + [7174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3538), + [7176] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3539), + [7178] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3540), + [7180] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3542), + [7182] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3543), + [7184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3543), + [7186] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3545), + [7188] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3546), + [7190] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3547), + [7192] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3548), + [7194] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3549), + [7196] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3550), + [7198] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3552), + [7200] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3554), + [7202] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3555), + [7204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3556), + [7206] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3558), + [7208] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3559), + [7210] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3559), + [7212] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3561), + [7214] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3562), + [7216] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3563), + [7218] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3564), + [7220] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3565), + [7222] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3566), + [7224] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3568), + [7226] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3570), + [7228] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3570), + [7230] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3572), + [7232] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3573), + [7234] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3574), + [7236] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3575), + [7238] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3577), + [7240] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3578), + [7242] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3579), + [7244] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3578), + [7246] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3581), + [7248] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3582), + [7250] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3584), + [7252] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3585), + [7254] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3587), + [7256] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3588), + [7258] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3589), + [7260] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3590), + [7262] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3591), + [7264] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3592), + [7266] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3594), + [7268] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3596), + [7270] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3598), + [7272] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3599), + [7274] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3600), + [7276] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3601), + [7278] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3602), + [7280] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3603), + [7282] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3605), + [7284] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3607), + [7286] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3609), + [7288] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3610), + [7290] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3611), + [7292] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3612), + [7294] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3613), + [7296] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3614), + [7298] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3615), + [7300] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3616), + [7302] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3618), + [7304] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3619), + [7306] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3619), + [7308] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3621), + [7310] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3622), + [7312] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3623), + [7314] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3624), + [7316] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3625), + [7318] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3626), + [7320] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3628), + [7322] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3630), + [7324] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3631), + [7326] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3632), + [7328] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3633), + [7330] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3635), + [7332] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3637), + [7334] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3639), + [7336] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3640), + [7338] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3641), + [7340] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3642), + [7342] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3643), + [7344] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3645), + [7346] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3646), + [7348] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3646), + [7350] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3648), + [7352] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3649), + [7354] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3650), + [7356] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3651), + [7358] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3652), + [7360] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3653), + [7362] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3655), + [7364] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3657), + [7366] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3658), + [7368] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3659), + [7370] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3660), + [7372] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3661), + [7374] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3662), + [7376] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3663), + [7378] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3665), + [7380] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3667), + [7382] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3669), + [7384] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3670), + [7386] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3671), + [7388] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3672), + [7390] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3673), + [7392] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3674), + [7394] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3675), + [7396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3676), + [7398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3677), + [7400] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3679), + [7402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3681), + [7404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3683), + [7406] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3684), + [7408] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3685), + [7410] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3686), + [7412] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3687), + [7414] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3688), + [7416] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3689), + [7418] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3690), + [7420] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3691), + [7422] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3692), + [7424] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3693), + [7426] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3694), + [7428] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3690), + [7430] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3696), + [7432] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3698), + [7434] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3699), + [7436] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3701), + [7438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3703), + [7440] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3242), [7442] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3705), - [7444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3706), - [7446] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3704), - [7448] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3715), - [7450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3717), - [7452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3247), - [7454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3719), - [7456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3720), - [7458] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3721), - [7460] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3719), - [7462] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3722), - [7464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3723), + [7444] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3706), + [7446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3707), + [7448] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3705), + [7450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3708), + [7452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3709), + [7454] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3710), + [7456] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3711), + [7458] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3709), + [7460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3720), + [7462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3722), + [7464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3254), [7466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3724), - [7468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3725), - [7470] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3723), - [7472] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3734), - [7474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3734), - [7476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3736), - [7478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3737), - [7480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3738), - [7482] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3739), - [7484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3741), - [7486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3742), - [7488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3743), - [7490] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3742), - [7492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3745), - [7494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3746), - [7496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3748), - [7498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3749), - [7500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3751), - [7502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3752), - [7504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3753), - [7506] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), - [7508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [7510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [7512] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), - [7514] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3757), - [7516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3757), - [7518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3758), - [7520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3759), - [7522] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3760), - [7524] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3761), - [7526] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3762), - [7528] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3763), - [7530] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3764), - [7532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3765), - [7534] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3766), - [7536] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3767), - [7538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3768), - [7540] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3764), - [7542] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3769), + [7468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3725), + [7470] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3726), + [7472] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3724), + [7474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3727), + [7476] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3728), + [7478] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3729), + [7480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3730), + [7482] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3728), + [7484] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3739), + [7486] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3739), + [7488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3741), + [7490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3742), + [7492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3743), + [7494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3744), + [7496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3746), + [7498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3747), + [7500] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3748), + [7502] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3747), + [7504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3750), + [7506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3751), + [7508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3753), + [7510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3754), + [7512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3756), + [7514] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3757), + [7516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3758), + [7518] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [7520] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [7522] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [7524] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), + [7526] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3762), + [7528] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3762), + [7530] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3763), + [7532] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3764), + [7534] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3765), + [7536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3766), + [7538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3767), + [7540] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3768), + [7542] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3769), [7544] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3770), - [7546] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3770), - [7548] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), - [7550] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3774), - [7552] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3778), - [7554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 4), - [7556] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [7558] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [7560] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), - [7562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 4), - [7564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3781), - [7566] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3782), - [7568] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3785), - [7570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3786), - [7572] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3787), - [7574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3789), - [7576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3790), - [7578] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3790), - [7580] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3792), - [7582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3793), - [7584] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3794), - [7586] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3795), - [7588] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3796), - [7590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3797), - [7592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3799), - [7594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3801), - [7596] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3805), - [7598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3806), - [7600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3810), - [7602] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), - [7604] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), - [7606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3811), - [7608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3812), - [7610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3813), - [7612] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3815), - [7614] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3816), - [7616] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3816), - [7618] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3818), - [7620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3819), - [7622] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3820), - [7624] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3821), - [7626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3822), - [7628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3823), - [7630] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3825), - [7632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3827), - [7634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3828), - [7636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3829), - [7638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3830), - [7640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3832), - [7642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3834), - [7644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3836), - [7646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3837), - [7648] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2741), - [7651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3838), - [7653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3839), - [7655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3840), - [7657] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3840), - [7659] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3842), - [7661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3843), - [7663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3844), - [7665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3845), - [7667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3846), - [7669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3848), - [7671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3849), - [7673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3851), - [7675] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3853), - [7677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3854), - [7679] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3855), - [7681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3856), - [7683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3857), - [7685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3858), - [7687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3859), - [7689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3860), - [7691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3861), - [7693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3862), - [7695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3863), - [7697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3864), - [7699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3865), - [7701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3867), - [7703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3869), - [7705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3871), - [7707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3872), - [7709] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [7711] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [7713] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [7715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3873), - [7717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3874), - [7719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3875), - [7721] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3876), - [7723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3878), - [7725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3880), - [7727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3882), - [7729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3883), - [7731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3884), - [7733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3885), - [7735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3886), - [7737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3887), - [7739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3888), - [7741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3889), - [7743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3890), - [7745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3892), - [7747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3894), - [7749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3896), - [7751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3897), - [7753] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3898), - [7755] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), - [7757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [7759] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), - [7761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), - [7763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3899), - [7765] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), - [7767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), - [7769] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3900), - [7771] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2959), - [7774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3901), - [7776] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3902), - [7778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3903), - [7780] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3903), - [7782] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3905), - [7784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3906), - [7786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3907), - [7788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3908), - [7790] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3909), - [7792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3911), - [7794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3912), - [7796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3914), - [7798] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3916), - [7800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3917), - [7802] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3918), - [7804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3919), - [7806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3920), - [7808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3921), - [7810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3922), - [7812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3923), - [7814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3924), - [7816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3925), - [7818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3926), - [7820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3927), - [7822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3928), - [7824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3930), - [7826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3932), - [7828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3934), - [7830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3935), - [7832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3936), - [7834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3937), - [7836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3938), - [7838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3939), - [7840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3941), - [7842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3943), - [7844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3945), - [7846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3946), - [7848] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3059), - [7851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3947), - [7853] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3948), - [7855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3949), - [7857] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3949), - [7859] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3951), - [7861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3952), - [7863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3953), - [7865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3954), - [7867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3955), - [7869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3957), - [7871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3958), - [7873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3960), - [7875] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3962), - [7877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3963), - [7879] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3964), - [7881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3965), - [7883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3966), - [7885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3967), - [7887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3968), - [7889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3969), - [7891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3970), - [7893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3971), - [7895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3972), - [7897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3973), - [7899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3974), - [7901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3976), - [7903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3978), - [7905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3980), - [7907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3981), - [7909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3982), - [7911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3983), - [7913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3984), - [7915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3985), - [7917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3986), - [7919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3987), - [7921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3988), - [7923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3990), - [7925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3992), - [7927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3994), - [7929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3995), - [7931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3996), - [7933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3997), - [7935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3998), - [7937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3999), - [7939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4000), - [7941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4001), - [7943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4002), - [7945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4004), - [7947] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4006), - [7949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4008), - [7951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4009), - [7953] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4010), - [7955] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4008), - [7957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4011), + [7546] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3771), + [7548] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3772), + [7550] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3773), + [7552] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3769), + [7554] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3774), + [7556] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3775), + [7558] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3775), + [7560] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), + [7562] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3779), + [7564] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3783), + [7566] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 4), + [7568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [7570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [7572] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), + [7574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 4), + [7576] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3786), + [7578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3787), + [7580] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3790), + [7582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3791), + [7584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3792), + [7586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3794), + [7588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3795), + [7590] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3795), + [7592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3797), + [7594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3798), + [7596] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3799), + [7598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3800), + [7600] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3801), + [7602] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3802), + [7604] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3804), + [7606] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3806), + [7608] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3810), + [7610] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3811), + [7612] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3815), + [7614] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [7616] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [7618] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3816), + [7620] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3817), + [7622] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3818), + [7624] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3820), + [7626] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3821), + [7628] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3821), + [7630] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3823), + [7632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3824), + [7634] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3825), + [7636] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3826), + [7638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3827), + [7640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3828), + [7642] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3830), + [7644] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3832), + [7646] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3833), + [7648] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3834), + [7650] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3835), + [7652] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3837), + [7654] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3839), + [7656] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3841), + [7658] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3842), + [7660] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2749), + [7663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3843), + [7665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3844), + [7667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3845), + [7669] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3845), + [7671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3847), + [7673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3848), + [7675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3849), + [7677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3850), + [7679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3851), + [7681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3853), + [7683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3854), + [7685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3856), + [7687] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3858), + [7689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3859), + [7691] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3860), + [7693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3861), + [7695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3862), + [7697] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3863), + [7699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3864), + [7701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3865), + [7703] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3866), + [7705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3867), + [7707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3868), + [7709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3869), + [7711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3870), + [7713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3872), + [7715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3874), + [7717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3876), + [7719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3877), + [7721] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [7723] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [7725] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [7727] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3878), + [7729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3879), + [7731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3880), + [7733] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3881), + [7735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3883), + [7737] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3885), + [7739] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3887), + [7741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3888), + [7743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3889), + [7745] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3890), + [7747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3891), + [7749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3892), + [7751] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3893), + [7753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3894), + [7755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3895), + [7757] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3897), + [7759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3899), + [7761] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3901), + [7763] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3902), + [7765] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_if_statement, 7), + [7767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [7769] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [7771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 19), + [7773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3903), + [7775] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [7777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .alias_sequence_id = 20), + [7779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3904), + [7781] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2967), + [7784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3905), + [7786] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3906), + [7788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3907), + [7790] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3907), + [7792] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3909), + [7794] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3910), + [7796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3911), + [7798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3912), + [7800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3913), + [7802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3915), + [7804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3916), + [7806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3918), + [7808] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3920), + [7810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3921), + [7812] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3922), + [7814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3923), + [7816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3924), + [7818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3925), + [7820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3926), + [7822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3927), + [7824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3928), + [7826] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3929), + [7828] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3930), + [7830] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3931), + [7832] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3932), + [7834] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3934), + [7836] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3936), + [7838] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3938), + [7840] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3939), + [7842] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3940), + [7844] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3941), + [7846] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3942), + [7848] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3943), + [7850] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3945), + [7852] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3947), + [7854] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3949), + [7856] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3950), + [7858] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3067), + [7861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3951), + [7863] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3952), + [7865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3953), + [7867] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3953), + [7869] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3955), + [7871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3956), + [7873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3957), + [7875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3958), + [7877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3959), + [7879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3961), + [7881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3962), + [7883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3964), + [7885] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3966), + [7887] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3967), + [7889] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(3968), + [7891] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3969), + [7893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3970), + [7895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3971), + [7897] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3972), + [7899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3973), + [7901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3974), + [7903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3975), + [7905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3976), + [7907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3977), + [7909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3978), + [7911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3980), + [7913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3982), + [7915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3984), + [7917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3985), + [7919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3986), + [7921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3987), + [7923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3988), + [7925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3989), + [7927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3990), + [7929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3991), + [7931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3992), + [7933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3994), + [7935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3996), + [7937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3998), + [7939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3999), + [7941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4000), + [7943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4001), + [7945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4002), + [7947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4003), + [7949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4004), + [7951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4005), + [7953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4006), + [7955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4008), + [7957] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4010), [7959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4012), [7961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4013), [7963] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4014), [7965] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4012), - [7967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4023), - [7969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4024), - [7971] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4025), - [7973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4027), - [7975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4028), - [7977] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4029), - [7979] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3236), - [7981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4030), - [7983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3238), - [7985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3239), - [7987] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3240), - [7989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3241), - [7991] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4030), - [7993] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4031), - [7995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4031), - [7997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4033), - [7999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4034), - [8001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4035), - [8003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4036), - [8005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4038), - [8007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4039), - [8009] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4040), - [8011] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4039), - [8013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4042), - [8015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4043), - [8017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4045), - [8019] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4046), - [8021] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4048), - [8023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4049), - [8025] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3233), - [8028] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3234), - [8031] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3235), - [8034] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3236), - [8037] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3237), - [8040] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3238), - [8043] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3239), - [8046] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3240), - [8049] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3241), - [8052] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3242), - [8055] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4050), - [8057] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3248), - [8059] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4050), - [8061] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3250), - [8063] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3251), - [8065] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3252), - [8067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3253), - [8069] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4052), - [8071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4053), - [8073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4054), - [8075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4055), - [8077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4057), - [8079] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4058), - [8081] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4059), - [8083] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4058), - [8085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4061), - [8087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4062), - [8089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4064), - [8091] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4065), - [8093] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4067), - [8095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4068), - [8097] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3246), - [8100] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3247), - [8103] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3248), - [8106] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3249), - [8109] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3250), - [8112] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3251), - [8115] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3252), - [8118] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3253), - [8121] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3254), - [8124] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3257), - [8127] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4069), - [8129] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4070), - [8131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4071), - [8133] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4071), - [8135] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4073), - [8137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4074), - [8139] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4075), - [8141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4076), - [8143] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4077), - [8145] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4079), - [8147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4080), - [8149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4082), - [8151] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4084), - [8153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4085), - [8155] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4086), - [8157] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4088), - [8159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4089), - [8161] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4089), - [8163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4090), - [8165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4092), - [8167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4094), - [8169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4095), - [8171] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4096), - [8173] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4094), - [8175] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4097), + [7967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4015), + [7969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4016), + [7971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4017), + [7973] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4018), + [7975] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4016), + [7977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4027), + [7979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4028), + [7981] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4029), + [7983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4031), + [7985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4032), + [7987] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4033), + [7989] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3243), + [7991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4034), + [7993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3245), + [7995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3246), + [7997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3247), + [7999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3248), + [8001] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4034), + [8003] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4035), + [8005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4035), + [8007] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4037), + [8009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4038), + [8011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4039), + [8013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4040), + [8015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4042), + [8017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4043), + [8019] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4044), + [8021] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4043), + [8023] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4046), + [8025] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4047), + [8027] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4049), + [8029] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4050), + [8031] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4052), + [8033] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4053), + [8035] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3240), + [8038] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3241), + [8041] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3242), + [8044] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3243), + [8047] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3244), + [8050] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3245), + [8053] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3246), + [8056] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3247), + [8059] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3248), + [8062] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3249), + [8065] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4054), + [8067] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3255), + [8069] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4054), + [8071] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3257), + [8073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3258), + [8075] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3259), + [8077] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(3260), + [8079] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4056), + [8081] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4057), + [8083] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4058), + [8085] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4059), + [8087] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4061), + [8089] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4062), + [8091] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4063), + [8093] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4062), + [8095] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4065), + [8097] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4066), + [8099] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4068), + [8101] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4069), + [8103] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4071), + [8105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4072), + [8107] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3253), + [8110] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3254), + [8113] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3255), + [8116] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3256), + [8119] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3257), + [8122] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3258), + [8125] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3259), + [8128] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3260), + [8131] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(3261), + [8134] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3264), + [8137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4073), + [8139] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4074), + [8141] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4075), + [8143] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4075), + [8145] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4077), + [8147] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4078), + [8149] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4079), + [8151] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4080), + [8153] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4081), + [8155] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4083), + [8157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4084), + [8159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4086), + [8161] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4088), + [8163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4089), + [8165] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4090), + [8167] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4092), + [8169] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4093), + [8171] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4093), + [8173] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4094), + [8175] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4096), [8177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4098), [8179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4099), [8181] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4100), [8183] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4098), - [8185] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3280), - [8188] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3282), - [8191] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3283), - [8194] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3281), - [8197] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3284), - [8200] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2643), - [8203] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2644), - [8206] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3285), - [8209] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2646), - [8212] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2647), - [8215] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2648), - [8218] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2649), - [8221] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), - [8223] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [8225] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [8227] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), - [8229] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), - [8231] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4109), - [8233] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 5), - [8235] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [8237] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), - [8239] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), - [8241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 5), - [8243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4110), - [8245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4111), - [8247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4112), - [8249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4113), - [8251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4114), - [8253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4116), - [8255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4118), - [8257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4120), - [8259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4121), - [8261] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4122), - [8263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4123), - [8265] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4128), - [8267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4129), - [8269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4133), - [8271] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4134), - [8273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4135), - [8275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4136), - [8277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4138), - [8279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4140), - [8281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4142), - [8283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4143), - [8285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4144), - [8287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4145), - [8289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4146), - [8291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4147), - [8293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4148), - [8295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4149), - [8297] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4151), - [8299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4152), - [8301] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4152), - [8303] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4154), - [8305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4155), - [8307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4156), - [8309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4157), - [8311] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4158), - [8313] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4159), - [8315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4161), - [8317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4163), - [8319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4164), - [8321] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4165), - [8323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4166), - [8325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4167), - [8327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4168), - [8329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4169), - [8331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4170), - [8333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4171), - [8335] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), - [8337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), - [8339] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), - [8341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), - [8343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4172), - [8345] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4173), - [8347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4174), - [8349] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4176), - [8351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4177), - [8353] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4177), - [8355] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4179), - [8357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4180), - [8359] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4181), - [8361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4182), - [8363] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4183), - [8365] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4184), - [8367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4186), - [8369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4188), - [8371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4189), - [8373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4190), - [8375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4191), - [8377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4192), - [8379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4193), - [8381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4194), - [8383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4195), - [8385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4196), - [8387] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4198), - [8389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4199), - [8391] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4199), - [8393] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4201), - [8395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4202), - [8397] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4203), - [8399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4204), - [8401] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4205), - [8403] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4206), - [8405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4208), - [8407] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4210), - [8409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4211), - [8411] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4212), - [8413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4213), - [8415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4214), - [8417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4215), - [8419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4216), - [8421] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4217), + [8185] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4101), + [8187] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4102), + [8189] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4103), + [8191] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4104), + [8193] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4102), + [8195] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3287), + [8198] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3289), + [8201] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(3290), + [8204] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3288), + [8207] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3291), + [8210] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2651), + [8213] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2652), + [8216] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(3292), + [8219] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2654), + [8222] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2655), + [8225] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2656), + [8228] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), SHIFT_REPEAT(2657), + [8231] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [8233] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [8235] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [8237] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5, .alias_sequence_id = 1), + [8239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 5, .alias_sequence_id = 1), + [8241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4113), + [8243] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 5), + [8245] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [8247] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 5), + [8249] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 5), + [8251] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_last_case_item, 5), + [8253] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4114), + [8255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4115), + [8257] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4116), + [8259] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4117), + [8261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4118), + [8263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4120), + [8265] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4122), + [8267] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4124), + [8269] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4125), + [8271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4126), + [8273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4127), + [8275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4132), + [8277] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4133), + [8279] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4137), + [8281] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4138), + [8283] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4139), + [8285] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4140), + [8287] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4142), + [8289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4144), + [8291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4146), + [8293] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4147), + [8295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4148), + [8297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4149), + [8299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4150), + [8301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4151), + [8303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4152), + [8305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4153), + [8307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4155), + [8309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4156), + [8311] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4156), + [8313] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4158), + [8315] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4159), + [8317] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4160), + [8319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4161), + [8321] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4162), + [8323] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4163), + [8325] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4165), + [8327] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4167), + [8329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4168), + [8331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4169), + [8333] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4170), + [8335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4171), + [8337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4172), + [8339] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4173), + [8341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4174), + [8343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4175), + [8345] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [8347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 21), + [8349] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [8351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), + [8353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4176), + [8355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4177), + [8357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4178), + [8359] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4180), + [8361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4181), + [8363] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4181), + [8365] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4183), + [8367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4184), + [8369] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4185), + [8371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4186), + [8373] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4187), + [8375] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4188), + [8377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4190), + [8379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4192), + [8381] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4193), + [8383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4194), + [8385] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4195), + [8387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4196), + [8389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4197), + [8391] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4198), + [8393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4199), + [8395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4200), + [8397] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4202), + [8399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4203), + [8401] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4203), + [8403] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4205), + [8405] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4206), + [8407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4207), + [8409] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4208), + [8411] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4209), + [8413] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4210), + [8415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4212), + [8417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4214), + [8419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4215), + [8421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4216), [8423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4217), - [8425] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4219), - [8427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4220), - [8429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4221), - [8431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4222), - [8433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4224), - [8435] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4225), - [8437] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4226), - [8439] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4225), - [8441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4228), - [8443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4229), - [8445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4231), - [8447] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4232), - [8449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4234), - [8451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4235), - [8453] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4237), - [8455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4237), - [8457] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4238), - [8459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4239), - [8461] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4240), - [8463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4241), - [8465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4242), - [8467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4243), - [8469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4244), - [8471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4245), - [8473] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4241), + [8425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4218), + [8427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4219), + [8429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4220), + [8431] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4221), + [8433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4221), + [8435] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4223), + [8437] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4224), + [8439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4225), + [8441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4226), + [8443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4228), + [8445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4229), + [8447] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4230), + [8449] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4229), + [8451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4232), + [8453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4233), + [8455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4235), + [8457] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4236), + [8459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4238), + [8461] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4239), + [8463] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4241), + [8465] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4241), + [8467] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4242), + [8469] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4243), + [8471] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4244), + [8473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4245), [8475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4246), - [8477] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3696), - [8480] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4248), - [8482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4249), - [8484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4250), - [8486] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4250), - [8488] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4252), - [8490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4253), - [8492] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4254), - [8494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4255), - [8496] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4256), - [8498] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4258), - [8500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4259), - [8502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4261), - [8504] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4263), - [8506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4264), - [8508] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4265), - [8510] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3715), - [8513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4266), - [8515] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4267), - [8517] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4268), - [8519] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4268), - [8521] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4270), - [8523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4271), - [8525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4272), - [8527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4273), - [8529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4274), - [8531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4276), - [8533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4277), - [8535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4279), - [8537] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4281), - [8539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4282), - [8541] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4283), - [8543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4284), - [8545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4285), - [8547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4286), - [8549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4288), - [8551] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4289), - [8553] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4289), - [8555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4291), - [8557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4292), - [8559] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4293), - [8561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4294), - [8563] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4295), - [8565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4296), - [8567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4298), - [8569] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4300), - [8571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4300), - [8573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4302), - [8575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4303), - [8577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4304), - [8579] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4305), - [8581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4307), - [8583] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4308), - [8585] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4309), - [8587] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4308), - [8589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4311), - [8591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4312), - [8593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4314), - [8595] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4315), - [8597] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4317), - [8599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4318), - [8601] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), - [8603] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [8605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [8607] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), - [8609] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 6), - [8611] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6), - [8613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6), - [8615] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 6), - [8617] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4319), - [8619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4320), - [8621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4321), - [8623] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4322), - [8625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4323), - [8627] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4326), - [8629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4327), - [8631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4330), - [8633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4331), - [8635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4332), - [8637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4333), - [8639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4334), - [8641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4335), - [8643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4336), - [8645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4338), - [8647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4340), - [8649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4342), - [8651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4343), - [8653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4344), - [8655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4345), - [8657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4346), - [8659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4347), - [8661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4349), - [8663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4351), - [8665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4353), - [8667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4354), - [8669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4355), - [8671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4356), - [8673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4357), - [8675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4358), - [8677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4360), - [8679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4362), - [8681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4364), - [8683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4365), - [8685] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4004), - [8688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4366), - [8690] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4367), - [8692] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4368), - [8694] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4368), - [8696] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4370), - [8698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4371), - [8700] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4372), - [8702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4373), - [8704] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4374), - [8706] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4376), - [8708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4377), - [8710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4379), - [8712] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4381), - [8714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4382), - [8716] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4383), - [8718] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4384), - [8720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4385), - [8722] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4385), + [8477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4247), + [8479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4248), + [8481] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4249), + [8483] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4245), + [8485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4250), + [8487] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3701), + [8490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4252), + [8492] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4253), + [8494] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4254), + [8496] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4254), + [8498] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4256), + [8500] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4257), + [8502] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4258), + [8504] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4259), + [8506] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4260), + [8508] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4262), + [8510] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4263), + [8512] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4265), + [8514] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4267), + [8516] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4268), + [8518] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4269), + [8520] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(3720), + [8523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4270), + [8525] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4271), + [8527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4272), + [8529] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4272), + [8531] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4274), + [8533] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4275), + [8535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4276), + [8537] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4277), + [8539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4278), + [8541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4280), + [8543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4281), + [8545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4283), + [8547] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4285), + [8549] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4286), + [8551] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4287), + [8553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4288), + [8555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4289), + [8557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4290), + [8559] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4292), + [8561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4293), + [8563] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4293), + [8565] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4295), + [8567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4296), + [8569] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4297), + [8571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4298), + [8573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4299), + [8575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4300), + [8577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4302), + [8579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4304), + [8581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4304), + [8583] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4306), + [8585] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4307), + [8587] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4308), + [8589] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4309), + [8591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4311), + [8593] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4312), + [8595] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4313), + [8597] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4312), + [8599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4315), + [8601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4316), + [8603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4318), + [8605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4319), + [8607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4321), + [8609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4322), + [8611] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 6, .alias_sequence_id = 1), + [8613] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [8615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [8617] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 6, .alias_sequence_id = 1), + [8619] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_last_case_item, 6), + [8621] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6), + [8623] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 6), + [8625] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 6), + [8627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4323), + [8629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4324), + [8631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4325), + [8633] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4326), + [8635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4327), + [8637] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4330), + [8639] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4331), + [8641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4334), + [8643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4335), + [8645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4336), + [8647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4337), + [8649] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4338), + [8651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4339), + [8653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4340), + [8655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4342), + [8657] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4344), + [8659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4346), + [8661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4347), + [8663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4348), + [8665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4349), + [8667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4350), + [8669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4351), + [8671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4353), + [8673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4355), + [8675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4357), + [8677] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4358), + [8679] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4359), + [8681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4360), + [8683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4361), + [8685] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4362), + [8687] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4364), + [8689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4366), + [8691] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4368), + [8693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4369), + [8695] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4008), + [8698] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4370), + [8700] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4371), + [8702] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4372), + [8704] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4372), + [8706] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4374), + [8708] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4375), + [8710] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4376), + [8712] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4377), + [8714] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4378), + [8716] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4380), + [8718] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4381), + [8720] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4383), + [8722] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4385), [8724] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4386), - [8726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4388), - [8728] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4390), - [8730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4391), - [8732] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4392), - [8734] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4390), - [8736] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4393), + [8726] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4387), + [8728] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4388), + [8730] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4389), + [8732] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4389), + [8734] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4390), + [8736] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4392), [8738] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4394), [8740] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4395), [8742] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4396), [8744] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4394), - [8746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4404), - [8748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4405), - [8750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4406), - [8752] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4407), - [8754] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4409), - [8756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4410), - [8758] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4410), - [8760] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4412), - [8762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4413), - [8764] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4414), - [8766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4415), - [8768] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4416), - [8770] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4417), - [8772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4419), - [8774] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4421), - [8776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4422), - [8778] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4423), - [8780] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4425), - [8782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4426), - [8784] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4426), - [8786] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4428), - [8788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4429), - [8790] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4430), - [8792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4431), - [8794] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4432), - [8796] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4433), - [8798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4435), - [8800] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4437), - [8802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4438), - [8804] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4439), - [8806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4440), - [8808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4442), - [8810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4444), - [8812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4446), - [8814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4447), - [8816] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4090), - [8819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4448), - [8821] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4449), - [8823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4450), - [8825] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4450), - [8827] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4452), - [8829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4453), - [8831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4454), - [8833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4455), - [8835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4456), - [8837] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4458), - [8839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4459), - [8841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4461), - [8843] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4463), - [8845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4464), - [8847] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4465), - [8849] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4466), - [8851] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4467), - [8853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4468), - [8855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4469), - [8857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4470), - [8859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4471), - [8861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4472), - [8863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4473), - [8865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4474), - [8867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4475), - [8869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4476), - [8871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4477), - [8873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4478), - [8875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4479), - [8877] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4481), - [8879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4482), - [8881] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4482), - [8883] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4484), - [8885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4485), - [8887] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4486), - [8889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4487), - [8891] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4488), - [8893] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4489), - [8895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4491), - [8897] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4493), - [8899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4493), - [8901] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4495), - [8903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4496), - [8905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4497), - [8907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4498), - [8909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4500), - [8911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4501), - [8913] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4502), - [8915] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4501), - [8917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4504), - [8919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4505), - [8921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4507), - [8923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4508), - [8925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4510), - [8927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4511), - [8929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4512), - [8931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4513), - [8933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4514), - [8935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4515), - [8937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4517), - [8939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4519), - [8941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4521), - [8943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4522), - [8945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4523), - [8947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4524), - [8949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4525), - [8951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4526), - [8953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4528), - [8955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4530), - [8957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4532), - [8959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4533), - [8961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4534), - [8963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4535), - [8965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4536), - [8967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4537), - [8969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4538), - [8971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4539), - [8973] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4541), - [8975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4542), - [8977] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4542), - [8979] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4544), - [8981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4545), - [8983] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4546), - [8985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4547), - [8987] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4548), - [8989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4549), - [8991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4551), - [8993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4553), - [8995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4554), - [8997] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4555), - [8999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4556), - [9001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4558), - [9003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4560), - [9005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4562), - [9007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4563), - [9009] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4386), - [9012] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4564), - [9014] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4565), - [9016] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4566), - [9018] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4566), - [9020] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4568), - [9022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4569), - [9024] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4570), - [9026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4571), - [9028] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4572), - [9030] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4574), - [9032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4575), - [9034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4577), - [9036] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4579), - [9038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4580), - [9040] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4581), - [9042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4582), - [9044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4583), - [9046] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4584), - [9048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4585), - [9050] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4586), - [9052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4587), - [9054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4588), - [9056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4589), - [9058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4590), - [9060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4591), - [9062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4593), - [9064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4595), - [9066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4597), - [9068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4598), - [9070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4599), - [9072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4600), - [9074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4601), - [9076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4602), - [9078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4603), - [9080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4604), - [9082] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4606), - [9084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4607), - [9086] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4607), - [9088] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4609), - [9090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4610), - [9092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4611), - [9094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4612), - [9096] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4613), - [9098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4614), - [9100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4616), - [9102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4618), - [9104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4619), - [9106] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4620), - [9108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4621), - [9110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4622), - [9112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4623), - [9114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4624), - [9116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4626), - [9118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4628), - [9120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4630), - [9122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4631), - [9124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4632), - [9126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4633), - [9128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4634), + [8746] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4397), + [8748] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4398), + [8750] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4399), + [8752] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4400), + [8754] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4398), + [8756] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4408), + [8758] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4409), + [8760] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4410), + [8762] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4411), + [8764] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4413), + [8766] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4414), + [8768] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4414), + [8770] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4416), + [8772] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4417), + [8774] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4418), + [8776] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4419), + [8778] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4420), + [8780] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4421), + [8782] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4423), + [8784] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4425), + [8786] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4426), + [8788] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4427), + [8790] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4429), + [8792] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4430), + [8794] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4430), + [8796] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4432), + [8798] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4433), + [8800] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4434), + [8802] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4435), + [8804] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4436), + [8806] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4437), + [8808] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4439), + [8810] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4441), + [8812] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4442), + [8814] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4443), + [8816] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4444), + [8818] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4446), + [8820] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4448), + [8822] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4450), + [8824] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4451), + [8826] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4094), + [8829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4452), + [8831] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4453), + [8833] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4454), + [8835] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4454), + [8837] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4456), + [8839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4457), + [8841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4458), + [8843] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4459), + [8845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4460), + [8847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4462), + [8849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4463), + [8851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4465), + [8853] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4467), + [8855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4468), + [8857] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4469), + [8859] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4470), + [8861] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4471), + [8863] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4472), + [8865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4473), + [8867] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4474), + [8869] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4475), + [8871] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4476), + [8873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4477), + [8875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4478), + [8877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4479), + [8879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4480), + [8881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4481), + [8883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4482), + [8885] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4483), + [8887] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4485), + [8889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4486), + [8891] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4486), + [8893] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4488), + [8895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4489), + [8897] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4490), + [8899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4491), + [8901] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4492), + [8903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4493), + [8905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4495), + [8907] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4497), + [8909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4497), + [8911] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4499), + [8913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4500), + [8915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4501), + [8917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4502), + [8919] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4504), + [8921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4505), + [8923] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4506), + [8925] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4505), + [8927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4508), + [8929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4509), + [8931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4511), + [8933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4512), + [8935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4514), + [8937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4515), + [8939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4516), + [8941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4517), + [8943] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4518), + [8945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4519), + [8947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4521), + [8949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4523), + [8951] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4525), + [8953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4526), + [8955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4527), + [8957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4528), + [8959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4529), + [8961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4530), + [8963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4532), + [8965] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4534), + [8967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4536), + [8969] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4537), + [8971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4538), + [8973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4539), + [8975] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4540), + [8977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4541), + [8979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4542), + [8981] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4543), + [8983] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4545), + [8985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4546), + [8987] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4546), + [8989] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4548), + [8991] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4549), + [8993] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4550), + [8995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4551), + [8997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4552), + [8999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4553), + [9001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4555), + [9003] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4557), + [9005] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4558), + [9007] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4559), + [9009] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4560), + [9011] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4562), + [9013] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4564), + [9015] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4566), + [9017] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4567), + [9019] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(4390), + [9022] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4568), + [9024] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4569), + [9026] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4570), + [9028] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4570), + [9030] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4572), + [9032] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4573), + [9034] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4574), + [9036] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4575), + [9038] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4576), + [9040] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4578), + [9042] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4579), + [9044] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4581), + [9046] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4583), + [9048] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4584), + [9050] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4585), + [9052] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4586), + [9054] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4587), + [9056] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4588), + [9058] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4589), + [9060] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4590), + [9062] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4591), + [9064] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4592), + [9066] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4593), + [9068] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4594), + [9070] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4595), + [9072] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4597), + [9074] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4599), + [9076] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4601), + [9078] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4602), + [9080] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4603), + [9082] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4604), + [9084] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4605), + [9086] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4606), + [9088] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4607), + [9090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4608), + [9092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4610), + [9094] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4611), + [9096] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4611), + [9098] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4613), + [9100] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4614), + [9102] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4615), + [9104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4616), + [9106] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(4617), + [9108] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4618), + [9110] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4620), + [9112] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4622), + [9114] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4623), + [9116] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4624), + [9118] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4625), + [9120] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4626), + [9122] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4627), + [9124] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4628), + [9126] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4630), + [9128] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4632), + [9130] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4634), + [9132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4635), + [9134] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4636), + [9136] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4637), + [9138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(4638), }; void *tree_sitter_bash_external_scanner_create();